Skip to content
Snippets Groups Projects
Commit 3f283278 authored by Reynold Xin's avatar Reynold Xin
Browse files

Removed scala -optimize flag.

parent c514cd15
No related branches found
No related tags found
No related merge requests found
...@@ -557,7 +557,6 @@ ...@@ -557,7 +557,6 @@
<useZincServer>true</useZincServer> <useZincServer>true</useZincServer>
<args> <args>
<arg>-unchecked</arg> <arg>-unchecked</arg>
<arg>-optimise</arg>
<arg>-deprecation</arg> <arg>-deprecation</arg>
</args> </args>
<jvmArgs> <jvmArgs>
......
...@@ -81,7 +81,7 @@ object SparkBuild extends Build { ...@@ -81,7 +81,7 @@ object SparkBuild extends Build {
organization := "org.apache.spark", organization := "org.apache.spark",
version := "0.9.0-incubating-SNAPSHOT", version := "0.9.0-incubating-SNAPSHOT",
scalaVersion := "2.9.3", scalaVersion := "2.9.3",
scalacOptions := Seq("-Xmax-classfile-name", "120", "-unchecked", "-optimize", "-deprecation", scalacOptions := Seq("-Xmax-classfile-name", "120", "-unchecked", "-deprecation",
"-target:" + SCALAC_JVM_VERSION), "-target:" + SCALAC_JVM_VERSION),
javacOptions := Seq("-target", JAVAC_JVM_VERSION, "-source", JAVAC_JVM_VERSION), javacOptions := Seq("-target", JAVAC_JVM_VERSION, "-source", JAVAC_JVM_VERSION),
unmanagedJars in Compile <<= baseDirectory map { base => (base / "lib" ** "*.jar").classpath }, unmanagedJars in Compile <<= baseDirectory map { base => (base / "lib" ** "*.jar").classpath },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment