Skip to content
Snippets Groups Projects
Commit 8857767d authored by Andrii Vasylevskyi's avatar Andrii Vasylevskyi Committed by Florian Loitsch
Browse files

Add wasm32 as supported platform (#120)

Summary:
Emscripten is already included, adding wasm32 the same way for when
build with "plain" clang wasm32 (without emscripten)

Test Plan:
make
test/cctest/cctest --list | tr -d '<' | xargs test/cctest/cctest

Reviewers:

Subscribers:

Tasks:

Tags:
parent a54561be
No related branches found
No related tags found
No related merge requests found
......@@ -104,7 +104,7 @@ int main(int argc, char** argv) {
defined(__riscv) || defined(__e2k__) || \
defined(__or1k__) || defined(__arc__) || \
defined(__microblaze__) || defined(__XTENSA__) || \
defined(__EMSCRIPTEN__)
defined(__EMSCRIPTEN__) || defined(__wasm32__)
#define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1
#elif defined(__mc68000__) || \
defined(__pnacl__) || defined(__native_client__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment