answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What command would you use to compile the source code?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you compile source code from the command prompt in java?

compile:javac filename.javarun:java filename


What does a compiler do when you compile your program?

Coverts source code into object code


How do you compile Ubuntu?

Ubuntu comes precompiled. Although you could compile it from source, that would take days, and would be pretty silly. To compile programs on Ubuntu, first "sudo apt-get install build-essential", then run "./configure" and "make" in the directory where you have the source code.


How do you compile php code?

If you are looking to create an executable (.exe) file on windows then I highly recommend this program to compile your php source code to an exe file.


What does the Java compiler translate Java source code to?

The Java compiler translates Java source code to Java byte code.


What is compile time and run time?

Compile time is when the compiler translates your source code into computer language. Run time is when the actual program runs.


Are there instances where source code packages are better for your computer?

Yes if there is no executable package available for your platform and you have the means to adapt and compile the source code so that it can be used on your platform.


When you compile source code the resulting collection of instructions is called code which is placed in a new file?

Is called machine code


What is compile time?

Compile Time: In longer form, you might say, "at the time of compiling", or, "when the program is compiled". When you compile a program, the compiler applies various processes to your source code in order to generate the executable files. These are actions that happen "at compile time". Other actions happen when you actually run the finished program. These actions are said to occur, at, or in, "run time".


Is Ruby an interpreted language or a compiled language?

It is an interpreted language, however there are some versions that compile the source code to byte code which can then be interpreted with much greater efficiency than the original source code.


How do you convert vb6 to dmg?

A .vb6 file is visual basic 6 source code, sometimes with it are .frm files that you would need. A .dmg is a Macintosh binary. you would have to find a program to compile the vb6 code to a Macintosh binary.


How do you compiling a source code in java?

The javac command is used to invoke Java's compiler and compile a Java source file. A typical invocation of the javac command would look like below: javac [options] [source files] Both the [options] and the [source files] are optional parts of the command, and both allow multiple entries. The following are both legal javac commands: javac -help javac ClassName.java OneMoreClassName.java The first invocation doesn't compile any files, but prints a summary of valid options. The second invocation passes the compiler two .java files to compile (ClassName.java and OneMoreClassName.java). Whenever you specify multiple options and/or files they should be separated by spaces. This command would create the .class files that would be require to run the java progam.