Skip to content

Commit c15ec8e

Browse files
committed
use -pedantic to avoid extensions
1 parent 60cc248 commit c15ec8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

getting-credits/2025/tests/configure.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if [[ -z $MYGNUTAR ]]; then
3131
# Build the binary that will be used by the test suite.
3232
echo "Building the '$MYTARNAME' binary ($MYTAR)."
3333
echo "Source: $MYTAR_C"
34-
$GCC -g -Wall -Wextra -std=c99 -o $MYTAR $MYTAR_C
34+
$GCC -g -Wall -Wextra -std=c99 -pedantic -o $MYTAR $MYTAR_C
3535
if (($? != 0)); then
3636
echo "Could not build $MYTARNAME."
3737
exit 1

0 commit comments

Comments
 (0)