Skip to content

Instantly share code, notes, and snippets.

@jgoldfar
Created August 15, 2018 00:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgoldfar/4f8f295841d68248d93426f82ab6d931 to your computer and use it in GitHub Desktop.
Save jgoldfar/4f8f295841d68248d93426f82ab6d931 to your computer and use it in GitHub Desktop.
--- Makeconf.orig 2016-09-20 16:33:23.061756020 +0200
+++ Makeconf 2016-09-20 16:39:47.385547117 +0200
@@ -1,26 +1,26 @@
# set this to your compiler's executable name (e.g. gfortran, g77)
FC=gfortran
# requested flags
-FFLAGS=-fimplicit-none -O3 -funroll-loops
+FFLAGS=-fimplicit-none -march=native -O3 -funroll-loops -lgfortran
# set if you need shared library
FPICFLAGS=-fPIC
# BLAS library (only required for tests)
-BLAS=-lblas
+BLAS="/Users/jgoldfar/Public/octave/usr/lib/libopenblas.a"
# LAPACK library (only required for tests)
-LAPACK=-llapack
+LAPACK=
# Library version
VERSION=1.1
MAJOR=1
# The default library dir
-LIBDIR=lib
+LIBDIR=lib64
# Destination installation offset
DESTDIR=
# set default prefix to /usr/local
ifeq ($(strip $(PREFIX)),)
- PREFIX=/usr/local
+ PREFIX=/usr/local
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment