Browse Source

* use upper case asm id strings, so assemblers can be selected via the -A option

git-svn-id: branches/wasm@46267 -
nickysn 5 years ago
parent
commit
fa9eef27ef
2 changed files with 2 additions and 2 deletions
  1. 1 1
      compiler/wasm32/agbinaryen.pas
  2. 1 1
      compiler/wasm32/agwat.pas

+ 1 - 1
compiler/wasm32/agbinaryen.pas

@@ -587,7 +587,7 @@ implementation
     as_wasm_binaryen_info : tasminfo =
        (
          id     : as_wasm32_binaryen;
-         idtxt  : 'Binaryen';
+         idtxt  : 'BINARYEN';
          asmbin : 'wasm-as';
          asmcmd : '$ASM $EXTRAOPT';
          supported_targets : [system_wasm32_wasm,system_wasm32_wasi];

+ 1 - 1
compiler/wasm32/agwat.pas

@@ -1079,7 +1079,7 @@ implementation
     as_wasm_wabt_info : tasminfo =
        (
          id     : as_wasm32_wabt;
-         idtxt  : 'Wabt';
+         idtxt  : 'WABT';
          asmbin : 'wasa';
          asmcmd : '-r --no-canonicalize-leb128s -o $OBJ $EXTRAOPT $ASM';
          supported_targets : [system_wasm32_wasm,system_wasm32_wasi];