Update x86's static and profile configs.
authorJosé Fonseca <jfonseca@titan.(none)>
Fri, 28 Sep 2007 17:17:11 +0000 (17:17 +0000)
committerJosé Fonseca <jfonseca@titan.(none)>
Fri, 28 Sep 2007 17:18:50 +0000 (18:18 +0100)
Makefile
configs/linux-profile
configs/linux-x86-64-profile [new file with mode: 0644]
configs/linux-x86-64-static
configs/linux-x86-profile [new file with mode: 0644]
configs/linux-x86-static

index 4f8cc20..a058e98 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -132,8 +132,10 @@ linux-x86-debug \
 linux-x86-32 \
 linux-x86-64 \
 linux-x86-64-debug \
+linux-x86-64-profile \
 linux-x86-64-static \
 linux-x86-glide \
+linux-x86-profile \
 linux-x86-static \
 netbsd \
 openbsd \
index 3efdcf5..e3895dd 100644 (file)
@@ -4,5 +4,5 @@ include $(TOP)/configs/linux-static
 
 CONFIG_NAME = linux-profile
 
-OPT_FLAGS = -pg -g -O2 -DNDEBUG
+OPT_FLAGS = -pg -g -O2
 DEFINES += -DNDEBUG
diff --git a/configs/linux-x86-64-profile b/configs/linux-x86-64-profile
new file mode 100644 (file)
index 0000000..6eb9c68
--- /dev/null
@@ -0,0 +1,8 @@
+# Configuration for profiling on Linux for 64-bit X86 (Opteron) with gprof
+
+include $(TOP)/configs/linux-x86-64-static
+
+CONFIG_NAME = linux-x86-64-profile
+
+OPT_FLAGS = -pg -g -O2
+DEFINES += -DNDEBUG
index 0257430..909965d 100644 (file)
@@ -19,5 +19,8 @@ OSMESA_LIB_DEPS =
 GLU_LIB_DEPS = 
 GLUT_LIB_DEPS = 
 GLW_LIB_DEPS = 
-APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) \
+
+# Need to specify all libraries we may need
+APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -Wl,--start-group \
+               -l$(GL_LIB) $(TOP)/src/mesa/pipe/softpipe/libsoftpipe.a -Wl,--end-group \
                $(EXTRA_LIB_PATH) -lX11 -lXmu -lXt -lXi -lpthread -lstdc++ -lm
diff --git a/configs/linux-x86-profile b/configs/linux-x86-profile
new file mode 100644 (file)
index 0000000..987b5f0
--- /dev/null
@@ -0,0 +1,8 @@
+# Configuration for profiling on Linux with x86 optimizations with gprof
+
+include $(TOP)/configs/linux-x86-static
+
+CONFIG_NAME = linux-x86-profile
+
+OPT_FLAGS = -pg -g -O2
+DEFINES += -DNDEBUG
index 9915987..3b281e6 100644 (file)
@@ -19,5 +19,8 @@ OSMESA_LIB_DEPS =
 GLU_LIB_DEPS = 
 GLUT_LIB_DEPS = 
 GLW_LIB_DEPS = 
-APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) \
+
+# Need to specify all libraries we may need
+APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -Wl,--start-group \
+               -l$(GL_LIB) $(TOP)/src/mesa/pipe/softpipe/libsoftpipe.a -Wl,--end-group \
                $(EXTRA_LIB_PATH) -lX11 -lXmu -lXt -lXi -lpthread -lstdc++ -lm