Hi, I am new in the "Linux business" and i need to add an optimization to the LLVM compiler. I would like to know what is the bast way to debug (IDE) the LLVM compiler ? To be more precise, what is the equivalent to Microsoft visual studio on Linux platform? is it eclipse? I want features like: syntax highlight, go to def, etc. Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090518/dfb5462a/attachment.html>
Hello, Eclipse is pretty good. If you want something with a smaller memory footprint there's always Code::Blocks for C++. It isn't as advanced as Eclipse though. I don't know if anybody has done the configuration files for LLVM-GCC on those IDEs yet but it should definitely be possible to modify from the standard GCC profiles. If you find something better, let us know. --Sam ________________________________ From: Rotem Varon <varonrotem at gmail.com> To: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu> Sent: Monday, May 18, 2009 3:26:44 PM Subject: [LLVMdev] IDE for llvm Hi, I am new in the "Linux business" and i need to add an optimization to the LLVM compiler. I would like to know what is the bast way to debug (IDE) the LLVM compiler ? To be more precise, what is the equivalent to Microsoft visual studio on Linux platform? is it eclipse? I want features like: syntax highlight, go to def, etc. Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090518/95b781dc/attachment.html>
> > I don't know if anybody has done the configuration files for LLVM-GCC > on those IDEs yet but it should definitely be possible to modify from > the standard GCC profiles.The CMake build system should work on linux (since it do work on windows) and can generate projects for eclipse CDT, KDevelop and Code::Blocks.
2009/5/18 Rotem Varon <varonrotem at gmail.com>:> I am new in the "Linux business" and i need to add an optimization to the > LLVM compiler. > I would like to know what is the bast way to debug (IDE) the LLVM compiler ? > To be more precise, what is the equivalent to Microsoft visual studio on > Linux platform? is it eclipse? > I want features like: syntax highlight, go to def, etc. >I don't know how the features compare, but I tried monodevelop a bit ago and found it worth considering.