Ticket #21408: patch_gcc_jam.diff
File patch_gcc_jam.diff, 1.1 KB (added by Veence (Vincent), 15 years ago) |
---|
-
gcc.jam
old new 371 371 { 372 372 if $(model) = 32 373 373 { 374 option = -m32 ;374 # option = -m32 ; 375 375 } 376 376 else 377 377 { 378 option = -m64 ;378 # option = -m64 ; 379 379 } 380 380 } 381 381 OPTIONS on $(targets) += $(option) ; … … 408 408 409 409 actions compile.c++.pch 410 410 { 411 "$(CONFIG_COMMAND)" -x c++-header $( OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -c -o "$(<)" "$(>)"411 "$(CONFIG_COMMAND)" -x c++-header $(USER_OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -c -o "$(<)" "$(>)" 412 412 } 413 413 414 414 rule compile.c.pch ( targets * : sources * : properties * ) … … 420 420 421 421 actions compile.c.pch 422 422 { 423 "$(CONFIG_COMMAND)" -x c-header $( OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -c -o "$(<)" "$(>)"423 "$(CONFIG_COMMAND)" -x c-header $(USER_OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -c -o "$(<)" "$(>)" 424 424 } 425 425 426 426 rule compile.c++ ( targets * : sources * : properties * )