9 lines
142 B
Bash
Executable File
9 lines
142 B
Bash
Executable File
#! /bin/sh
|
|
|
|
. $(dirname $0)/cxx-common.sh
|
|
|
|
cxx=$(spicy-config --cxx)
|
|
cxxflags=$(spicy-config --cxxflags ${debug})
|
|
|
|
exec ${cxx} ${cxxflags} $@
|