Displaying 2 results from an estimated 2 matches for "build_as".
Did you mean:
build_ar
2010 Nov 29
3
[LLVMdev] Does someone has experience with Canadian cross build of LLVM compiler?
...nina/build/mx-debug-llvm'
make: *** [mx-debug-llvm-all] Error 2
rm /home/ksanina/build/mx-debug-llvm/.dir
To resolve this issue, I end up setting up additional environment variables,
BUILD_CC=gcc BUILD_CXX=g++ BUILD_AR =ar BUILD_LD=ld etc.
Also, I modified llvm/Makefile to use my BUILD_CC, BUILD_AS, BUILD_LD, etc
instead of CC, AS, LD, etc.
for cross-compile-build-tools target.
cross-compile-build-tools:
$(Verb) if [ ! -f BuildTools/Makefile ]; then \
$(MKDIR) BuildTools; \
cd BuildTools ; \
unset CFLAGS ; \
unset CXXFLAGS ; \
+ AR=$(BU...
2010 Nov 30
0
[LLVMdev] Does someone has experience with Canadian cross build of LLVM compiler?
...t gmail.com>:
> cross-compile-build-tools:
> $(Verb) if [ ! -f BuildTools/Makefile ]; then \
> $(MKDIR) BuildTools; \
> cd BuildTools ; \
> unset CFLAGS ; \
> unset CXXFLAGS ; \
> + AR=$(BUILD_AR) ;\
> + AS=$(BUILD_AS) ;\
> + LD=$(BUILD_LD) ;\
> + CC=$(BUILD_CC) ;\
> + CXX=$(BUILD_CXX) ;\
> $(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \
> --host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE); \
> cd .. ; \
+1.
It would be useful when b...