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