summaryrefslogtreecommitdiff
path: root/build.rs
AgeCommit message (Collapse)Author
2019-03-30Move //libdeno to //core/libdeno (#2015)Ryan Dahl
Fixes some sed errors introduced in c43cfe. Unfortunately moving libdeno required splitting build.rs into two parts, one for cli and one for core. I've also removed the arm64 build - it's complicating things at this re-org and we're not even testing it. I need to swing back to it and get tools/test.py running for it.
2019-03-08Add basic Arm64 build to CI (#1887)andy finch
2019-03-05fix snapshots in gn build (#1886)andy finch
Bug introduced in 75fe80d5a4992ddad89160c2e0113a1af8d3d24a
2019-03-04`use-snapshots` build option for cross compile support. (#1852)andy finch
2019-01-21chore: update license lines (#1557)Yoshiya Hinosawa
2018-12-20cargo build: skip setup.py if possibleRyan Dahl
2018-12-19build: make `cargo build` workBert Belder
2018-12-19build: fix RLS-invoked 'cargo check' buildBert Belder
2018-11-30Cargo and GN should build into same directory.Ryan Dahl
Currently gn builds into "target/debug" however cargo tells gn to build into "target/debug/build/deno-26d2b5325de0f0cf/out" This patch changes it so that they both build into "target/debug".
2018-11-01cargo: build in Cargo's out dir if DENO_BUILD_PATH is not setBert Belder
Plus some minor improvements and clean-ups: * Resolve DENO_BUILD_PATH to an absolute path if necessary. * Rename DENO_BUILD_PATH to GN_OUT_DIR in places where it is supposed to be set by the build system (and not a user configuration variable). * Output Cargo `rerun-if-*-changed` instructions first, so even if the build itself fails, configuration changes will still trigger a re-run of build.rs. * Remove TODOs that are impossible. * Re-run build.rs when the flatbuffer definition file changes.
2018-11-01cargo: build only necessary Ninja targets when invoked by RLSBert Belder
2018-10-31Support cargo check (#1128)Ryan Dahl
- Based on code from @qti3e and @piscisaureus in #724 and #1125 respectively. - TODO The DENO_BUILD_PATH env var must be supplied and must be an absolute path, this restriction should be removed in future work.