Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2019-11-22 14:42:55 +0300
committerGitHub <noreply@github.com>2019-11-22 14:42:55 +0300
commitecd67a91c4bbeef046f8521da93f106da8fc0191 (patch)
tree4d14aeb2ba065386afa31443ece5cba04b4359d2 /configure.ac
parent6a5c44b15e65782cac21673cd33138a92a6b6207 (diff)
[wasm] Add aot+netcore support. (#17798)
* [wasm] Compile corelib as 32 bit. * [wasm] Add a netcore cross compiler. * [wasm] Add netcore+aot support. * [aot] Load the dedup module lazily instead of at startup. The previous version didn't work on netcore because it couldn't resolve references to corlib etc. since they were not yet registered in the root domain at the time of loading. * Add more icall trampoline signatures. * Add more netcore pinvokes. * Fix the build. * Add more icall trampoline signatures. * Add an --embed-file option to the packager. * Add more netcore pinvokes. * [interp] Return FALSE for IsDynamicCodeCompiled. * Add a netcore project and targets for running BenchmarkDotNet. * Fix pinvoke tables. * Add missing files. * Fix make clean. * Add a comment. * Revert "Fix pinvoke tables." This reverts commit 998065e77614b7e621d2873510aabc3930669ca9. * Make xunit-runner into a dotnet project. Add a netcore version.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index be29df06082..a204c9e821d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -148,7 +148,7 @@ case "$host" in
platform_wasm=yes
# FIXME:
RID="osx-x64"
- COREARCH="x64"
+ COREARCH="wasm32"
CORETARGETS="-p:TargetsUnix=true -p:TargetsOSX=true"
build_darwin=yes
;;