search for: dsome_other_def

Displaying 4 results from an estimated 4 matches for "dsome_other_def".

2008 Nov 25
2
[LLVMdev] Removal of Visual Studio project files.
...lot of the extra > safety crap that VC2k5 and higher added [snip] > I am sure I am not the only one that does that, so supplying such > instructions for how to add in your own preprocessor definitions would > be great. For C source files: cmake -DCMAKE_C_FLAGS="-DSOME_DEF=value -DSOME_OTHER_DEF=value" path/to/llvm For C++ source files: cmake -DCMAKE_CXX_FLAGS="-DSOME_DEF=value -DSOME_OTHER_DEF=value" path/to/llvm I'll add this to the docs. Please list those defines and I will add an option for enabling them all with a single -D cmake option. -- Oscar
2008 Nov 21
2
[LLVMdev] Removal of Visual Studio project files.
Chris proposed on IRC to remove the Visual Studio project files and turn CMake into the "standard" for building LLVM with VC++. If you have strong arguments against this, please voice them. -- Oscar
2008 Nov 25
0
[LLVMdev] Removal of Visual Studio project files.
On Thu, Nov 20, 2008 at 9:11 PM, Óscar Fuentes <ofv at wanadoo.es> wrote: > Chris proposed on IRC to remove the Visual Studio project files and turn > CMake into the "standard" for building LLVM with VC++. > > If you have strong arguments against this, please voice them. As long as instructions are supplied on how to pass in user defined macros to the build system. I
2008 Nov 25
0
[LLVMdev] Removal of Visual Studio project files.
...that VC2k5 and higher added > [snip] >> I am sure I am not the only one that does that, so supplying such >> instructions for how to add in your own preprocessor definitions would >> be great. > > For C source files: > > cmake -DCMAKE_C_FLAGS="-DSOME_DEF=value -DSOME_OTHER_DEF=value" path/to/llvm > > For C++ source files: > > cmake -DCMAKE_CXX_FLAGS="-DSOME_DEF=value -DSOME_OTHER_DEF=value" path/to/llvm > > I'll add this to the docs. > > Please list those defines and I will add an option for enabling them all > with a single...