2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 00:12:11 +00:00

Finally fix darwin's -fcoalesce-templates logic.

Patch from Daniel Heck.


[SVN r29365]
This commit is contained in:
Vladimir Prus
2005-06-02 07:46:25 +00:00
parent 1fd7b00814
commit bc5d8f9abc

View File

@@ -33,8 +33,8 @@ rule init ( version ? : command * : options * )
# is either:
#
# 1. We're not on 10.4
# 2. We're on 10.4 and compiler is not g++-3.3
if $(JAMUNAME[3]) < "8.0.0" || ! [ "(g[+][+]-3.3)" : $(command) ]
# 2. We're on 10.4 and compiler name is g++-3.3
if $(JAMUNAME[3]) < "8.0.0" || [ MATCH "(g[+][+]-3.3)" : $(command) ]
{
flags darwin.compile.c++ OPTIONS : -fcoalesce-templates ;
}