about summary refs log tree commit diff
path: root/src/test/run-make/issue-14500
AgeCommit message (Collapse)AuthorLines
2018-03-22rustc: Add a `#[wasm_custom_section]` attributeAlex Crichton-60/+0
This commit is an implementation of adding custom sections to wasm artifacts in rustc. The intention here is to expose the ability of the wasm binary format to contain custom sections with arbitrary user-defined data. Currently neither our version of LLVM nor LLD supports this so the implementation is currently custom to rustc itself. The implementation here is to attach a `#[wasm_custom_section = "foo"]` attribute to any `const` which has a type like `[u8; N]`. Other types of constants aren't supported yet but may be added one day! This should hopefully be enough to get off the ground with *some* custom section support. The current semantics are that any constant tagged with `#[wasm_custom_section]` section will be *appended* to the corresponding section in the final output wasm artifact (and this affects dependencies linked in as well, not just the final crate). This means that whatever is interpreting the contents must be able to interpret binary-concatenated sections (or each constant needs to be in its own custom section). To test this change the existing `run-make` test suite was moved to a `run-make-fulldeps` folder and a new `run-make` test suite was added which applies to all targets by default. This test suite currently only has one test which only runs for the wasm target (using a node.js script to use `WebAssembly` in JS to parse the wasm output).
2015-11-06Preserve public static items across LTOarcnmx-1/+5
2015-09-17rmake: Get all tests passing on MSVCAlex Crichton-1/+1
2015-04-04fixing some tests and temporarily disabling others to get Bitrig build ↵Dave Huseby-0/+4
working 100%
2015-03-15Strip all leading/trailing newlinesTamir Duberstein-1/+0
2014-09-21Move -Z lto to -C lto.Colin Davidson-1/+1
Closes #12443
2014-06-06rustc: Preserve reachable extern fns with LTOAlex Crichton-0/+53
All rust functions are internal implementation details with respect to the ABI exposed by crates, but extern fns are public components of the ABI and shouldn't be stripped. This commit serializes reachable extern fns to metadata, so when LTO is performed all of their symbols are not stripped. Closes #14500