summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorbustico2008-04-09 15:28:53 +0000
committerbustico2008-04-09 15:28:53 +0000
commit3152da9d5a99a95ce75fee6c378a3b0711e28bb3 (patch)
tree0bf5c131d7210467371043f6356dde37986acf77 /tools
parentc5f385388ee7c73a991cf1c31c17521df88b5022 (diff)
downloadivy-c-3152da9d5a99a95ce75fee6c378a3b0711e28bb3.zip
ivy-c-3152da9d5a99a95ce75fee6c378a3b0711e28bb3.tar.gz
ivy-c-3152da9d5a99a95ce75fee6c378a3b0711e28bb3.tar.bz2
ivy-c-3152da9d5a99a95ce75fee6c378a3b0711e28bb3.tar.xz
fix macos file after failed attempt to use openmp on macos with gcc 4.3
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile.osx6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/Makefile.osx b/tools/Makefile.osx
index 580a44c..a45e4ff 100644
--- a/tools/Makefile.osx
+++ b/tools/Makefile.osx
@@ -1,5 +1,3 @@
-CC = gcc -g -Wall
-CPP='g++'
GLUTINC = -I/usr/include -I.
GLUTLIB = -L. -lglut -lGLU -lGL -lX11 -lXmu
@@ -11,6 +9,10 @@ OMP_TARGET= ivyprobe_omp ivythroughput_omp
OMPLIB = -lgomp -lpthread
OMPCC = gcc-mp-4.3
OMPCPP = g++-mp-4.3
+CC = gcc -g -Wall
+CPP='g++'
+#CC = $(OMPCC)
+#CPP= $(OMPCPP)
PCRELIB = `pcre-config --libs`
PCREINCL = `pcre-config --cflags`