Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make port compilation template configurable | Juhani Rankimies | 2011-06-02 | 1 | -15/+40 |
| | | | | | | - Port compiler no longer requires bash on windows. - It's possible to use compilers whose command lines don't fit into the default template | ||||
* | Minimize compile options | Tuncer Ayaz | 2011-06-01 | 2 | -4/+4 |
| | |||||
* | Fix erlc regression (reported-by Benoit Chesneau) | Tuncer Ayaz | 2011-06-01 | 1 | -2/+2 |
| | |||||
* | Add Steve Vinoski to THANKS file | Tuncer Ayaz | 2011-05-31 | 1 | -0/+1 |
| | |||||
* | Cleanup deprecations now that R14B03 is released | Tuncer Ayaz | 2011-05-31 | 6 | -200/+13 |
| | |||||
* | Extract code to get wordsize into helper function | Tuncer Ayaz | 2011-05-31 | 2 | -15/+12 |
| | |||||
* | Use external wordsize to get emulator build arch | Steve Vinoski | 2011-05-31 | 3 | -3/+17 |
| | | | | | | | | | | | | | | | Calling erlang:system_info(wordsize) yields the internal word size of the Erlang emulator. But due to the halfword emulator, need to pass {wordsize, external} instead to get the word size, or pointer size, as seen by external code such as NIFs. The halfword emulator has 4 byte internal words but 8 byte external words due to 64-bit compilation, which means NIFs for the halfword emulator also have to be compiled 64-bit. But just passing wordsize is equivalent to passing {wordsize, internal}, which does not indicate the pointer size for the halfword emulator. Older versions of Erlang do not support {wordsize, external}, though, so continue to pass just wordsize for those versions. | ||||
* | Change arch-specific port_sources to take a list | Andrew Tunnell-Jones | 2011-05-28 | 2 | -8/+11 |
| | | | | | | | | | | Change the second parameter of a regex tagged port_source from being a filename or wildcard to being a list of filenames or wildcards. Previously: {"R14", "c_src/*.c"} Now: {"R14", ["c_src/*.c"]} Motivation for change is to avoid repeating regexes. | ||||
* | Remove duplicate entry in THANKS | Tuncer Ayaz | 2011-05-26 | 1 | -1/+0 |
| | | | | | | Revert "Add Shunichi Shinohara to THANKS file" This reverts commit 2a98dc3f9265540fc12c7bd20d0ca5b2eacc0572. | ||||
* | Add Shunichi Shinohara to THANKS file | Tuncer Ayaz | 2011-05-25 | 1 | -0/+1 |
| | |||||
* | Abort if xref emits warnings | Shunichi Shinohara | 2011-05-25 | 1 | -21/+26 |
| | |||||
* | Abort if dialyze emits warnings | Tuncer Ayaz | 2011-05-25 | 1 | -6/+10 |
| | |||||
* | Add Andrew Gopienko to THANKS file | Tuncer Ayaz | 2011-05-24 | 1 | -0/+1 |
| | |||||
* | Better org. of how upgraded apps are determined | joewilliams | 2011-05-24 | 2 | -17/+49 |
| | | | | | | get_apps/3 now returns which apps have been added, removed and ugpgraded in a reasonable way. It should prove more usable should we want to access any of those lists in future appup related changes. | ||||
* | Fix leftover whitespace errors | Tuncer Ayaz | 2011-05-23 | 1 | -9/+9 |
| | |||||
* | Fix indentation errors | Tuncer Ayaz | 2011-05-23 | 2 | -39/+38 |
| | |||||
* | Fix indentation errors | Tuncer Ayaz | 2011-05-21 | 1 | -36/+37 |
| | |||||
* | Add Anthony Molinaro to THANKS file | Tuncer Ayaz | 2011-05-21 | 1 | -0/+1 |
| | |||||
* | Update README: fix formatting | Tuncer Ayaz | 2011-05-21 | 1 | -17/+20 |
| | |||||
* | Update README | Tuncer Ayaz | 2011-05-21 | 1 | -2/+2 |
| | |||||
* | Update known discrepancies: erl_scan corrected | Tuncer Ayaz | 2011-05-21 | 1 | -7/+2 |
| | |||||
* | Document pull requests, branching and code style | Tuncer Ayaz | 2011-05-21 | 1 | -2/+18 |
| | |||||
* | Merge pull request #69 from maxlapshin/master | Dave Smith | 2011-05-20 | 1 | -1/+1 |
|\ | | | | | I've added variable expansion in replace overlay | ||||
| * | Expand variables in replace overlay | Max Lapshin | 2011-04-29 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #75 from djnym/port_env_handling | Dave Smith | 2011-05-20 | 1 | -11/+41 |
|\ \ | | | | | | | Different fix for the OS environment vs Default environment | ||||
| * | | Change logic to support more port env use cases | Anthony Molinaro | 2011-05-13 | 1 | -11/+41 |
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The logic changes from strict overrides to a hybrid for merging os_env and defaults, whereby defaults are chosen if they are not set in the os_env or if the defaults contains substitutions (at which point os environment is substituted). This still means that rebar.config works as it did before, where it overrides or substitutes based on the use of $VAR, but that default and os environment merging works such that the common cases of providing CC or LDFLAGS in the users environment or command line work as you might expect. In that CC is overriden by the os environment unless rebar.config overrides it, and LDFLAGS from the user environment is appended or prepended based on defaults and rebar.config. Addresses problems with https://github.com/basho/rebar/pull/71 Also keeps the fix for bug 255. | ||||
* | | Fix code readability in port_compiler | Tuncer Ayaz | 2011-05-12 | 1 | -15/+15 |
| | | |||||
* | | Document so_specs | Tuncer Ayaz | 2011-04-30 | 1 | -0/+4 |
|/ | |||||
* | Add missing newline in port_compiler debug msg | Tuncer Ayaz | 2011-04-28 | 1 | -1/+1 |
| | |||||
* | Update mustache.erl | Tuncer Ayaz | 2011-04-27 | 1 | -7/+19 |
| | |||||
* | Fix eunit regression (reported-by Alexander Dorofeev) | Andrew Thompson | 2011-04-23 | 1 | -1/+4 |
| | |||||
* | Adjust deprecation message | Tuncer Ayaz | 2011-04-21 | 1 | -1/+1 |
| | |||||
* | Add support for command-specific env for hooks | Tuncer Ayaz | 2011-04-21 | 2 | -17/+26 |
| | |||||
* | Add list-deps command | Dave Smith | 2011-04-21 | 1 | -1/+21 |
| | |||||
* | Add Piotr Usewicz to THANKS file | Tuncer Ayaz | 2011-04-15 | 1 | -0/+1 |
| | |||||
* | Fix formatting (thanks Piotr Usewicz) | Tuncer Ayaz | 2011-04-15 | 3 | -3/+3 |
| | |||||
* | Add file local variables where appropriate | Piotr Usewicz | 2011-04-15 | 4 | -3/+7 |
| | |||||
* | Add Evax Software to THANKS file | Tuncer Ayaz | 2011-04-12 | 1 | -0/+1 |
| | |||||
* | Support settable plt dir for dialyzer | Evax Software | 2011-04-12 | 1 | -11/+26 |
| | | | | | Allow rebar to use dialyzer plt files from an alternate directory through the use of the REBAR_PLT_DIR environment variable. | ||||
* | Remove lfe_opts (suggested by Tim Dysinger) | Tuncer Ayaz | 2011-04-11 | 2 | -7/+2 |
| | |||||
* | Centralize variable resolution; add target_dir variable | Dave Smith | 2011-04-10 | 2 | -43/+42 |
| | |||||
* | Add support for priv/<vcs.vsn> as fallback for version info | Dave Smith | 2011-04-10 | 1 | -2/+26 |
| | |||||
* | Add support for loading template vars from external file | Dave Smith | 2011-04-10 | 1 | -3/+19 |
| | |||||
* | Add support for template_wildcarding; allows files from many directories to ↵ | Dave Smith | 2011-04-10 | 1 | -0/+15 |
| | | | | be templated. | ||||
* | Refactor overlay_vars to enable overrides from command-line | Dave Smith | 2011-04-10 | 1 | -28/+25 |
| | |||||
* | Make sure to pass dir of app when invoking git; enhance shell logging output | Dave Smith | 2011-04-10 | 2 | -4/+5 |
| | |||||
* | Use warnings_as_errors instead of fail_on_warning | Tuncer Ayaz | 2011-04-07 | 1 | -1/+1 |
| | |||||
* | Deprecate fail_on_warning and refactor code | Tuncer Ayaz | 2011-04-07 | 7 | -50/+52 |
| | |||||
* | Add Mickael Remond to THANKS file | Tuncer Ayaz | 2011-04-06 | 1 | -0/+1 |
| | |||||
* | Pass extra params to ct (thanks Mickael Remond) | Tim Watson | 2011-04-06 | 2 | -6/+18 |
| | | | | | This patch adds a `ct_extra_params` option to rebar.config, the value of which is appended to the shell command when executing common test. |