We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 731bc37 commit 48fed27Copy full SHA for 48fed27
1 file changed
cppsh
@@ -5,6 +5,12 @@ if [ $# -lt 1 ] || [[ "$1" == "-"* ]]; then
5
echo " * cppsh source.cpp"
6
echo " * or add \"#!/usr/bin/env cppsh\" on top of your source file and execute it directly"
7
echo " * if the source file does not exist, it is created with a hello world stump"
8
+ echo " * add compiler params as comments, e.g.:"
9
+ echo " // cppsh::CPPFLAGS -DLOG=1"
10
+ echo " // cppsh::CXXFLAGS -march=native"
11
+ echo " // cppsh::LDFLAGS -flto"
12
+ echo " // cppsh::LIBS -lcurl"
13
+ echo " // cppsh::VERBOSE 1"
14
exit 1
15
fi
16
0 commit comments