7313a837d4
C++ links were failing because this script set CXX=cc.
17 lines
174 B
Bash
17 lines
174 B
Bash
#!/bin/sh
|
|
|
|
# this sets up the compile for MacOS X
|
|
|
|
set echo
|
|
CFLAGS="-pipe -g"
|
|
CXXFLAGS="$CFLAGS"
|
|
|
|
export CC
|
|
export CXX
|
|
export CFLAGS
|
|
export CXXFLAGS
|
|
|
|
./configure
|
|
|
|
unset echo
|