summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorAntonio Cunei <antonio.cunei@epfl.ch>2009-12-17 11:42:29 +0000
committerAntonio Cunei <antonio.cunei@epfl.ch>2009-12-17 11:42:29 +0000
commit15523efdef8eadbdd8d79358ff002ed3958ec41b (patch)
treed37334bd213e291a2a8191aa3acf477fb532ed0f /build.xml
parent32b6bb14ea0a6044f07ce1799649c6950d13d2fa (diff)
downloadscala-15523efdef8eadbdd8d79358ff002ed3958ec41b.tar.gz
scala-15523efdef8eadbdd8d79358ff002ed3958ec41b.tar.bz2
scala-15523efdef8eadbdd8d79358ff002ed3958ec41b.zip
Merged revisions 20172-20173,20175,20178 via sv...
Merged revisions 20172-20173,20175,20178 via svnmerge from https://lampsvn.epfl.ch/svn-repos/scala/scala/trunk ........ r20172 | extempore | 2009-12-16 18:37:27 +0100 (Wed, 16 Dec 2009) | 1 line Catch expanded names before they are visible in completion. no review. ........ r20173 | extempore | 2009-12-16 20:25:26 +0100 (Wed, 16 Dec 2009) | 2 lines REPL completion now understands type aliases defined in package objects. For instance try scala.List.<tab>. review by community. ........ r20175 | odersky | 2009-12-17 12:03:57 +0100 (Thu, 17 Dec 2009) | 1 line hardening the compiler to avoid exceptions I observed when used under Eclipse. ........ r20178 | cunei | 2009-12-17 12:16:58 +0100 (Thu, 17 Dec 2009) | 3 lines Adding target distpack-opt. Review by rytz. ........
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index fc315ee63f..32acdbfac8 100644
--- a/build.xml
+++ b/build.xml
@@ -1541,9 +1541,15 @@ FORWARDED TARGETS FOR PACKAGING
<target name="distpack" depends="dist.done">
<ant antfile="${src.dir}/build/pack.xml" target="pack-all.done" inheritall="yes" inheritrefs="yes"/>
</target>
+
+ <target name="distpack-opt"
+ description="Builds an optimised distribution.">
+ <antcall target="distpack">
+ <param name="scalac.args.optimise" value="-optimise"/>
+ </antcall>
+ </target>
<!-- Used by the scala-installer script -->
- <target name="alldistpack" depends="distpack"/>
<target name="allallclean" depends="all.clean"/>
<!-- ===========================================================================