On 26.11.2010 18:57, Vladimir Prus wrote:
This message should be printed in any case. Then, could you please try again, passing additional options:
-a -d2 --with-program_options
and note which command-line options are used for complication and linking, in particular, the -arch options. Post that here.
Thanks. What I did now already was add two more lines to darwin.jam so it is now saying: if $(address-model) = 32_64 { ECHO "ADDRESS MODEL 32 64 $(osx-version)" ; if $(support-ppc64) { ECHO "SUPPORT PPC64 $(osx-version)" ; [...] } else { ECHO "FORCING 3-WAY BINARY $(osx-version)" ; [...] } And when I build it prints: ADDRESS MODEL 32 64 10.5.8 SUPPORT PPC64 10.5.8 So it seems it doesn't correctly jump into the 3-way binary condition. :-/ What can I do about it?