Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

do not inline or_ function #388

Merged
merged 2 commits into from
Jul 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
more warnings when compiling our C stdlib
zapashcanon committed Jul 30, 2024
commit d8029b66494e37844dd2bf2cfb9b76579a986054
4 changes: 2 additions & 2 deletions src/libc/script.ml
Original file line number Diff line number Diff line change
@@ -14,8 +14,8 @@ let () =
let out = Format.sprintf "%s.o" filename in
let n =
Format.ksprintf Sys.command
"clang -g -O3 -ffreestanding --no-standard-libraries --target=wasm32 \
-c -m32 -Iinclude -Wno-int-conversion -Wno-return-type \
"clang -O3 -ffreestanding --no-standard-libraries --target=wasm32 -c \
-m32 -Iinclude -Wall -Werror -Wno-int-conversion -Wno-return-type \
-fbracket-depth=512 -DWANT_STRTOD_WITHOUT_LONG_DOUBLE -o %s %s"
out c_filename
in