cant build trunk on macbook pro

I am guessing this is llvm error? should i be posting to llvm mailing list?

Regards,
Ramneek

llvm[3]: Building Debug+Asserts Archive Library libllvm.a
llvm[3]: Building Debug+Asserts libllvm.a
llvm[3]: Archiving llvm.cma for Debug+Asserts build
/var/folders/VT/VTgg0ie7EtagogxDrxdDGE+++TI/-Tmp-/camlasm1b5a04.s:698:suffix or operands invalid for `call'
/var/folders/VT/VTgg0ie7EtagogxDrxdDGE+++TI/-Tmp-/camlasm1b5a04.s:702:suffix or operands invalid for `push'
/var/folders/VT/VTgg0ie7EtagogxDrxdDGE+++TI/-Tmp-/camlasm1b5a04.s:703:32-bit absolute addressing is not supported for x86-64
/var/folders/VT/VTgg0ie7EtagogxDrxdDGE+++TI/-Tmp-/camlasm1b5a04.s:703:cannot do signed 4 byte relocation
/var/folders/VT/VTgg0ie7EtagogxDrxdDGE+++TI/-Tmp-/camlasm1b5a04.s:727:suffix or operands invalid for `push'
/var/folders/VT/VTgg0ie7EtagogxDrxdDGE+++TI/-Tmp-/camlasm1b5a04.s:728:32-bit absolute addressing is not supported for x86-64
/var/folders/VT/VTgg0ie7EtagogxDrxdDGE+++TI/-Tmp-/camlasm1b5a04.s:728:cannot do signed 4 byte relocation

These are assembler errors, and indicate the assembler is being invoked for x86-64 but the generated assembly language is for
something else, probably x86-32. Some kind of configuration error.

thanks for the pointer dale..

This is a problem with the OCaML bindings, you can just configure with
--disable-bindings to work around it.

- Daniel