search for: toochain

Displaying 15 results from an estimated 15 matches for "toochain".

Did you mean: toolchain
2016 Feb 10
4
Guidance on cross compiling LLVM with mingw-w64 and cmake
...port'. Stop." Full build log is at http://sprunge.us/bCUU I'd like to go with the default behavior of building a native version of TableGen, but the way that's currently set up in cmake isn't working here. I'm looking at cmake/modules/CrossCompile.cmake (and I think "toochain" on the first line is a typo?) and trying to figure out how to make its call to execute_process(COMMAND ${CMAKE_COMMAND} ...) not inherit the top-level settings for CMAKE_C_COMPILER etc from the cross build. Any ideas? I've tried moving my mingw settings from the command line to a toolchai...
2008 Mar 09
2
[LLVMdev] llvm-gcc and mips
...> Supposed that you knew my approach was intentional (correct me if I'm > wrong), what problem did you see here? Yes, i'm trying to help raising possible problems. For example, there are Mips machines with different endianess, the llvm Mips default (Big) is different from the psp toochain default one (correct me if I'm wrong - Little), maybe this is messing up... Cheers, -- Bruno Cardoso Lopes http://www.brunocardoso.org "Morte: Mas não para você pistoleiro"
2015 Sep 28
3
Cmake-gen'd parallel make breaks on native tablegen
...nd would be invoked in different folders. I'm not convinced that that is the best fix, and I couldn't figure out how to move the builds into different folders with only minor changes to the existing cmake files. Thoughts? -Alex (CrossCompile.cmake also has a typo in the first line: "toochain" --> "toolchain", if that is something to worry about)
2015 Oct 05
3
Cmake-gen'd parallel make breaks on native tablegen
...{LLVM_NATIVE_BUILD} is the same for both llvm and clang tablegen commands. >>>> >>>>> >>>>> Thoughts? >>>>> >>>>> -Alex >>>>> >>>>> (CrossCompile.cmake also has a typo in the first line: "toochain" --> "toolchain", if that is something to worry about) >>>>> _______________________________________________ >>>>> LLVM Developers mailing list >>>>> llvm-dev at lists.llvm.org >>>>> http://lists.llvm.org/cgi-bin/mailman/...
2008 Mar 07
0
[LLVMdev] llvm-gcc and mips
On Fri, Mar 7, 2008 at 8:28 PM, Bruno Cardoso Lopes <bruno.cardoso at gmail.com> wrote: > When using mips-unknown-linux-gnu as a cross-compiler, the llvm Mips > backend is called by cc1 and with that you get llvm bytecode defined > relative to the Mips ABI. That was my intention. The PSP has a 32-bit MIPS (derived) CPU. What I don't know is if that triple is the right one
2008 Mar 10
0
[LLVMdev] llvm-gcc and mips
...approach was intentional (correct me if I'm > > wrong), what problem did you see here? > > Yes, i'm trying to help raising possible problems. For example, there are > Mips machines with different endianess, the llvm Mips default (Big) is > different from > the psp toochain default one (correct me if I'm wrong - Little), maybe > this is messing > up... Good point. I added "-EL" to the options to get little-endian code, but it doesn't solve the problem. And I'm sure the code is compiled as 32-bit because my arch-info program prints 4 for...
2008 Mar 07
2
[LLVMdev] llvm-gcc and mips
Hi, When using mips-unknown-linux-gnu as a cross-compiler, the llvm Mips backend is called by cc1 and with that you get llvm bytecode defined relative to the Mips ABI. This can be messing up somehow your generated C code. 2008/3/7, HyperQuantum <hyperquantum at gmail.com>: > On Fri, Feb 29, 2008 at 2:23 PM, HyperQuantum <hyperquantum at gmail.com> wrote: > > At least I got
2015 Oct 06
2
Cmake-gen'd parallel make breaks on native tablegen
...tablegen commands. >>>>>> >>>>>>> >>>>>>> Thoughts? >>>>>>> >>>>>>> -Alex >>>>>>> >>>>>>> (CrossCompile.cmake also has a typo in the first line: "toochain" --> "toolchain", if that is something to worry about) >>>>>>> _______________________________________________ >>>>>>> LLVM Developers mailing list >>>>>>> llvm-dev at lists.llvm.org >>>>>>> http:/...
2015 Oct 07
2
Cmake-gen'd parallel make breaks on native tablegen
...t;>>>>>>>> >>>>>>>>> Thoughts? >>>>>>>>> >>>>>>>>> -Alex >>>>>>>>> >>>>>>>>> (CrossCompile.cmake also has a typo in the first line: "toochain" --> "toolchain", if that is something to worry about) >>>>>>>>> _______________________________________________ >>>>>>>>> LLVM Developers mailing list >>>>>>>>> llvm-dev at lists.llvm.org >>&gt...
2015 Oct 08
4
Cmake-gen'd parallel make breaks on native tablegen
...>>>>>>>>>> Thoughts? >>>>>>>>>>> >>>>>>>>>>> -Alex >>>>>>>>>>> >>>>>>>>>>> (CrossCompile.cmake also has a typo in the first line: "toochain" --> "toolchain", if that is something to worry about) >>>>>>>>>>> _______________________________________________ >>>>>>>>>>> LLVM Developers mailing list >>>>>>>>>>> llvm-dev at li...
2015 Oct 20
2
Cmake-gen'd parallel make breaks on native tablegen
...>> Thoughts? >>>>>>>>>>>>> >>>>>>>>>>>>> -Alex >>>>>>>>>>>>> >>>>>>>>>>>>> (CrossCompile.cmake also has a typo in the first line: "toochain" --> "toolchain", if that is something to worry about) >>>>>>>>>>>>> _______________________________________________ >>>>>>>>>>>>> LLVM Developers mailing list >>>>>>>>>>&gt...
2016 Feb 11
2
Guidance on cross compiling LLVM with mingw-w64 and cmake
...http://sprunge.us/bCUU >> >> I'd like to go with the default behavior of building a native version >> of TableGen, but the way that's currently set up in cmake isn't working >> here. I'm looking at cmake/modules/CrossCompile.cmake (and I think >> "toochain" on the first line is a typo?) and trying to figure out how >> to make its call to execute_process(COMMAND ${CMAKE_COMMAND} ...) not >> inherit the top-level settings for CMAKE_C_COMPILER etc from the cross >> build. Any ideas? I've tried moving my mingw settings from the...
2018 Dec 12
4
Using LLD to link against third-party libraries? How?
...he next email from Brian Cain If you do not have specific reason to want to use llvm lld try to use your system provided c++ linker. Bootstrapping the llvm c++ c++abi can be troublesome on Unix like platforms and I have no experience doing anything like that on windows. If you already have a c++ toochain and still want to attempt this then you'll need to svn checkout or git clone a version of the llvm toolchain and build it with your native toolchain then switch to using clang and lld. if you do not have a native c++ toolchain; let's cross that bridge only if you need to. A complete LLVM...
2018 Dec 12
4
Using LLD to link against third-party libraries? How?
...he next email from Brian Cain If you do not have specific reason to want to use llvm lld try to use your system provided c++ linker. Bootstrapping the llvm c++ c++abi can be troublesome on Unix like platforms and I have no experience doing anything like that on windows. If you already have a c++ toochain and still want to attempt this then you'll need to svn checkout or git clone a version of the llvm toolchain and build it with your native toolchain then switch to using clang and lld. if you do not have a native c++ toolchain; let's cross that bridge only if you need to. A complete LLVM...
2018 Dec 12
3
Using LLD to link against third-party libraries? How?
So how do I get it to build libcxx and libcxxabi? I got it from the mono repo and enabled lld, clang, libcxx and libcxxabi. But I built the two main CMake targets only--all_build and install. What else do I have to do? Please let me know. ________________________________ From: Zachary Turner <zturner at google.com> Sent: Wednesday, December 12, 2018 11:10 AM To: blubee blubeeme Cc: Osman