diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-11-09 23:01:07 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-11-09 23:01:07 +0100 |
commit | 936b3d8bf292f7168d0eca2edbd986d5710b9ee8 (patch) | |
tree | 2b12385bdc8318ecb6a141aaa2fe0af62de10b2e /buildScripts/deps/eclipse-debugging.ant.xml | |
parent | f07948d4959cfdb81bb0c540ebcbe879df0109fb (diff) | |
download | lombok-936b3d8bf292f7168d0eca2edbd986d5710b9ee8.tar.gz lombok-936b3d8bf292f7168d0eca2edbd986d5710b9ee8.tar.bz2 lombok-936b3d8bf292f7168d0eca2edbd986d5710b9ee8.zip |
Added -d32 to the mac version of the eclipse debug target as that tends to be better than not doing that.
Fixes issue #66
Diffstat (limited to 'buildScripts/deps/eclipse-debugging.ant.xml')
-rw-r--r-- | buildScripts/deps/eclipse-debugging.ant.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/buildScripts/deps/eclipse-debugging.ant.xml b/buildScripts/deps/eclipse-debugging.ant.xml index 343a183d..dddd7f6a 100644 --- a/buildScripts/deps/eclipse-debugging.ant.xml +++ b/buildScripts/deps/eclipse-debugging.ant.xml @@ -227,7 +227,10 @@ WARNING: This project is enormous (350MB) and takes like an hour to check out. Y <condition property="startOnFirstThread" value="-XstartOnFirstThread"> <os family="mac" /> </condition> - <condition property="startOnFirstThread" value=""> + <condition property="d32" value="-d32"> + <os family="mac" /> + </condition> + <condition property="d32" value=""> <not><os family="mac" /></not> </condition> </target> @@ -240,6 +243,7 @@ WARNING: This project is enormous (350MB) and takes like an hour to check out. Y overwrite="true"> <filterset> <filter token="START_ON_FIRST_THREAD" value="${startOnFirstThread}" /> + <filter token="D32" value="${d32}" /> </filterset> </copy> </target> |