more proper fix for wasm; test arch=generic in moreCfgs.sh

This commit is contained in:
dzaima 2023-05-16 00:13:26 +03:00
parent e4d222173d
commit 73cc5bba5f
2 changed files with 29 additions and 30 deletions

View File

@ -271,8 +271,7 @@ po ← { # parsed options
"-Wno-parentheses" # gcc "-Wno-parentheses" # gcc
# clang # clang
"-Wno-microsoft-anon-tag", "-Wno-bitwise-instead-of-logical", "-Wno-unknown-warning-option" "-Wno-microsoft-anon-tag", "-Wno-bitwise-instead-of-logical", "-Wno-unknown-warning-option"
(¬wasm)/"-mllvm", "--x86-cmov-converter=0" # thing that converts `cmov`s to branching sometimes (?), but we don't want that
(¬wasm)/"-mllvm", "--x86-cmov-converter=0" # thing that converts `cmov`s to branching sometimes (?), but we don't want that
args 0GetLibs@ args 0GetLibs@

View File

@ -26,7 +26,7 @@ build/build f='-DOBJ_COUNTER' c && ./BQN -p 2+2 || exit
build/build f='-DNO_RT' c && ./BQN -p 2+2 || exit build/build f='-DNO_RT' c && ./BQN -p 2+2 || exit
build/build f='-DNATIVE_COMPILER' c && ./BQN -p 2+2 || exit build/build f='-DNATIVE_COMPILER' c && ./BQN -p 2+2 || exit
build/build f='-DNATIVE_COMPILER -DONLY_NATIVE_COMP -DFORMATTER=0 -DNO_RT -DNO_EXPLAIN' c && ./BQN -p 2+2 || exit build/build f='-DNATIVE_COMPILER -DONLY_NATIVE_COMP -DFORMATTER=0 -DNO_RT -DNO_EXPLAIN' c && ./BQN -p 2+2 || exit
build/build f='-DLOG_GC' c && ./BQN -p 2+2 || exit build/build f='-DLOG_GC' arch=generic c && ./BQN -p 2+2 || exit
build/build f='-DUSE_PERF' c && ./BQN -p 2+2 || exit build/build f='-DUSE_PERF' c && ./BQN -p 2+2 || exit
build/build f='-DREPL_INTERRUPT=0' c && ./BQN -p 2+2 || exit build/build f='-DREPL_INTERRUPT=0' c && ./BQN -p 2+2 || exit
build/build f='-DREPL_INTERRUPT=1' c && ./BQN -p 2+2 || exit build/build f='-DREPL_INTERRUPT=1' c && ./BQN -p 2+2 || exit