search for: cdt4

Displaying 14 results from an estimated 14 matches for "cdt4".

Did you mean: cdt
2015 Oct 10
2
Issues with Eclipse CDT4
Greetings, is this the right place to discuss getting LLVM built using Eclipse, as described on http://llvm.org/docs/GettingStarted.html? Regards, Jo
2015 Oct 11
4
Issues with Eclipse CDT4
Am 10.10.2015 um 21:14 schrieb Tim Northover: > On 10 October 2015 at 04:16, Joachim Durchholz via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >> is this the right place to discuss getting LLVM built using Eclipse, >> as described on http://llvm.org/docs/GettingStarted.html? > > It's probably as good as anywhere, Okay. > but I don't think
2009 Sep 15
3
[LLVMdev] IDE on *nix
2009/9/15 Patrick Simmons <simmon12 at illinois.edu>: > cmake -G "Eclipse CDT4 - Unix Makefiles" -DCMAKE_BUILD_TYPE="Debug" > -DBUILD_SHARED_LIBS=ON -DLLVM_TARGETS_TO_BUILD="X86;PowerPC;CBackend" > /home/renato/llvm-sources Thanks Patrick, I'll give it a try. At least now I know that it can be done. My previous attempts all ended up in mem...
2015 Sep 17
2
Problems building LLVMHello, spaces in path
I recently had a problem creating LLVMHello. I used this CMake file #!/bin/sh # clangcmake.sh cmake -G "Eclipse CDT4 - Unix Makefiles" -DLLVM_TARGETS_TO_BUILD="X86" -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_BUILD_TYPE="Debug" -DCMAKE_ECLIPSE_VERSION=4.5 -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang ../llvm then I ran make LLVMHello and the build failed on an error about LLVM...
2013 Jul 16
0
[LLVMdev] eclipse and gdb
...r many years). Xcode works fine as well, I started to use Xcode exclusively when I switched to OS X. The key to make this work is to use CMake to generate project files for Eclipse/Xcode, you can do this by specifying the appropriate generator on the command line e.g. -G Xcode or -G "Eclipse CDT4 - Unix Makefiles”. Then you can just open the generated project file. Mind you, the generated projects are kind of ugly e.g. the Xcode project has like more than 200 targets but apart from that they are working fine. In terms of key bindings both Eclipse and Xcode ship with Emacs key bindings and...
2013 Jul 16
3
[LLVMdev] eclipse and gdb
Is anyone using Eclipse and gdb to debug llvm/clang? If so, which version of Eclipse, gdb and linux flavor. I just use gdb currently. I'm going to try using my mac also. Is anyone using xcode/lldb to debug llvm/clang? Tia. Reed
2009 Sep 12
2
[LLVMdev] IDE on *nix
Hi all, Is anyone using any flavour of Unix to develop LLVM? I suppose the Apple guys are using Mac, right? ;) I've seen some docs on the website to set-up Visual Studio but I haven't seen anything related to cross-platform IDEs (such as Eclipse) and how to attach the tests to them. So far I'm not doing any modifications to the LLVM and my project is still too small to become a
2009 Sep 15
0
[LLVMdev] IDE on *nix
Hi Renato, I've been using LLVM with Eclipse for a while now. The way to do it is to build LLVM with CMake and tell CMake to generate an Eclipse project file, like so: cmake -G "Eclipse CDT4 - Unix Makefiles" -DCMAKE_BUILD_TYPE="Debug" -DBUILD_SHARED_LIBS=ON -DLLVM_TARGETS_TO_BUILD="X86;PowerPC;CBackend" /home/renato/llvm-sources You'll need to modify that command for your real LLVM path and the correct build options for you, of course. There is more i...
2013 Jul 16
3
[LLVMdev] eclipse and gdb
...; > Xcode works fine as well, I started to use Xcode exclusively when I switched to OS X. > > The key to make this work is to use CMake to generate project files for Eclipse/Xcode, you can do this by specifying the appropriate generator on the command line e.g. -G Xcode or -G "Eclipse CDT4 - Unix Makefiles”. Then you can just open the generated project file. Mind you, the generated projects are kind of ugly e.g. the Xcode project has like more than 200 targets but apart from that they are working fine. > > In terms of key bindings both Eclipse and Xcode ship with Emacs key bind...
2009 Jul 02
2
[LLVMdev] LLVM and Eclipse
Tilmann Scheller <tilmann.scheller at googlemail.com> writes: [snip] > It might be worth to put an Eclipse CDT project file with relative > paths to the header files in the LLVM SVN repository to make it easier > for people to use Eclipse in the future (my project files currently > contain absolute paths, so they're probably not useful to other > people). CMake can
2009 Jul 05
0
[LLVMdev] LLVM and Eclipse
...g/docs/CMake.html I just did, works great - all include paths are set up properly (!). Apparently CMake deletes the C++ files which are generated by TableGen, is it possible to tell CMake to not throw them away? I'm impressed how easy this is, you only need to do a "cmake -G 'Eclipse CDT4 - Unix Makefiles' $SRCDIR" in your $OBJDIR and import the project created in $OBJDIR into Eclipse. Thanks for adding CMake support to LLVM! Greetings, Tilmann
2009 Sep 15
0
[LLVMdev] IDE on *nix
On 2009-09-15 12:22, Renato Golin wrote: > 2009/9/15 Patrick Simmons <simmon12 at illinois.edu>: > >> cmake -G "Eclipse CDT4 - Unix Makefiles" -DCMAKE_BUILD_TYPE="Debug" >> -DBUILD_SHARED_LIBS=ON -DLLVM_TARGETS_TO_BUILD="X86;PowerPC;CBackend" >> /home/renato/llvm-sources >> > > Thanks Patrick, I'll give it a try. > > At least now I know that it can be done....
2013 Sep 24
2
[LLVMdev] range-analysis in Function Pass on Eclipse with CMake
...e use of range analysis information in my code: https://code.google.com/p/range-analysis/. Since I use Eclipse (with CMake) to build LLVM I did the following: 1. Provide each subfolder with a CMakeLists.txt (add_llvm_loadable_module). 2. Re-create the CMake config (cmake ../llvm -G "Eclipse CDT4 - Unix Makefiles"), re-open it in Eclipse. 4. Fix some minor issues with range-analysis (some symbols were renamed in newer LLVM releases). 5. Add the necessary code to my own pass, almost verbatim from https://code.google.com/p/range-analysis/wiki/HowToUseRangeAnalysisInAnotherPass. Everythi...
2013 Jul 17
2
[LLVMdev] eclipse and gdb
...; > Xcode works fine as well, I started to use Xcode exclusively when I switched to OS X. > > The key to make this work is to use CMake to generate project files for Eclipse/Xcode, you can do this by specifying the appropriate generator on the command line e.g. -G Xcode or -G "Eclipse CDT4 - Unix Makefiles”. Then you can just open the generated project file. Mind you, the generated projects are kind of ugly e.g. the Xcode project has like more than 200 targets but apart from that they are working fine. > > In terms of key bindings both Eclipse and Xcode ship with Emacs key bind...