* use the LLVM-MC assembler by default for the WebAssembly targets

git-svn-id: branches/wasm@47172 -
This commit is contained in:
nickysn 2020-10-24 15:33:35 +00:00
parent 9257aa8594
commit 66c1a57ab4
2 changed files with 4 additions and 4 deletions

View File

@ -77,8 +77,8 @@ unit i_wasi;
Cprefix : '';
newline : #10;
dirsep : '/';
assem : as_wasm32_wabt;
assemextern : as_wasm32_wabt;
assem : as_wasm32_llvm_mc;
assemextern : as_wasm32_llvm_mc;
link : ld_none;
linkextern : ld_wasi; // there's no linker, only object files for WASM
ar : ar_none;

View File

@ -77,8 +77,8 @@ unit i_wasm;
Cprefix : '';
newline : #10;
dirsep : '/';
assem : as_wasm32_wabt;
assemextern : as_wasm32_wabt;
assem : as_wasm32_llvm_mc;
assemextern : as_wasm32_llvm_mc;
link : ld_none;
linkextern : ld_wasm; // there's no linker, only object files for WASM
ar : ar_none;