We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6055cda commit 0bdfa28Copy full SHA for 0bdfa28
1 file changed
tests/wamr-test-suites/spec-test-script/runtest.py
@@ -46,7 +46,8 @@
46
aot_target_options_map = {
47
"i386": ["--target=i386"],
48
"x86_32": ["--target=i386"],
49
- "x86_64": ["--target=x86_64", "--cpu=skylake"],
+ # cf. https://github.com/bytecodealliance/wasm-micro-runtime/issues/3035
50
+ "x86_64": ["--target=x86_64", "--cpu=skylake", "--size-level=0"],
51
"aarch64": ["--target=aarch64", "--target-abi=eabi", "--cpu=cortex-a53"],
52
"aarch64_vfp": ["--target=aarch64", "--target-abi=gnueabihf", "--cpu=cortex-a53"],
53
"armv7": ["--target=armv7", "--target-abi=eabi", "--cpu=cortex-a9", "--cpu-features=-neon"],
0 commit comments