search for: gcc_toolchain

Displaying 11 results from an estimated 11 matches for "gcc_toolchain".

2012 Sep 20
0
[LLVMdev] How can I make clang/llvm use specific toolchain?
...url below for my testing environment. http://blog.mikeasoft.com/2012/06/23/writing-native-tizen-applications-using-the-1-0-larkspur-sdk-scratchbox-and-efl/ ============================================================================ CC = /home/hum/Projects/clang_llvm/build/Debug+Asserts/bin/clang GCC_TOOLCHAIN = /home/hum/tizen_sdk/SDK/build-system/toolchains/gcc-4.5.3.sb2/usr SYSROOT = /home/hum/tizen_sdk/SDK/build-system/rootstraps/tizen-emulator-1.0.sb2 #export LD_LIBRARY_PATH = $(GCC_TOOLCHAIN)/lib CFLAGS = -v \ --sysroot=$(SYSROOT) \ -gcc-toolchain $(GCC_TOOLCHAIN) # -c...
2012 Dec 08
0
[LLVMdev] Compile code for arm
Ok, These are the three options you should be playing with: -ccc-host-triple $(CCC_HOST_TRIPLE_ARM) \ --sysroot=$(SYSROOT_ARM) \ -gcc-toolchain $(GCC_TOOLCHAIN) Where the (sic) host triple defines the "target" triple too. Sysroot and gcc-toolchain is where you'll find the libraries and binutils for the ARM targets (you'll need them, since LLVM still can't cross-compile on its own). Another alternative is to compile to assembly and...
2012 Dec 08
2
[LLVMdev] Compile code for arm
Thanks for your help. But I got this warning which it seems it doesn't use -triple "clang: warning: argument unused during compilation: '-triple arm-none-eabi' " Best Regards, A. Yazdanbakhsh >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> PhD. Student School of
2020 Sep 02
2
LLD: Can we make --warn-backrefs the default?
...erceptors. The solution >has always been the same, wrap all libraries in --start-group/--stop-group >and it's what most projects do by default to avoid dealing with these >issues, see for example [Chromium]( >https://source.chromium.org/chromium/chromium/src/+/master:build/toolchain/gcc_toolchain.gni;l=409). >In our case, compatibility with linkers on other platforms is more >important than compatibility with GNU ld, so I'd prefer to keep the current >behavior. Projects that care about compatibility with GNU ld can use >--warn-backrefs. I totally understand that some users...
2020 Aug 31
2
LLD: Can we make --warn-backrefs the default?
On Mon, Aug 31, 2020 at 1:29 PM David Blaikie <dblaikie at gmail.com> wrote: > > > > On Mon, Aug 31, 2020 at 1:24 PM Fāng-ruì Sòng <maskray at google.com> wrote: >> >> On Fri, Aug 28, 2020 at 11:16 AM David Blaikie <dblaikie at gmail.com> wrote: >> > >> > Would you like to conduct the conversation here, or on the review thread? (I lean
2020 Sep 03
3
LLD: Can we make --warn-backrefs the default?
...s been the same, wrap all libraries in --start-group/--stop-group >> >and it's what most projects do by default to avoid dealing with these >> >issues, see for example [Chromium]( >> > >> https://source.chromium.org/chromium/chromium/src/+/master:build/toolchain/gcc_toolchain.gni;l=409 >> ). >> >In our case, compatibility with linkers on other platforms is more >> >important than compatibility with GNU ld, so I'd prefer to keep the >> current >> >behavior. Projects that care about compatibility with GNU ld can use >> >...
2012 Dec 08
2
[LLVMdev] Compile code for arm
...t;<<<<<<<<< On Sat, Dec 8, 2012 at 2:05 PM, Renato Golin <rengolin at systemcall.org>wrote: > Ok, These are the three options you should be playing with: > > -ccc-host-triple $(CCC_HOST_TRIPLE_ARM) \ > --sysroot=$(SYSROOT_ARM) \ > -gcc-toolchain $(GCC_TOOLCHAIN) > > Where the (sic) host triple defines the "target" triple too. > > Sysroot and gcc-toolchain is where you'll find the libraries and > binutils for the ARM targets (you'll need them, since LLVM still can't > cross-compile on its own). > > Another alte...
2012 Nov 21
5
[LLVMdev] Is cross-compiling for ARM on x86 with llvm/Clang possible?
Hi Journeyer J. Joh, Thank you so much for the solution. It was very helpful. Now, I'm wondering if you have tested compiling a whole project (with several .c/.cpp files) and achieve one binary file. Previously (on X86), I built .bc files separately and then I used llvm-link to get one .bc file and produce one binary file for the whole project. But, this time I encountered some errors like
2020 Sep 03
2
LLD: Can we make --warn-backrefs the default?
...t-group/--stop-group >> >> >and it's what most projects do by default to avoid dealing with these >> >> >issues, see for example [Chromium]( >> >> > >> >> >> https://source.chromium.org/chromium/chromium/src/+/master:build/toolchain/gcc_toolchain.gni;l=409 >> >> ). >> >> >In our case, compatibility with linkers on other platforms is more >> >> >important than compatibility with GNU ld, so I'd prefer to keep the >> >> current >> >> >behavior. Projects that care about co...
2020 Sep 04
2
LLD: Can we make --warn-backrefs the default?
...s what most projects do by default to avoid dealing with >> these >> >> >> >issues, see for example [Chromium]( >> >> >> > >> >> >> >> >> >> https://source.chromium.org/chromium/chromium/src/+/master:build/toolchain/gcc_toolchain.gni;l=409 >> >> >> ). >> >> >> >In our case, compatibility with linkers on other platforms is more >> >> >> >important than compatibility with GNU ld, so I'd prefer to keep the >> >> >> current >> >> >&...
2020 Sep 21
2
LLD: Can we make --warn-backrefs the default?
...ing with >>>> these >>>> >> >> >issues, see for example [Chromium]( >>>> >> >> > >>>> >> >> >>>> >> >>>> https://source.chromium.org/chromium/chromium/src/+/master:build/toolchain/gcc_toolchain.gni;l=409 >>>> >> >> ). >>>> >> >> >In our case, compatibility with linkers on other platforms is >>>> more >>>> >> >> >important than compatibility with GNU ld, so I'd prefer to keep >>>> the...