toolkit/func/core/pkg_gcc/11-gcc-build-cpp.sh
2021-07-04 23:50:25 -07:00

10 lines
205 B
Bash
Executable File

#!/bin/bash
r_log "gcc" "Ensure g++ can build a simple program"
OUTPUTPROG=$(mktemp)
g++ -x c++ ./common/files/hello.cpp -o $OUTPUTPROG
$OUTPUTPROG | grep -q "Hello!"
r_checkExitStatus $?
rm $OUTPUTPROG