- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
-savecompiled ?
Tue, 2010-09-28, 03:47
Am I doing something wrong here? Shouldn't I expect to see a MyScript.class in the same directory as MyScript.scala? Is it being saved to some other directory?
[m410@m410 temp]% vi MyScript.scala
[m410@m410 temp]% scala-2.8 -savecompiled
Welcome to Scala version 2.8.0.final (Java HotSpot(TM) 64-Bit Server VM, Java 1.6.0_20).
Type in expressions to have them evaluated.
Type :help for more information.
scala> :load MyScript.scala
Loading MyScript.scala...
defined class MyScript
scala> MyScript("hello")
res0: MyScript = MyScript(hello)
scala> :q
[m410@m410 temp]% ls -lh
total 40
-rw-r--r-- 1 m410 staff 32B Sep 27 22:39 MyScript.scala
drwxr-xr-x 3 m410 staff 102B Sep 27 22:38 out
drwxr-xr-x 5 m410 staff 170B Sep 27 15:42 ...
out is empty as well and I tried loading the script with '-i MyScript.scala' with the same none result.
thx
Mike
Tue, 2010-09-28, 04:27
#2
Re: -savecompiled ?
Nope, nothing there, but thanks for the suggestion. Any other ideas?
Mike
On Sep 27, 2010, at 10:50 PM, Daniel Sobral wrote:
Mike
On Sep 27, 2010, at 10:50 PM, Daniel Sobral wrote:
I think it saves to the TMP, TMPDIR or equivalent, by default.
On Mon, Sep 27, 2010 at 23:47, Michael Fortin <mikee@m410.us> wrote:
Am I doing something wrong here? Shouldn't I expect to see a MyScript.class in the same directory as MyScript.scala? Is it being saved to some other directory?
[m410@m410 temp]% vi MyScript.scala
[m410@m410 temp]% scala-2.8 -savecompiled
Welcome to Scala version 2.8.0.final (Java HotSpot(TM) 64-Bit Server VM, Java 1.6.0_20).
Type in expressions to have them evaluated.
Type :help for more information.
scala> :load MyScript.scala
Loading MyScript.scala...
defined class MyScript
scala> MyScript("hello")
res0: MyScript = MyScript(hello)
scala> :q
[m410@m410 temp]% ls -lh
total 40
-rw-r--r-- 1 m410 staff 32B Sep 27 22:39 MyScript.scala
drwxr-xr-x 3 m410 staff 102B Sep 27 22:38 out
drwxr-xr-x 5 m410 staff 170B Sep 27 15:42 ...
out is empty as well and I tried loading the script with '-i MyScript.scala' with the same none result.
thx
Mike
--
Daniel C. Sobral
I travel to the future all the time.
Tue, 2010-09-28, 04:47
#3
Re: -savecompiled ?
On Mon, Sep 27, 2010 at 11:24:21PM -0400, Michael Fortin wrote:
> Nope, nothing there, but thanks for the suggestion. Any other ideas?
I imagine it's dutifully saving the script into the repl backing store,
which is to say, RAM. Either that or ignoring you.
-savecompiled wasn't written to be used with the repl. It was written
to be used with scripts.
% cat > hi.scala
println("hi")
% scala28 -savecompiled hi.scala
hi
% ls -l hi*
-rw-r--r-- 1 paulp wheel 14 Sep 27 20:40 hi.scala
-rw-r--r-- 1 paulp wheel 1580 Sep 27 20:41 hi.scala.jar
% jar tf hi.scala.jar
Main$$anon$1.class
Main$.class
Main.class
On Mon, Sep 27, 2010 at 23:47, Michael Fortin <mikee@m410.us> wrote:
--
Daniel C. Sobral
I travel to the future all the time.