toolkit/func/core/pkg_gcc/11-gcc-build-cpp.sh

10 lines
211 B
Bash
Raw Normal View History

2021-07-05 06:50:25 +00:00
#!/bin/bash
r_log "gcc" "Ensure g++ can build a simple program"
OUTPUTPROG=$(mktemp)
2021-07-06 20:16:01 +00:00
g++ -x c++ ./common/files/hello.cpp -o "$OUTPUTPROG"
"$OUTPUTPROG" | grep -q "Hello!"
2021-07-05 06:50:25 +00:00
r_checkExitStatus $?
2021-07-06 20:16:01 +00:00
rm "$OUTPUTPROG"