582 Commits

Author SHA1 Message Date
12f1909d35 remove a few deprecated methods - #84 2019-01-04 13:55:00 -05:00
31ef45258f make global CLI options available under subcommands - close #86 2019-01-03 13:50:01 -05:00
9f9b7f0bf4 preserve .mf dependency files - close #58 2019-01-01 21:17:28 -05:00
918c629435 add verbose CLI option to set Environment default echo mode - close #70 2019-01-01 16:15:22 -05:00
eaac473f44 provide Environment construction option to use stored configuration settings - close #78 2019-01-01 15:49:15 -05:00
fa5aa51daa Do not rebuild after building after auto-configuration. - close #80
Split Environment into BasicEnvironment and Environment.
2018-12-30 15:57:05 -05:00
347d651ab6 Add builder construction variables to Environments before the builder is added. 2018-12-29 17:57:41 -05:00
08085f09c4 libs found with check_lib should be added to LIBS - close #79 2018-12-17 23:05:18 -05:00
5915ac2b95 ConfigureOp: refactor some logic into #store_common 2018-12-17 22:54:34 -05:00
a98c111cd2 implement distclean operation - close #81 2018-12-17 22:47:00 -05:00
93ffed2eb2 Use "Environment" instead of "Rscons::Environment" in build tests 2018-12-17 22:14:35 -05:00
f8e6666a2c Add 'build' DSL method.
Disallow processing Environments until configuration is performed.
2018-12-17 22:14:35 -05:00
5720662b7c avoid mkdir() race conditions - close #75 2018-12-11 22:13:52 -05:00
432d221be2 remove build_dir functionality - close #65 2018-12-11 22:06:20 -05:00
John Lindgren
a1efb1c1b3 Reduce recursion of VarSet#expand_varref by expanding vars earlier.
It's common for a build command to contain a reference like:

    ${INCPREFIX}${CPPPATH}

Where ${INCPREFIX} is "-I" and ${CPPPATH} is an array of include
paths.  Without this change, Rscons expands ${INCPREFIX} (and then
tries to expand "-I") repeatedly, once for each path.

This change simply makes Rscons intelligent enough to expand
${INCPREFIX} only once, then join the expanded value to each path.

In a mid-sized rake project, ruby-prof shows that the number of
calls to expand_varref is reduced from ~80,000 to ~30,000., and the
total CPU time spent in expand_varref is reduced by about 30%.

In a larger project, the improvement in real build time is small
but consistent enough to be measurable (~0.5 seconds off a total
of ~20 seconds).
2018-12-09 21:20:44 -05:00
7c7ee142e0 implement autoconf - close #63, close #68, closes #67 2018-12-03 22:23:42 -05:00
ba69f05e99 remove backtrace from stderr for unknown CLI options - close #69 2018-11-30 23:29:19 -05:00
6180410cc4 add spec for Cache validating JSON contents 2018-11-30 23:11:52 -05:00
2d44a88fb6 add spec for unknown CLI operation 2018-11-30 23:08:16 -05:00
28e3781331 add configure spec testing --prefix 2018-11-30 23:05:41 -05:00
c0a28d0207 add configure spec to check multiple set_define's being stored 2018-11-29 22:14:10 -05:00
0e27e967d0 configure: fix handling build_dir and prefix options 2018-11-29 22:06:36 -05:00
1ecce7e99e add configure spec to check as much as possible 2018-11-29 22:02:42 -05:00
25b73ebd8f move logic to find an executable from ConfigureOp to Util 2018-11-29 21:51:30 -05:00
bca963af5c add configure spec for check_cfg not finding the specified program 2018-11-29 21:28:37 -05:00
ba5377a1ce add configure specs to check for unknown compiler names 2018-11-29 20:51:24 -05:00
8d7fd4bda8 test all known compiler invocation commands - close #66 2018-11-29 17:44:36 -05:00
e3e2e46d6e fix configure :set_define handling to append to CPPDEFINES array 2018-11-25 22:00:55 -05:00
9e0ce5a55c add spec for check_cfg with a :package argument 2018-11-25 21:58:22 -05:00
b88131eb2f add specs testing configure :set_define option and fix the same 2018-11-25 21:45:46 -05:00
dff80587ac move Rscons.absolute_path?() to Util 2018-11-25 21:31:48 -05:00
cd2696dd0b add Util specs 2018-11-25 21:22:37 -05:00
36643c1ab1 add Util module and Util.make_relative_path() 2018-11-25 21:17:11 -05:00
778d9ed8b2 add simplecov filters to filter out spec/dspec tests when the opposite spec task is executed 2018-11-25 21:11:00 -05:00
660d30558a remove Environment#to_h 2018-11-25 21:00:29 -05:00
82fbd34149 add dspec task to test dist file; revert spec task to normal behavior 2018-11-25 20:45:32 -05:00
e0b82d37af cache: remove obsolete "default_environment_vars" entry 2018-11-25 17:02:02 -05:00
7a90325b67 set Environment build root automatically - close #64 2018-11-25 16:58:19 -05:00
49116e6b59 store build_dir and prefix configuration options in cache 2018-11-25 16:06:36 -05:00
90300a1606 pass operation options via Hash instead of setting Application attributes 2018-11-25 16:02:04 -05:00
1eb07e9a22 use Rsconscript instead of Rsconsfile - close #62 2018-11-25 15:42:53 -05:00
9975eec165 add build test for check_cfg - close #59 2018-11-23 22:23:01 -05:00
04c0a6a86f colorize configure messages more consistently 2018-11-23 21:55:02 -05:00
bfdf3a12fd load configuration data when constructing a new Environment - close #60 2018-11-23 21:23:19 -05:00
6dd9c835ce store configuration data more opaquely in Cache 2018-11-23 20:15:39 -05:00
cfec0dcadc simplify Application/Script/ConfigureOp interaction with direct calls to configure methods 2018-11-23 19:59:47 -05:00
a1c1cc1855 check_cfg: print something 2018-11-15 17:14:11 -05:00
add9f9c50d save configured environment construction flags for separate build step - close #60 2018-11-15 17:04:04 -05:00
ba3d656110 consolidate some configure check reporting 2018-11-14 23:30:47 -05:00
ab4ca71ac7 implement ConfigureOp#check_cfg - not tested yet 2018-11-14 23:28:00 -05:00