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