-
Notifications
You must be signed in to change notification settings - Fork 13.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #30629 - brson:emscripten-upstream, r=alexcrichton
Here's another go at adding emscripten support. This needs to wait again on new [libc definitions](rust-lang/libc#122) landing. To get the libc definitions right I had to add support for i686-unknown-linux-musl, which are very similar to emscripten's, which are derived from arm/musl. This branch additionally removes the makefile dependency on the `EMSCRIPTEN` environment variable by not building the unused compiler-rt. Again, this is not sufficient for actually compiling to asmjs since it needs additional LLVM patches. r? @alexcrichton
- Loading branch information
Showing
30 changed files
with
319 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# asmjs-unknown-emscripten configuration | ||
CC_asmjs-unknown-emscripten=emcc | ||
CXX_asmjs-unknown-emscripten=em++ | ||
CPP_asmjs-unknown-emscripten=$(CPP) | ||
AR_asmjs-unknown-emscripten=emar | ||
CFG_LIB_NAME_asmjs-unknown-emscripten=lib$(1).so | ||
CFG_STATIC_LIB_NAME_asmjs-unknown-emscripten=lib$(1).a | ||
CFG_LIB_GLOB_asmjs-unknown-emscripten=lib$(1)-*.so | ||
CFG_LIB_DSYM_GLOB_asmjs-unknown-emscripten=lib$(1)-*.dylib.dSYM | ||
CFG_JEMALLOC_CFLAGS_asmjs-unknown-emscripten := -m32 $(CFLAGS) | ||
CFG_GCCISH_CFLAGS_asmjs-unknown-emscripten := -Wall -Werror -g -fPIC -m32 $(CFLAGS) | ||
CFG_GCCISH_CXXFLAGS_asmjs-unknown-emscripten := -fno-rtti $(CXXFLAGS) | ||
CFG_GCCISH_LINK_FLAGS_asmjs-unknown-emscripten := -shared -fPIC -ldl -pthread -lrt -g -m32 | ||
CFG_GCCISH_DEF_FLAG_asmjs-unknown-emscripten := -Wl,--export-dynamic,--dynamic-list= | ||
CFG_LLC_FLAGS_asmjs-unknown-emscripten := | ||
CFG_INSTALL_NAME_asmjs-unknown-emscripten = | ||
CFG_EXE_SUFFIX_asmjs-unknown-emscripten = | ||
CFG_WINDOWSY_asmjs-unknown-emscripten := | ||
CFG_UNIXY_asmjs-unknown-emscripten := 1 | ||
CFG_LDPATH_asmjs-unknown-emscripten := | ||
CFG_RUN_asmjs-unknown-emscripten=$(2) | ||
CFG_RUN_TARG_asmjs-unknown-emscripten=$(call CFG_RUN_asmjs-unknown-emscripten,,$(2)) | ||
CFG_GNU_TRIPLE_asmjs-unknown-emscripten := asmjs-unknown-emscripten |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# i686-unknown-linux-musl configuration | ||
CC_i686-unknown-linux-musl=$(CFG_MUSL_ROOT)/bin/musl-gcc | ||
CXX_i686-unknown-linux-musl=notaprogram | ||
CPP_i686-unknown-linux-musl=$(CFG_MUSL_ROOT)/bin/musl-gcc -E | ||
AR_i686-unknown-linux-musl=$(AR) | ||
CFG_INSTALL_ONLY_RLIB_i686-unknown-linux-musl = 1 | ||
CFG_LIB_NAME_i686-unknown-linux-musl=lib$(1).so | ||
CFG_STATIC_LIB_NAME_i686-unknown-linux-musl=lib$(1).a | ||
CFG_LIB_GLOB_i686-unknown-linux-musl=lib$(1)-*.so | ||
CFG_JEMALLOC_CFLAGS_i686-unknown-linux-musl := -m32 -Wl,-melf_i386 | ||
CFG_GCCISH_CFLAGS_i686-unknown-linux-musl := -Wall -Werror -g -fPIC -m32 -Wl,-melf_i386 | ||
CFG_GCCISH_CXXFLAGS_i686-unknown-linux-musl := | ||
CFG_GCCISH_LINK_FLAGS_i686-unknown-linux-musl := | ||
CFG_GCCISH_DEF_FLAG_i686-unknown-linux-musl := | ||
CFG_LLC_FLAGS_i686-unknown-linux-musl := | ||
CFG_INSTALL_NAME_i686-unknown-linux-musl = | ||
CFG_EXE_SUFFIX_i686-unknown-linux-musl = | ||
CFG_WINDOWSY_i686-unknown-linux-musl := | ||
CFG_UNIXY_i686-unknown-linux-musl := 1 | ||
CFG_LDPATH_i686-unknown-linux-musl := | ||
CFG_RUN_i686-unknown-linux-musl=$(2) | ||
CFG_RUN_TARG_i686-unknown-linux-musl=$(call CFG_RUN_i686-unknown-linux-musl,,$(2)) | ||
CFG_GNU_TRIPLE_i686-unknown-linux-musl := i686-unknown-linux-musl | ||
CFG_THIRD_PARTY_OBJECTS_i686-unknown-linux-musl := crt1.o crti.o crtn.o | ||
CFG_INSTALLED_OBJECTS_i686-unknown-linux-musl := crt1.o crti.o crtn.o | ||
|
||
NATIVE_DEPS_libc_T_i686-unknown-linux-musl += libc.a | ||
NATIVE_DEPS_std_T_i686-unknown-linux-musl += libunwind.a crt1.o crti.o crtn.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
use super::{Target, TargetOptions}; | ||
|
||
pub fn target() -> Target { | ||
let opts = TargetOptions { | ||
linker: "emcc".to_string(), | ||
ar: "emar".to_string(), | ||
|
||
dynamic_linking: false, | ||
executables: true, | ||
exe_suffix: ".js".to_string(), | ||
no_compiler_rt: true, | ||
linker_is_gnu: true, | ||
allow_asm: false, | ||
archive_format: "gnu".to_string(), | ||
obj_is_bitcode: true, | ||
.. Default::default() | ||
}; | ||
Target { | ||
llvm_target: "asmjs-unknown-emscripten".to_string(), | ||
target_endian: "little".to_string(), | ||
target_pointer_width: "32".to_string(), | ||
target_os: "emscripten".to_string(), | ||
target_env: "".to_string(), | ||
target_vendor: "unknown".to_string(), | ||
arch: "asmjs".to_string(), | ||
options: opts, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
// See x86_64_unknown_linux_musl for explanation of arguments | ||
|
||
use target::Target; | ||
|
||
pub fn target() -> Target { | ||
let mut base = super::linux_base::opts(); | ||
base.cpu = "pentium4".to_string(); | ||
base.pre_link_args.push("-m32".to_string()); | ||
base.pre_link_args.push("-Wl,-melf_i386".to_string()); | ||
|
||
base.pre_link_args.push("-nostdlib".to_string()); | ||
base.pre_link_args.push("-static".to_string()); | ||
base.pre_link_args.push("-Wl,--eh-frame-hdr".to_string()); | ||
|
||
base.pre_link_args.push("-Wl,-(".to_string()); | ||
base.post_link_args.push("-Wl,-)".to_string()); | ||
|
||
base.pre_link_objects_exe.push("crt1.o".to_string()); | ||
base.pre_link_objects_exe.push("crti.o".to_string()); | ||
base.post_link_objects.push("crtn.o".to_string()); | ||
|
||
base.dynamic_linking = false; | ||
base.has_rpath = false; | ||
base.position_independent_executables = false; | ||
|
||
Target { | ||
llvm_target: "i686-unknown-linux-musl".to_string(), | ||
target_endian: "little".to_string(), | ||
target_pointer_width: "32".to_string(), | ||
arch: "x86".to_string(), | ||
target_os: "linux".to_string(), | ||
target_env: "musl".to_string(), | ||
target_vendor: "unknown".to_string(), | ||
options: base, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.