aboutsummaryrefslogtreecommitdiff
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
...
* Update version of scalac fork.Dmitry Petrashko2015-03-111-1/+1
| | | | | Includes fixed for emitting string concatenation if string originates from an array. Eg `"hello " + Array("world")(0)`
* Add dotty repl & type stealerDmitry Petrashko2015-02-171-9/+16
| | | | | | | | | | Dotty requires a mangled bootclasspath to start. It means that `console` mode of sbt doesn't work for us. At least I wasn't able to make sbt fork in console, so instead I've added a Scala-repl into dotty itself :-) It would be good to make it use dotty one day when we have a backend :-)
* unset CDPATH in bin/dotc to make ( cd && pwd ) work correctlyOndrej Lhotak2015-01-081-1/+1
| | | | | | | | When CDPATH is set, cd echoes the directory that it is switching to. The ( cd && pwd ) pattern then prints the directory twice, causing a mangled path. See https://bosker.wordpress.com/2012/02/12/bash-scripters-beware-of-the-cdpath/
* Update version of scalac forkDmitry Petrashko2014-12-161-1/+1
|
* Modify runner script to include modified scalac on class path.Dmitry Petrashko2014-12-161-3/+10
|
* Add option to optimize the JVM for short-runnning applicationsGuillaume Martres2014-11-171-0/+3
| | | | | | | | | | Ideally, dotc should reuse a resident compiler and we should not fork sbt for every task. Until this happens, this option is useful for development. Fixes #222. Usage: $ sbt -DOshort="" $ ./bin/dotc -Oshort foo.scala
* Use the final scala 2.11.George Leontiev2014-06-231-2/+3
|
* Bringing back dotc script that was accidentely deleted.Dmitry Petrashko2014-03-071-0/+232
|
* Performance improvement: Avoid unncecessary allocations of ListBufferMartin Odersky2014-02-261-232/+0
| | | | There were a lot in StoreReporter, as we are creating about 0.5M new ones per self-compile.
* Script for running compiler outside sbtDmitry Petrashko2014-02-201-0/+232