Thread: -.- Compiler Help -.-

Results 1 to 5 of 5
  1. #1 -.- Compiler Help -.- 
    Registered Member
    Join Date
    Dec 2011
    Age
    29
    Posts
    214
    Thanks given
    1
    Thanks received
    7
    Rep Power
    13
    I cannot for the life of me figure out what is wrong with this client compiler.
    It works perfectly for me, but I am trying it for a friend, and it will NOT work on his computer..


    Code:
    @ECHO off
    TITLE Compiler
    "C:\Program Files (x86)\Java\jdk1.6.0_30\bin\javac" -d ./class/ ./*java
    ECHO Compiled succesfully!
    ECHO Press any key to exit...
    PAUSE >nul
    EXIT
    There is the compiler.. When we run it on his computer, we get an error:



    Any ideas?
    I have tried alternative compilers, but they just give us other random errors.
    Reply With Quote  
     

  2. #2  
    GANGNAM STYLE!

    Ohad's Avatar
    Join Date
    Aug 2011
    Posts
    3,179
    Thanks given
    152
    Thanks received
    352
    Rep Power
    1671
    is that you jdk version?
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Dec 2011
    Posts
    9
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    @ECHO off
    TITLE Compiler
    "C:\Program Files (x86)\Java\jdk1.6.0_30\bin\javac.exe" -d ./class/ ./*java
    ECHO Compiled succesfully!
    ECHO Press any key to exit...
    PAUSE >nul
    EXIT
    Reply With Quote  
     

  4. #4  
    Registered Member
    Smokey's Avatar
    Join Date
    Apr 2011
    Posts
    287
    Thanks given
    124
    Thanks received
    73
    Rep Power
    351
    Code:
    @echo off 
    "C:\Program Files (x86)\Java\jdk1.6.0_30\bin\javac.exe" -d ./class/ *.java 
    pause
    I hope this is a joke, you were missing a period in ./*.java, but you don't need the ./ because you're not going into any other directories.
    Spoiler for signature:

    He is richest who is content with the least, for contentment is the wealth of nature. - Socrates
    Attached image
    Reply With Quote  
     

  5. #5  
    Registered Member
    Join Date
    Dec 2011
    Age
    29
    Posts
    214
    Thanks given
    1
    Thanks received
    7
    Rep Power
    13
    Smokey', when I use yours, this is what comes up.

    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Compiler help
    By Banter in forum Help
    Replies: 2
    Last Post: 07-24-2011, 09:34 PM
  2. Compiler.bat to compiler.sh
    By romario279 in forum Help
    Replies: 3
    Last Post: 07-13-2011, 02:48 AM
  3. Dementhium Compiler (Full Compiler)
    By Affliction in forum Snippets
    Replies: 10
    Last Post: 05-16-2011, 05:29 AM
  4. [Compiler] My Very Simple Compiler :)
    By xx Promises xx in forum Snippets
    Replies: 6
    Last Post: 01-20-2010, 10:42 AM
  5. Help with compiler please!
    By Adam™ in forum Help
    Replies: 9
    Last Post: 03-30-2009, 04:31 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •