mirror of
https://github.com/pfloos/quack
synced 2024-12-22 04:13:52 +01:00
fixing merge with ci
This commit is contained in:
parent
785683a111
commit
4fd5cec4be
2
quack.rc
2
quack.rc
@ -6,7 +6,7 @@ QUACK_ROOT="/NOT/FOUND"
|
||||
QUACK_ROOT=$(dirname $0)
|
||||
;;
|
||||
*)
|
||||
QUACK_ROOT=$(dirname ${BASH_SOURCE}[0])
|
||||
QUACK_ROOT=$(dirname ${BASH_SOURCE})[0]
|
||||
;;
|
||||
esac
|
||||
|
||||
|
@ -41,7 +41,7 @@ CC = gcc
|
||||
CXX = g++
|
||||
LAPACK=-lblas -llapack
|
||||
STDCXX=-lc++
|
||||
FIX_ORDER_OF_LIBS=-Wl,--start-group
|
||||
FIX_ORDER_OF_LIBS=
|
||||
"""
|
||||
|
||||
compile_gfortran_mac_debug = """
|
||||
@ -66,16 +66,14 @@ STDCXX=-lstdc++
|
||||
FIX_ORDER_OF_LIBS=-Wl,--start-group
|
||||
"""
|
||||
|
||||
|
||||
|
||||
if sys.platform == "Darwin":
|
||||
if sys.platform.lower() == "darwin":
|
||||
|
||||
if DEBUG:
|
||||
compiler = compile_gfortran_mac_debug
|
||||
else:
|
||||
compiler = compile_gfortran_mac
|
||||
|
||||
elif sys.platform == "Linux" or os.path.exists('/proc/version'):
|
||||
elif sys.platform.lower() == "linux" or os.path.exists('/proc/version'):
|
||||
|
||||
if DEBUG:
|
||||
compiler = compile_gfortran_linux_debug
|
||||
|
Loading…
Reference in New Issue
Block a user