diff options
Diffstat (limited to 'tests/run-make/export-executable-symbols')
-rw-r--r-- | tests/run-make/export-executable-symbols/Makefile | 11 | ||||
-rw-r--r-- | tests/run-make/export-executable-symbols/main.rs | 8 |
2 files changed, 19 insertions, 0 deletions
diff --git a/tests/run-make/export-executable-symbols/Makefile b/tests/run-make/export-executable-symbols/Makefile new file mode 100644 index 000000000..daa77c99d --- /dev/null +++ b/tests/run-make/export-executable-symbols/Makefile @@ -0,0 +1,11 @@ +include ../../run-make-fulldeps/tools.mk + +# ignore-wasm32 +# ignore-wasm64 +# ignore-none no-std is not supported +# only-linux + +all: + $(RUSTC) -Zexport-executable-symbols main.rs --target $(TARGET) --crate-type=bin + nm $(TMPDIR)/main | $(CGREP) exported_symbol + diff --git a/tests/run-make/export-executable-symbols/main.rs b/tests/run-make/export-executable-symbols/main.rs new file mode 100644 index 000000000..c498381a3 --- /dev/null +++ b/tests/run-make/export-executable-symbols/main.rs @@ -0,0 +1,8 @@ +// edition:2018 + +fn main() {} + +#[no_mangle] +pub fn exported_symbol() -> i8 { + 42 +} |