Update of /cvsroot/javaprofiler/library/config
In directory usw-pr-cvs1:/tmp/cvs-serv20943/config
Modified Files:
config_sparc_sunos58_gcc302.mk
Log Message:
solaris port of communication interface finished
shared memory communication fixed
Index: config_sparc_sunos58_gcc302.mk
===================================================================
RCS file: /cvsroot/javaprofiler/library/config/config_sparc_sunos58_gcc302.mk,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** config_sparc_sunos58_gcc302.mk 2001/11/21 22:31:38 1.1
--- config_sparc_sunos58_gcc302.mk 2002/01/27 14:33:24 1.2
***************
*** 1,7 ****
- # DO NOT USE NOW !!!
-
################################################################
# configuration file
! # SunOS 5.8, SPARC, GNU C/C++ 3.0 (using GNU make 3.7x)
#
# author: Marek Przeczek
--- 1,5 ----
################################################################
# configuration file
! # SunOS 5.8, SPARC/x86, GNU C/C++ 3.0.2 (using GNU make 3.7x)
#
# author: Marek Przeczek
***************
*** 17,23 ****
# do not use "\" as a last character in path definition
! COMPILER_PATH = /opt/gcc-3.0
! JAVA_PATH = /opt/j2sdk1_4_0
! DOXYGEN_PATH = /opt/doxygen-1.2.10
CCC = "$(COMPILER_PATH)/bin/g++"
--- 15,21 ----
# do not use "\" as a last character in path definition
! COMPILER_PATH = /opt/gcc-3.0.2
! JAVA_PATH = /opt/j2sdk1.4.0-rc
! DOXYGEN_PATH = /opt/doxygen-1.2.12
CCC = "$(COMPILER_PATH)/bin/g++"
***************
*** 39,43 ****
# modify as needed
! DEFINES = -DSUNOS -fpic -D_REENTRANT
INCLUDES = -I$(JAVA_PATH)/include -I$(JAVA_PATH)/include/solaris
--- 37,41 ----
# modify as needed
! DEFINES = -DSUNOS -DUSE_RAW_MONITORS -DUSE_ALLOCATOR -fpic
INCLUDES = -I$(JAVA_PATH)/include -I$(JAVA_PATH)/include/solaris
***************
*** 50,57 ****
LDFLAGS = $(DEFINES) -shared -o $(PROF_LIBRARY_NAME)
! LDLIBS = -lsocket -lpthread -lthread -lnsl
LDFLAGS2 = $(DEFINES) -shared -o $(NATIVE_LIBRARY_NAME)
! LDLIBS2 = -lsocket
CPPFLAGS = -c $(FLAGS) $(DEFINES) $(INCLUDES)
--- 48,60 ----
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)
! LDLIBS2 =
CPPFLAGS = -c $(FLAGS) $(DEFINES) $(INCLUDES)
***************
*** 68,69 ****
--- 71,73 ----
clean: $(addsuffix .clean.2, $(DIRS))
rm -Rf $(CLEAN_FILES)
+
|