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

Merge pull request #17 from rxin/optimize

Remove -optimize flag
parents 13eced72 3f283278
No related branches found
No related tags found
No related merge requests found
......@@ -557,7 +557,6 @@
<useZincServer>true</useZincServer>
<args>
<arg>-unchecked</arg>
<arg>-optimise</arg>
<arg>-deprecation</arg>
</args>
<jvmArgs>
......
......@@ -81,7 +81,7 @@ object SparkBuild extends Build {
organization := "org.apache.spark",
version := "0.9.0-incubating-SNAPSHOT",
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),
javacOptions := Seq("-target", JAVAC_JVM_VERSION, "-source", JAVAC_JVM_VERSION),
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