13
0

Make DEBUG=1 default and make ardour.sh, ardev and ardbg dump cores by default

git-svn-id: svn://localhost/ardour2/trunk@1843 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Sampo Savolainen 2007-05-14 20:42:46 +00:00
parent 6cf8026ac3
commit 64b3e3be80
3 changed files with 5 additions and 1 deletions

View File

@ -29,7 +29,7 @@ opts.AddOptions(
('ARCH', 'Set architecture-specific compilation flags by hand (all flags as 1 argument)',''),
BoolOption('AUDIOUNITS', 'Compile with Apple\'s AudioUnit library. (experimental)', 0),
BoolOption('COREAUDIO', 'Compile with Apple\'s CoreAudio library', 0),
BoolOption('DEBUG', 'Set to build with debugging information and no optimizations', 0),
BoolOption('DEBUG', 'Set to build with debugging information and no optimizations', 1),
PathOption('DESTDIR', 'Set the intermediate install "prefix"', '/'),
EnumOption('DIST_TARGET', 'Build target for cross compiling packagers', 'auto', allowed_values=('auto', 'i386', 'i686', 'x86_64', 'powerpc', 'tiger', 'panther', 'none' ), ignorecase=2),
BoolOption('DMALLOC', 'Compile and link using the dmalloc library', 0),

View File

@ -14,3 +14,5 @@ export DYLD_LIBRARY_PATH=$LD_LIBRARY_PATH
export GTK_PATH=$PWD/libs/clearlooks:~/.ardour2
EXECUTABLE=gtk2_ardour/ardour-%VERSION%
ulimit -c unlimited

View File

@ -13,6 +13,8 @@ if [ "$MLOCK_LIMIT" != "unlimited" ]; then
fi
ulimit -c unlimited
exec %INSTALL_PREFIX%/%LIBDIR%/ardour2/ardour-%VERSION% $*