Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-01-15 | Implement ./otp_build configure --enable-silent-rules | Anthony Ramine | |
With silent rules, the output of make is less verbose and compilation warnings are easier to spot. Silent rules are disabled by default and can be disabled or enabled at will by make V=0 and make V=1. | |||
2012-11-26 | Fix erroneous skipping for jinterface, erl_interface and ic | Raimo Niskanen | |
2012-09-10 | Merge branch 'lukas/jinterface/whitespace_test_fix' into maint | Lukas Larsson | |
* lukas/jinterface/whitespace_test_fix: Do not build jinterface test if there is no jinterface Escape whitespace in path | |||
2012-09-03 | Do not build jinterface test if there is no jinterface | Lukas Larsson | |
2012-09-03 | Prepare releaseOTP_R15B02 | Erlang/OTP | |
2012-08-31 | Update copyright years | Björn-Egil Dahlberg | |
2012-07-11 | ic: add space before '*' in some function prototypes | Hans Bolinder | |
2012-06-08 | Update to work with space in include path | Lukas Larsson | |
OTP-10109 | |||
2012-06-05 | Update to work with whitespace in exec path | Lukas Larsson | |
OTP-10106 OTP-10107 | |||
2012-04-01 | Prepare releaseOTP_R15B01 | Erlang/OTP | |
2012-03-30 | Update copyright years | Björn-Egil Dahlberg | |
2012-03-21 | Align java test Makefile.src with c tests ditto in ic | Patrik Nyblom | |
2012-03-21 | Teach ei testsuites parallel make | Patrik Nyblom | |
2012-03-20 | Bump version from 4.2.29 to 4.2.30 | Gustav Simonsson | |
2012-03-15 | Add generation of Erlang callback functions to avoid compiler warnings | Gustav Simonsson | |
of generated Erlang source code. See seq12023. | |||
2011-12-12 | Prepare release | Erlang/OTP | |
2011-12-09 | Update copyright years | Björn-Egil Dahlberg | |
2011-11-22 | Revert "Update version numbers for pre-release of R15" | Björn-Egil Dahlberg | |
This reverts commit e21ff9b0b69219ab3853be7e80813156113152b7. | |||
2011-11-22 | Update version numbers for pre-release of R15OTP_R15A | Björn Gustavsson | |
2011-10-27 | Remove unused */doc/src/make.dep files | Björn Gustavsson | |
These dependency files was once used when building the documentation, but are no longer needed. | |||
2011-10-27 | doc Makefiles: Eliminate DOCSUPPORT ifdefs | Björn Gustavsson | |
Some applications still have support for an ancient documentation build system. Eliminate the DOCSUPPORT define in otp.mk.in and the not taken arm of the ifdefs in the Makefiles. | |||
2011-10-20 | Merge branch 'bjorn/parallel-make/OTP-9451' | Björn Gustavsson | |
* bjorn/parallel-make/OTP-9451: corba applications: Fix broken 'make clean' ic documentation: Support parallel make Revert "ic documentation: Support parallel make" | |||
2011-10-19 | Merge branch 'maint-r14' | Lars Thorsen | |
* maint-r14: Fix match bug | |||
2011-10-12 | Fix match bug | Lars Thorsen | |
Incorrect use of ets:match changed to ets:match_object. | |||
2011-10-12 | corba applications: Fix broken 'make clean' | Lars Thorsen | |
The IDL-GENERATED files must be removed too; otherwise the target files will not be made the next time 'make' is invoked. | |||
2011-10-06 | ic documentation: Support parallel make | Björn Gustavsson | |
Multiple instances of javadoc would be started at once, which is unnecessary work and could cause one or more instances to fail while creating directories. Use a stand-in file (JAVADOC-GENERATED) to ensure that only one instance of javadoc is started. Since javadoc creates directories itself, there is no need to explicitly create the $(JAVA_OUT_DIR) directory. | |||
2011-10-06 | Revert "ic documentation: Support parallel make" | Björn Gustavsson | |
This reverts commit d9ec7c91ca6ae019ad80b03fb184924bad8d6bc8. The commit did not fix the real problem. | |||
2011-09-29 | Merge branch 'dev' into major | Björn-Egil Dahlberg | |
* dev: Update copyright years | |||
2011-09-29 | Update copyright years | Björn-Egil Dahlberg | |
2011-09-26 | ic documentation: Support parallel make | Björn Gustavsson | |
2011-09-20 | Merge branch 'dev' into major | Henrik Nord | |
Conflicts: erts/aclocal.m4 erts/include/internal/ethread_header_config.h.in | |||
2011-09-15 | Fix misspelling of successful | Tuncer Ayaz | |
2011-08-25 | Merge branch 'dev' into major | Henrik Nord | |
2011-08-18 | [IC] Changed version, added release note and updated license headers. | Niclas Eklund | |
2011-08-17 | ic: Fix typo, #ifudef -> #ifndef | Haitao Li | |
2011-08-15 | Merge branch 'dev' into major | Niclas Eklund | |
2011-08-11 | Changed version, added release note and updated license headers. | Niclas Eklund | |
2011-08-08 | ic: Support parallel make | Björn Gustavsson | |
2011-08-08 | */c_src/Makefile*: Support parallel make | Björn Gustavsson | |
Create directories first, not within implicit rules. If two 'install' instances runs at the same time attempting to create a directory, one of them may fail with an "File exists" error. I tried to use order-only prerequisites to create the directories, but run into two problems: First, order-only prerequisites are only implemented in Make 3.80 and later. Second, on a computer running Solaris/Intel 2.8 (with Make 3.80), order-only prerequisites seemed to work like ordinary prerequisites, causing targets to be re-built if the timestamp for the directory changed. Therefore, using a shell command to run mkdir seems to be the more portable solution. | |||
2011-08-08 | otp_subdir.mk: Remove support for clearmake | Björn Gustavsson | |
2011-07-31 | ic: Implement multiple include optimization | Haitao Li | |
Like C header files, IDL files are often macro guarded to avoid opening and processing the same file repeatedly. This patch implements the algorithm used by GNU cpp as described at: http://gcc.gnu.org/onlinedocs/cppinternals/Guard-Macros.html | |||
2011-07-27 | ic: Fix preprocessor double expanded included files | Haitao Li | |
New lines are pushed to output inconsistently with "\n" or $\n. This confuses only_nls/1, which tests if the file just expanded are all skipped. This patch consistently pushes character $\n to output, instead of string "\n" to further improve efficiency. | |||
2011-07-27 | ic: Improve ic_pragma performance by using ets:match | Haitao Li | |
`ets:tab2list/1` followed by list comprehension is used in a few places in module ic_pragma. This introduces significant performance impact on large lists. | |||
2011-03-11 | Update copyright years | Björn-Egil Dahlberg | |
2011-02-17 | Rename Suite Callback to Common Test Hook | Lukas Larsson | |
2011-02-17 | Update and add cover spec files to work with common_test | Lukas Larsson | |
2011-02-17 | Update all test specs | Lukas Larsson | |
2011-02-17 | Fix formatting for ic | Lukas Larsson | |
2011-02-17 | Add init_per_suite and end_per_suite | Lukas Larsson | |
2011-02-17 | Add ts_install_scb to suite/0 | Lukas Larsson | |