search for: build_ar

Displaying 2 results from an estimated 2 matches for "build_ar".

Did you mean: build_arm
2010 Nov 29
3
[LLVMdev] Does someone has experience with Canadian cross build of LLVM compiler?
...debug-llvm' make[1]: *** [make] Error 2 make[1]: Leaving directory `/home/ksanina/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 BuildTo...
2010 Nov 30
0
[LLVMdev] Does someone has experience with Canadian cross build of LLVM compiler?
...ina Sanina <ekaterina.sanina at 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 .. ;...