summaryrefslogtreecommitdiffhomepage
path: root/misc/examples/make.sh
diff options
context:
space:
mode:
authortylov <[email protected]>2023-07-09 00:06:54 +0200
committertylov <[email protected]>2023-07-10 19:31:41 +0200
commit071b41c0fe95cb3f9a72bbe0417d856e7989ca08 (patch)
tree41714c18e813b4eeec48f7d5a7109485f097f5d5 /misc/examples/make.sh
parentc773d8b1f41d5c2ceb228c44a9958e22db0990e2 (diff)
downloadSTC-modified-071b41c0fe95cb3f9a72bbe0417d856e7989ca08.tar.gz
STC-modified-071b41c0fe95cb3f9a72bbe0417d856e7989ca08.zip
Backport from dev43: Bugfixes on 4.2 from raspberry pi 32-bit testing. Fixes issue #61: too small int used in example.
Diffstat (limited to 'misc/examples/make.sh')
-rwxr-xr-xmisc/examples/make.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/examples/make.sh b/misc/examples/make.sh
index 0297e5a1..b0c0bd52 100755
--- a/misc/examples/make.sh
+++ b/misc/examples/make.sh
@@ -6,7 +6,7 @@ if [ "$(uname)" = 'Linux' ]; then
oflag='-o '
fi
-cc=gcc; cflags="-s -O3 -std=c99 -Wconversion -Wpedantic -Wall -Wsign-compare -Wwrite-strings"
+cc=gcc; cflags="-s -O3 -std=c99 -Wconversion -Wpedantic -Wall -Wsign-compare -Wwrite-strings -Wno-maybe-uninitialized"
#cc=gcc; cflags="-g -std=c99 -Werror -Wfatal-errors -Wpedantic -Wall $sanitize"
#cc=tcc; cflags="-Wall -std=c99"
#cc=clang; cflags="-s -O2 -std=c99 -Werror -Wfatal-errors -Wpedantic -Wall -Wno-unused-function -Wsign-compare -Wwrite-strings"