This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- #! /bin/bash
1
+ #! /usr/ bin/env bash
2
2
# Environment variables for build
3
3
OPENBLAS_VERSION=" v0.3.7"
4
4
MACOSX_DEPLOYMENT_TARGET=10.9
5
5
CFLAGS=" -std=c99 -fno-strict-aliasing"
6
6
# Macos's linker doesn't support stripping symbols
7
- if [ [ $( uname) != " Darwin" ] ]; then
7
+ if [ " $( uname) " != " Darwin" ]; then
8
8
LDFLAGS=" -Wl,--strip-debug"
9
9
# make sure that LDFLAGS is exposed to child processes,
10
10
# since current version of manybuild only export CFLAGS, CPPFLAGS and FFLAGS
Original file line number Diff line number Diff line change 1
- #! /bin/bash
1
+ #! /usr/ bin/env bash
2
2
# Environment variables for 32-bit build.
3
3
# The important difference from the 64-bit build is `-msse2` to
4
4
# compile sse loops for ufuncs.
@@ -9,7 +9,7 @@ MACOSX_DEPLOYMENT_TARGET=10.9
9
9
# CFLAGS="-msse2 -std=c99 -fno-strict-aliasing"
10
10
CFLAGS=" -std=c99 -fno-strict-aliasing"
11
11
# Macos's linker doesn't support stripping symbols
12
- if [ [ $( uname) != " Darwin" ] ]; then
12
+ if [ " $( uname) " != " Darwin" ]; then
13
13
LDFLAGS=" -Wl,--strip-debug"
14
14
# make sure that LDFLAGS is exposed to child processes,
15
15
# since current version of manybuild only export CFLAGS, CPPFLAGS and FFLAGS
You can’t perform that action at this time.
0 commit comments