Add simplified compilation command causing error

This commit is contained in:
Stephen Seo 2021-09-07 17:56:50 +09:00
parent 94ba0b70e8
commit ab264f26ca
1 changed files with 11 additions and 0 deletions

11
command_that_causes_error.sh Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env bash
pushd "$(dirname "$0")" >&/dev/null
set -v
/usr/bin/g++ -I./src -Wall -Wextra -Wpedantic -O0 -g -o ECTest.cpp.o -c ./src/test/ECTest.cpp
set +v
popd >&/dev/null