Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^2: Java Auto-Compile

by JediMasterT (Sexton)
on Nov 30, 2011 at 02:59 UTC ( [id://940757]=note: print w/replies, xml ) Need Help??


in reply to Re: Java Auto-Compile
in thread Java Auto-Compile

  • I forgot that was there. It was part an earlier version
  • The way that java works, if you change one thing, you have to recompile it all
  • that's what I asked

Replies are listed 'Best First'.
Re^3: Java Auto-Compile
by ikegami (Patriarch) on Dec 01, 2011 at 02:24 UTC

    The way that java works, if you change one thing, you have to recompile it all

    That's not true. Like other languages, you just have to recompile what depends on the class you changed.

    That said, that requires a list of dependencies, and finding that list is beyond what this tool should do.

    that's what I asked

    I didn't notice there was a question, since I didn't look for one, since this isn't SoPW.

    javac surely returns a non-zero exit code on error, and zero on success.

      If I change something in the hierarchy, the everything lower changes.
      Also I tried running javac in `` quotes, but it never returns anything.

        If I change something in the hierarchy, the everything lower changes.

        Yes, like I said, you don't need to recompile everything. Only the stuff higher in the dependency hierarchy needs to be recompiled. You don't have to compile the stuff deeper in the dependency hierarchy.

        Also I tried running javac in `` quotes, but it never returns anything.

        That captures what javac prints to STDOUT. I suggested you check its exit code. See the return value of system.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://940757]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (5)
As of 2024-04-24 11:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found