Displaying 6 results from an estimated 6 matches for "qctp406".
2010 May 24
2
[LLVMdev] linker errors when trying to link llvm-gcc
any ideas what library has these symbols
lang_eh_catch_all
get_pointer_alignment
validate_arglist
i get these linker errors when trying to link llvm-gcc:
make[1]: Entering directory
`/home/anatolyy/qctp406/pakman/depot/users/anatolyy/proto/crosscompiler/llvm-gcc-4.2-2.7.source-objtree'
make[2]: Entering directory
`/home/anatolyy/qctp406/pakman/depot/users/anatolyy/proto/crosscompiler/llvm-gcc-4.2-2.7.source-objtree/build-x86_64-unknown-linux-gnu/libiberty'
make[2]: Entering directory
`/home/a...
2010 May 20
2
[LLVMdev] trying to build llvm-gcc for arm, error: 'V1DI_pointer_node' undeclared (first use in this function)
...his function)
../../llvm-gcc-4.2-2.7.source/gcc/config/arm/arm.c:17355: error: (Each
undeclared identifier is reported only once
../../llvm-gcc-4.2-2.7.source/gcc/config/arm/arm.c:17355: error: for
each function it appears in.)
make[3]: *** [arm.o] Error 1
make[3]: Leaving directory
`/home/anatolyy/qctp406/pakman/depot/users/anatolyy/proto/crosscompiler/llvm-gcc-4.2-2.7.source-objtree/gcc'
make[2]: *** [all-gcc] Error 2
make[2]: Leaving directory
`/home/anatolyy/qctp406/pakman/depot/users/anatolyy/proto/crosscompiler/llvm-gcc-4.2-2.7.source-objtree'
make[1]: *** [all] Error 2
make[1]: Leaving...
2010 May 20
0
[LLVMdev] trying to build llvm-gcc for arm, error: 'V1DI_pointer_node' undeclared (first use in this function)
....2-2.7.source/gcc/config/arm/arm.c:17355: error: (Each
> undeclared identifier is reported only once
> ../../llvm-gcc-4.2-2.7.source/gcc/config/arm/arm.c:17355: error: for
> each function it appears in.)
> make[3]: *** [arm.o] Error 1
> make[3]: Leaving directory
> `/home/anatolyy/qctp406/pakman/depot/users/anatolyy/proto/crosscompiler/llvm-gcc-4.2-2.7.source-objtree/gcc'
> make[2]: *** [all-gcc] Error 2
> make[2]: Leaving directory
> `/home/anatolyy/qctp406/pakman/depot/users/anatolyy/proto/crosscompiler/llvm-gcc-4.2-2.7.source-objtree'
> make[1]: *** [all] Erro...
2010 May 25
2
[LLVMdev] linker errors when trying to link llvm-gcc
I am trying to build a cross compiler for arm on linux, here is how i
have configured it
cd llvm-gcc-4.2-2.7.source-objtree
../llvm-gcc-4.2-2.7.source/configure
--enable-llvm=/home/anatolyy/qctp406/pakman/depot/users/anatolyy/proto/crosscompiler/llvm-2.7
--enable-multilib --enable-target-optspace --enable-interwork
--with-newlib --with-gnu-as --with-gnu-ld --enable-languages=c,c++
--target=arm-elf
--prefix=/home/anatolyy/qctp406/pakman/depot/users/anatolyy/proto/crosscompiler/arm-elf
i'v...
2010 May 24
0
[LLVMdev] linker errors when trying to link llvm-gcc
Hi Anatoly,
> any ideas what library has these symbols
>
> lang_eh_catch_all
> get_pointer_alignment
> validate_arglist
it sounds like you are trying to build a version of llvm-gcc without LLVM
enabled. Did you specify --enable-llvm=path_to_llvm_build_directory when
configuring llvm-gcc? These symbols are all defined in llvm-gcc itself,
but only when ENABLE_LLVM is defined.
2010 May 25
0
[LLVMdev] linker errors when trying to link llvm-gcc
> ../llvm-gcc-4.2-2.7.source/configure
> --enable-llvm=/home/anatolyy/qctp406/pakman/depot/users/anatolyy/proto/crosscompiler/llvm-2.7
> --enable-multilib --enable-target-optspace --enable-interwork
> --with-newlib --with-gnu-as --with-gnu-ld --enable-languages=c,c++
> --target=arm-elf
This means that the compiler is built for ARMv4 which is not pretty
good supporte...