diff options
author | Cheng Shao <astrohavoc@gmail.com> | 2022-10-21 13:43:40 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-11-11 00:26:55 -0500 |
commit | df7bfef8f72bb32663d3828bf096587525f09335 (patch) | |
tree | 93eb162e317d936659d33af1bcc0db3131a5eb56 /configure.ac | |
parent | 3633a5f5b001c3519b78c956cff4657f5ddde445 (diff) | |
download | haskell-df7bfef8f72bb32663d3828bf096587525f09335.tar.gz |
Add support for the wasm32-wasi target tuple
This patch adds the wasm32-wasi tuple support to various places in the
tree: autoconf, hadrian, ghc-boot and also the compiler. The codegen
logic will come in subsequent commits.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1a39d71533..1a62c89831 100644 --- a/configure.ac +++ b/configure.ac @@ -333,7 +333,7 @@ AC_SUBST(TablesNextToCode) dnl ** Does target have runtime linker support? dnl -------------------------------------------------------------- case "$target" in - powerpc64-*|powerpc64le-*|powerpc-ibm-aix*|s390x-ibm-linux|riscv64-*) + powerpc64-*|powerpc64le-*|powerpc-ibm-aix*|s390x-ibm-linux|riscv64-*|wasm*) TargetHasRTSLinker=NO ;; *) |