forked from M-Labs/nac3
1
0
Fork 0

core: IRRT -Werror=return-type

This commit is contained in:
lyken 2024-07-10 10:17:43 +08:00
parent b0f97b4d36
commit 84fc095800
1 changed files with 2 additions and 0 deletions

View File

@ -31,6 +31,7 @@ fn compile_irrt(irrt_dir: &Path, out_dir: &Path) {
"-S",
"-Wall",
"-Wextra",
"-Werror=return-type",
"-I",
irrt_dir.to_str().unwrap(),
"-o",
@ -96,6 +97,7 @@ fn compile_irrt_test(irrt_dir: &Path, out_dir: &Path) {
"-O0",
"-Wall",
"-Wextra",
"-Werror=return-type",
"-lm", // for `tgamma()`, `lgamma()`
"-o",
exe_path.to_str().unwrap(),