summaryrefslogtreecommitdiff
path: root/build_extra/rust/get_rust_ldflags.py
AgeCommit message (Collapse)Author
2018-10-25build: fix compatibility with rustc 1.30.0Bert Belder
Additionally: * Rebuild rust crates when the rustc version changes. * Fetch all rust ldflags in one exec_script() call instead of two.
2018-08-18Add an error message if rustc is not installedAndy Hayden
2018-07-24Change copyrights to be 'Deno authors'.Ryan Dahl
2018-07-20Suppress misleading rustc warning when running gn genBert Belder
rustc prints the warning: `-C save-temps` might not produce all requested temporary products when incremental compilation is enabled. However, incremental compilation isn't even enabled. A look at the Rust source code confirms that this warning is indeed printed unconditionally when the `-C save-temps` flag is specified: https://github.com/rust-lang/rust/blob/5f2b325f64ed6caa7179f3e04913db437656ec7e/src/librustc/session/config.rs#L1015-L1018
2018-07-19Link rust_test targets with external linker, fix handlers_test linkageBert Belder