Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-11-03 | Give Mac master builds a nice background .dmg image, too | Thorsten Behrens | |
Added a new DevVersionCopy action to scp2, that fires if PRODUCTNAME equals "LibO-dev" - in that case, we use the DS_Store_Dev one. | |||
2011-11-03 | need to quote command here | Markus Mohrhard | |
2011-11-03 | Check $OS, not the build platform | Tor Lillqvist | |
2011-11-03 | Don't attempt any stripping when cross-compiling | Tor Lillqvist | |
It uses a hardcoded plain "strip" command anyway, which hardly will work for foreign executable file formats. | |||
2011-11-03 | Use DYLD_LIBRARY_PATH when OS_FOR_BUILD == MACOSX | Tor Lillqvist | |
2011-11-02 | pushd is a bashism, use #!/bin/bash in solenv/bin/localize | Rene Engelhard | |
2011-11-02 | Add gbuild support for .components files. | Stephan Bergmann | |
2011-11-02 | Add gbuild support for .jar in .oxt. | Stephan Bergmann | |
2011-11-02 | .DELETE_ON_ERROR is a global flag (that should always be set). | Stephan Bergmann | |
2011-11-01 | Made ooinstall more deterministic, fixed Mac OS X Python module dependencies. | Stephan Bergmann | |
2011-11-01 | wrong lib name for old-style makefile.mks | Caolán McNamara | |
2011-10-27 | Avoid Perl warning: Use of uninitialized value | Tor Lillqvist | |
2011-10-27 | Undo basis/brand split: removed obsoleted BASISROOTNAME. | Stephan Bergmann | |
2011-10-26 | WaE: possible change in behavior, change in UDT return calling convention | Tor Lillqvist | |
Ignore also MSVC warning C4686. From http://msdn.microsoft.com/en-us/library/ae77984s%28v=VS.90%29.aspx it seems that this is just a warning that the compiler behaviour has changed, but that change was already in MSVC 2003. So it should be irrelevant to us. | |||
2011-10-25 | WaE: ignore also MSVC warning C4706: assignment within conditional expression | Tor Lillqvist | |
Sad, but it's too tedious to refactor code like: while( (pLayout = GetLayout(pLayout)) ) { ... } | |||
2011-10-25 | Ignore also MSVC warning C4555, as generated by the <list> header in MSVC2008 | Tor Lillqvist | |
2011-10-24 | Undo basis/brand split: removed RPATH BRAND (same as OOO now). | Stephan Bergmann | |
2011-10-24 | WinResTarget: remove realpath calls | Michael Stahl | |
2011-10-24 | JavaClassSet: fix partial rebuilds | Michael Stahl | |
Partial rebuilds can fail because the reubilt classes may import other classes that are not rebuilt; putting the target directory on the classpath seems to fix it (it would also be possible to use -sourcepath but that seems more complicated). | |||
2011-10-24 | assuming this is a typo | Caolán McNamara | |
2011-10-24 | gbuild: remove remnants of gb_CHECKOBJECTOWNER | Michael Stahl | |
2011-10-24 | Undo basis/brand split: Move SDK and ure-link, remove OOO_BASE_DIR and ↵ | Stephan Bergmann | |
BaseInstallation. | |||
2011-10-24 | create links to gdb autoloaders in the right dir | David Tardon | |
2011-10-24 | make --enable-layout have effect under gbuild | Caolán McNamara | |
2011-10-23 | no need for SRCDIR parameter here | Matúš Kukan | |
2011-10-23 | No need to register repository | Matúš Kukan | |
2011-10-23 | do not use gb_Helper_REPOSITORYNAMES anymore | Matúš Kukan | |
2011-10-22 | another fix for 68dd19a368fb4afbf3eba4cb722f56b87f8ea7c1 on OSX | Bjoern Michaelsen | |
2011-10-21 | restore accidentally removed line | Bjoern Michaelsen | |
2011-10-21 | rename YaccObject to YaccTarget | Bjoern Michaelsen | |
the object is a GenCxxObject just like those from CustomTargets, we only need to get the generation right | |||
2011-10-21 | cleanup YaccObject | Bjoern Michaelsen | |
2011-10-21 | only enable gb_CHECKOBJECTOWNER for explicit check runs | Bjoern Michaelsen | |
2011-10-21 | Fix for YaccObject, also: YaccObject should not generate stuff directly in ↵ | Bjoern Michaelsen | |
toplevel workdir | |||
2011-10-21 | SetupLocal is gone, also fix unbalanced endif | Bjoern Michaelsen | |
2011-10-21 | gbuild should use SRCDIR as per GNU make conventions | Bjoern Michaelsen | |
2011-10-21 | kill multi repo support: BuildDirs and gbuild.mk, GNUmakefile.mk | Bjoern Michaelsen | |
2011-10-21 | kill multi repo support: ExternalLib | Bjoern Michaelsen | |
2011-10-21 | kill multi repo support: WinResTarget | Bjoern Michaelsen | |
2011-10-21 | kill multi repo support: SetupLocal can only work with multiple repo support | Bjoern Michaelsen | |
2011-10-21 | kill multi repo support: LinkTarget | Bjoern Michaelsen | |
2011-10-21 | kill multi repo support: UnoApiTarget | Bjoern Michaelsen | |
2011-10-21 | kill multi repo support: AllLangResTarget | Bjoern Michaelsen | |
2011-10-21 | LinkTarget: remove old object owner implementation | Michael Stahl | |
2011-10-21 | LinkTarget: new check for duplicate objects | Michael Stahl | |
Always enabled, as this runs for me with an overhead in the range of measurement error (in tail_build): current implementation: time make -nsrj8 17.269s 16.470s 17.537s 16.754s 16.595s disabled: time make -nsrj8 gb_CHECKOBJECTOWNER= 13.212s 13.345s 13.470s 13.852s 13.712s new implementation: time make -nsrj8 gb_CHECKOBJECTOWNER= 13.477s 13.911s 13.624s 13.606s 13.535s | |||
2011-10-21 | UnoApiTarget: replace realpath calls | Michael Stahl | |
2011-10-21 | CustomTarget: remove unnecessary dependency | Michael Stahl | |
There already is a dependency from the library to the package, so this dependency should not be necessary. Furthermore, the command is executed spuriously always, because the .done file is always newer than the generated files. | |||
2011-10-21 | Revert "pass -s flag to custom target's make process" | Michael Stahl | |
This reverts commit 6c8a7e0e6ad223051442ef6ce1d1103086c3f4a0. Doing this explicitly is unnecessary because make does it automatically. Also, make will pass --jobserver-fds, which happens to match in findstring as well. | |||
2011-10-21 | Warn if we're missing a RdbTarget from the check_targets | Michael Meeks | |
2011-10-21 | more helpful error messages for debugging when a unit test fails | Michael Meeks | |
2011-10-21 | some more work on the make countoutdated target | Bjoern Michaelsen | |