refactored gmp locations...
This commit is contained in:
@@ -63,7 +63,7 @@ endif
|
||||
# include paths (flattens the hierarchy for include directives)
|
||||
INC := -I src/ $(addprefix -I src/,$(SUBDIRECTORIES))
|
||||
# Place the location of GMP header files here
|
||||
GMPINC := -I $(GMP_PREFIX)/include
|
||||
GMPINC := -I $(GMP_INC_DIR)
|
||||
INC := $(INC) $(GMPINC)
|
||||
|
||||
# use the second line to disable profiling instrumentation
|
||||
@@ -75,9 +75,9 @@ CCDFLAGS := -Wall $(INC) $(CONFIG) -ggdb
|
||||
CXXDFLAGS := $(CCDFLAGS)
|
||||
|
||||
# Place the location of GMP libraries here
|
||||
#GMPLD := -L$(GMP_PREFIX)/lib -lgmpxx -lgmp
|
||||
#GMPLD := -L$(GMP_LIB_DIR) -lgmpxx -lgmp
|
||||
# static versionÉ
|
||||
GMPLD := $(GMP_PREFIX)/lib/libgmpxx.a $(GMP_PREFIX)/lib/libgmp.a
|
||||
GMPLD := $(GMP_LIB_DIR)/libgmpxx.a $(GMP_LIB_DIR)/libgmp.a
|
||||
|
||||
GL_LD := -framework OpenGL
|
||||
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
|
||||
GMP_PREFIX = /usr/local/Cellar/gmp/5.0.2
|
||||
|
||||
GMP_INC_DIR = /usr/local/Cellar/gmp/5.0.2/include
|
||||
GMP_LIB_DIR = /usr/local/Cellar/gmp/5.0.2/lib
|
||||
Reference in New Issue
Block a user