search for: ace_root

Displaying 2 results from an estimated 2 matches for "ace_root".

Did you mean: ac_room
2012 Sep 02
0
[LLVMdev] How can I modify Clang/LLVM build system?
...dify - to add a path for 3rd party(ACE) header files, - to add a path for my custom header files, - to add a path for 3rd party(ACE) Library, - to define a Macro, and - to specify a 3rd party(ACE) library from current LLVM and Clang build system. What I need to add into current build system are -I$ACE_ROOT ..............(adding a path for ACE header files) -I../LogManager .............(adding a path for my custom header files) -L$ACE_ROOT/lib .........(adding a path for ACE Library) -DACE_NTRACE=0 .......(define a Macro) -lACE ..............................(specifying an ACE library) What I know is...
2012 Sep 02
0
[LLVMdev] How can I modify Clang/LLVM build system?
...Clang/LLVM. The debugging functionality is just for printing debugging messages and tracing function calls. To do this I need to make clang source code use ACE library. And to do this I need to modify Makefiles of Clang and LLVM. What I need to do is just adding those shown below to Makefile. -I$ACE_ROOT ..............(adding a path for ACE header files) -I../LogManager .............(adding a path for my custom header files) -L$ACE_ROOT/lib .........(adding a path for ACE Library) -DACE_NTRACE=0 .......(define a Macro) -lACE ..............................(specifying an ACE library) How am I suppos...