aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-16 15:41:13 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-16 16:04:42 +0200
commit235df32bffcfbc58f83f113bec81072f8de50ee9 (patch)
treeef9acc27dc0398ac46b2ef7923126b06aa4c4b82 /bin
parent58a6c76019bde728dcfe43bd6a7c682cc33d71ee (diff)
downloaddotty-235df32bffcfbc58f83f113bec81072f8de50ee9.tar.gz
dotty-235df32bffcfbc58f83f113bec81072f8de50ee9.tar.bz2
dotty-235df32bffcfbc58f83f113bec81072f8de50ee9.zip
Update version of scalac-compiler fork.
This update allows to have non-static lambdas. It doesn't mean that we should emit such, as they are potential memory leak. See #480 Fixes #470
Diffstat (limited to 'bin')
-rwxr-xr-xbin/dotc10
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/dotc b/bin/dotc
index 3d6e15a54..2ffe20f07 100755
--- a/bin/dotc
+++ b/bin/dotc
@@ -6,7 +6,7 @@
# Configuration
SCALA_VERSION=2.11.5
SCALA_BINARY_VERSION=2.11
-SCALA_COMPILER_VERSION=2.11.5-20150402-193021-0c75410da3
+SCALA_COMPILER_VERSION=2.11.5-20150416-144435-09c4a520e1
DOTTY_VERSION=0.1
JLINE_VERSION=2.12
bootcp=true
@@ -57,13 +57,13 @@ checkjar $TEST_JAR test:package
# Autodetecting the scala-library location, in case it wasn't provided by an environment variable
if [ "$SCALA_LIBRARY_JAR" == "" ]
-then
+then
SCALA_LIBRARY_JAR=$HOME/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-$SCALA_VERSION.jar
# this is location where sbt stores it in ivy cache
fi
# save as for scala-library now for scala-reflect
if [ "$SCALA_REFLECT_JAR" == "" ]
-then
+then
SCALA_REFLECT_JAR=$HOME/.ivy2/cache/org.scala-lang/scala-reflect/jars/scala-reflect-$SCALA_VERSION.jar
fi
if [ "$SCALA_COMPILER_JAR" == "" ]
@@ -72,13 +72,13 @@ then
fi
if [ "$JLINE_JAR" == "" ]
-then
+then
JLINE_JAR=$HOME/.ivy2//cache/jline/jline/jars/jline-$JLINE_VERSION.jar
fi
if [ ! -f "$SCALA_LIBRARY_JAR" -o ! -f "$SCALA_REFLECT_JAR" -o ! -f "$SCALA_COMPILER_JAR" -o ! -f "$JLINE_JAR" ]
then
- echo To use this script please set
+ echo To use this script please set
echo SCALA_LIBRARY_JAR to point to scala-library-$SCALA_VERSION.jar "(currently $SCALA_LIBRARY_JAR)"
echo SCALA_REFLECT_JAR to point to scala-reflect-$SCALA_VERSION.jar "(currently $SCALA_REFLECT_JAR)"
echo SCALA_COMPILER_JAR to point to scala-compiler-$SCALA_VERSION.jar with bcode patches "(currently $SCALA_COMPILER_JAR)"