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

Fix typo (forgot space before semi-colon).

[SVN r43920]
This commit is contained in:
K. Noel Belcourt
2008-03-29 02:03:29 +00:00
parent bec988cac1
commit 73ee7119d2

View File

@@ -117,8 +117,8 @@ flags intel-darwin.compile OPTIONS <optimization>space : -O1 ; # no specific spa
#
cpu-type-em64t = prescott nocona ;
flags intel-darwin.compile OPTIONS <instruction-set>$(cpu-type-em64t)/<address-model>32 : -m32; # -mcmodel=small ;
flags intel-darwin.compile OPTIONS <instruction-set>$(cpu-type-em64t)/<address-model>64 : -m64; # -mcmodel=large ;
flags intel-darwin.compile OPTIONS <instruction-set>$(cpu-type-em64t)/<address-model>32 : -m32 ; # -mcmodel=small ;
flags intel-darwin.compile OPTIONS <instruction-set>$(cpu-type-em64t)/<address-model>64 : -m64 ; # -mcmodel=large ;
flags intel-darwin.compile.c OPTIONS <warnings>off : -w0 ;
flags intel-darwin.compile.c OPTIONS <warnings>on : -w1 ;