There are several builds defined here, and a few more sketched out that don't quite work. Most of the steps call out to external shell or batch files, to make things easier to keep track of.
7 lines
192 B
Bash
Executable File
7 lines
192 B
Bash
Executable File
#!/bin/sh -ve
|
|
|
|
export CC="$(brew --prefix llvm)/bin/clang"
|
|
export CXX="$(brew --prefix llvm)/bin/clang++"
|
|
|
|
scons CXXFLAGS="-I/usr/local/opt/zlib/include" LINKFLAGS="-L/usr/local/opt/zlib/lib"
|