Compare commits
No commits in common. "d1660e05cba986ee4f932af617967328a871cb52" and "46029cd01f10ae14499c7aad6bf118974d6cf57d" have entirely different histories.
d1660e05cb
...
46029cd01f
@ -1 +1 @@
|
|||||||
2.2.4
|
2.2.3
|
||||||
@ -1,7 +1,3 @@
|
|||||||
## 2.2.4
|
|
||||||
+ **default config**: C standard changed to C99
|
|
||||||
+ **default config**: enabled more warnings
|
|
||||||
|
|
||||||
## 2.2.3
|
## 2.2.3
|
||||||
+ removed `\r` characters from `detect_os.sh`
|
+ removed `\r` characters from `detect_os.sh`
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
INSTALLED_CBUILD_VERSION=2.2.4
|
INSTALLED_CBUILD_VERSION=2.2.3
|
||||||
|
|
||||||
# set \t size to 4 spaces
|
# set \t size to 4 spaces
|
||||||
tabs 4
|
tabs 4
|
||||||
|
|||||||
@ -1,22 +1,13 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
CBUILD_VERSION=2.2.4
|
CBUILD_VERSION=2.2.3
|
||||||
|
|
||||||
PROJECT="%PROJECT_NAME%"
|
PROJECT="%PROJECT_NAME%"
|
||||||
CMP_C="gcc"
|
CMP_C="gcc"
|
||||||
CMP_CPP="g++"
|
CMP_CPP="g++"
|
||||||
STD_C="c99"
|
STD_C="c11"
|
||||||
STD_CPP="c++11"
|
STD_CPP="c++11"
|
||||||
WARN_C="-Wall -Wextra
|
WARN_C="-Wall -Wno-discarded-qualifiers -Wextra -Wno-unused-parameter"
|
||||||
-Wduplicated-branches
|
WARN_CPP="-Wall -Wextra -Wno-unused-parameter"
|
||||||
-Wduplicated-cond
|
|
||||||
-Wformat=2
|
|
||||||
-Wmissing-include-dirs
|
|
||||||
-Wshadow
|
|
||||||
-Werror=return-type
|
|
||||||
-Werror=pointer-arith
|
|
||||||
-Werror=init-self
|
|
||||||
-Werror=incompatible-pointer-types"
|
|
||||||
WARN_CPP="$WARN_C"
|
|
||||||
SRC_C="$(find src -name '*.c')"
|
SRC_C="$(find src -name '*.c')"
|
||||||
SRC_CPP="$(find src -name '*.cpp')"
|
SRC_CPP="$(find src -name '*.cpp')"
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user