]> git.donarmstrong.com Git - mothur.git/commitdiff
stop stripping; switch to linux by default
authorDon Armstrong <don@donarmstrong.com>
Mon, 16 Dec 2013 20:21:42 +0000 (12:21 -0800)
committerDon Armstrong <don@donarmstrong.com>
Mon, 16 Dec 2013 20:21:42 +0000 (12:21 -0800)
makefile

index 42e71a0e42bb0341c3cff63a8c616d6572537f4b..3d53941cebbcb9ee241b9cd32dfa4bcf533159ba 100644 (file)
--- a/makefile
+++ b/makefile
@@ -28,7 +28,7 @@ ifeq  ($(strip $(64BIT_VERSION)),yes)
        #CXX = g++44
        
        #if you are a mac user use the following line
-       TARGET_ARCH += -arch x86_64
+       #TARGET_ARCH += -arch x86_64
        
        #if you using cygwin to build Windows the following line
        #CXX = x86_64-w64-mingw32-g++
@@ -37,7 +37,7 @@ ifeq  ($(strip $(64BIT_VERSION)),yes)
        #TARGET_ARCH += -m64 -static
 
        #if you are a linux user use the following line
-       #CXXFLAGS += -mtune=native -march=native 
+       CXXFLAGS += -mtune=native -march=native 
        
        CXXFLAGS += -DBIT_VERSION 
 endif
@@ -96,9 +96,8 @@ OBJECTS+=$(patsubst %.f,%.o,$(wildcard *.f))
 
 mothur : fortranSource $(OBJECTS) uchime
        $(CXX) $(LDFLAGS) $(TARGET_ARCH) -o $@ $(OBJECTS) $(LIBS)
-       
-       strip mothur
+#      strip mothur
+
 uchime:
        cd uchime_src && ./mk && mv uchime .. && cd ..