From: Marek P. <ma...@us...> - 2002-01-27 15:17:27
|
Update of /cvsroot/javaprofiler/library In directory usw-pr-cvs1:/tmp/cvs-serv32198 Modified Files: config.mk Log Message: a little fix Index: config.mk =================================================================== RCS file: /cvsroot/javaprofiler/library/config.mk,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -r1.31 -r1.32 *** config.mk 2002/01/27 14:33:24 1.31 --- config.mk 2002/01/27 15:17:24 1.32 *************** *** 1,5 **** ################################################################ # configuration file ! # SunOS 5.8, SPARC/x86, GNU C/C++ 3.0.2 (using GNU make 3.7x) # # author: Marek Przeczek --- 1,5 ---- ################################################################ # configuration file ! # Linux, x86, GNU C/C++ 3.0.2 # # author: Marek Przeczek *************** *** 15,21 **** # do not use "\" as a last character in path definition ! COMPILER_PATH = /home/mprz7483/BIG/gcc-3.0.2 ! JAVA_PATH = /home/mprz7483/BIG/j2sdk1.4.0 ! DOXYGEN_PATH = /home/mprz7483/BIG/doxygen-1.2.12 CCC = "$(COMPILER_PATH)/bin/g++" --- 15,21 ---- # do not use "\" as a last character in path definition ! COMPILER_PATH = /home2/mm/gcc-3.0.2 ! JAVA_PATH = /home2/mm/j2sdk1.4.0 ! DOXYGEN_PATH = /home2/mm CCC = "$(COMPILER_PATH)/bin/g++" *************** *** 37,43 **** # modify as needed ! DEFINES = -DSUNOS -DUSE_RAW_MONITORS -DUSE_ALLOCATOR -fpic ! INCLUDES = -I$(JAVA_PATH)/include -I$(JAVA_PATH)/include/solaris # debug or not ? --- 37,43 ---- # modify as needed ! DEFINES = -DLINUX -DUSE_RAW_MONITORS -DUSE_ALLOCATOR -fpic ! INCLUDES = -I$(JAVA_PATH)/include -I$(JAVA_PATH)/include/linux # debug or not ? *************** *** 49,57 **** LDFLAGS = $(DEFINES) -shared -o $(PROF_LIBRARY_NAME) LDLIBS = - - # use this, if you switched off raw monitors (and comment the line above) - # (compilation without -DUSE_RAW_MONITORS) - # - #LDLIBS = -lpthread -lthread LDFLAGS2 = $(DEFINES) -shared -o $(NATIVE_LIBRARY_NAME) --- 49,52 ---- |