2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2014-09-21 04:36:17 +00:00
|
|
|
// Check that we can use `-C lto` when linking against libraries that were
|
2014-09-17 23:18:12 +00:00
|
|
|
// separately compiled.
|
2014-08-01 22:45:24 +00:00
|
|
|
|
|
|
|
// aux-build:sepcomp_lib.rs
|
2017-01-18 16:24:43 +00:00
|
|
|
// compile-flags: -C lto -g
|
2019-08-17 05:08:01 +00:00
|
|
|
// ignore-asmjs wasm2js does not support source maps yet
|
2014-08-01 22:45:24 +00:00
|
|
|
// no-prefer-dynamic
|
|
|
|
|
|
|
|
extern crate sepcomp_lib;
|
|
|
|
use sepcomp_lib::a::one;
|
|
|
|
use sepcomp_lib::b::two;
|
|
|
|
use sepcomp_lib::c::three;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
assert_eq!(one(), 1);
|
|
|
|
assert_eq!(two(), 2);
|
|
|
|
assert_eq!(three(), 3);
|
|
|
|
}
|