From ab264f26caf474a6f0e91d58e3fc3d3b7e100f7d Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Tue, 7 Sep 2021 17:56:50 +0900 Subject: [PATCH] Add simplified compilation command causing error --- command_that_causes_error.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 command_that_causes_error.sh diff --git a/command_that_causes_error.sh b/command_that_causes_error.sh new file mode 100755 index 0000000..bff3441 --- /dev/null +++ b/command_that_causes_error.sh @@ -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