diff options
author | Soni L <EnderMoneyMod@gmail.com> | 2020-12-07 16:18:58 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-07 11:18:58 -0800 |
commit | 3c4bad02b95e8ef6b4f773647adcbe467cc316f3 (patch) | |
tree | 5338444436b04ee3de09419e6bf2dd0932b6c16c /test/run-tests.py | |
parent | 60dee30f5711f82a019f462144d7ff4d42c6a259 (diff) | |
download | wabt-3c4bad02b95e8ef6b4f773647adcbe467cc316f3.tar.gz wabt-3c4bad02b95e8ef6b4f773647adcbe467cc316f3.tar.bz2 wabt-3c4bad02b95e8ef6b4f773647adcbe467cc316f3.zip |
Port to big-endian platforms (s390x but others can be trivially added) (#1557)
* Initial attempt at s390x port
* Second attempt at s390x port
* Fix big-endian memory fill
* Fix more memory location calculations
* Improve SIMD
* Implement big-endian memory grow
* Fill relocation with 0x00, as per spec
* Make wasm2c endianness work
* Fix shuffle
* Fix load endianness in wasm2c
* Refactor into shared code
* Clean up SwapBytesSized
* Clean up MemcpyEndianAware
* Clean up
* "Fix" opcodecnt basic test
Diffstat (limited to 'test/run-tests.py')
-rwxr-xr-x | test/run-tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/run-tests.py b/test/run-tests.py index 9d01b564..2d4c1da1 100755 --- a/test/run-tests.py +++ b/test/run-tests.py @@ -23,6 +23,7 @@ import os import re import shlex import shutil +import struct import subprocess import sys import threading @@ -145,6 +146,7 @@ TOOLS = { '%(in_file)s', '--bindir=%(bindir)s', '--no-error-cmdline', + '--cflags=-DWABT_BIG_ENDIAN=' + '01'[struct.pack('<h', *struct.unpack('=h', b'\x00\x01'))[0]], '-o', '%(out_dir)s', ]), |