I am new to Linux, and C++. Usually when I used Java, I could just use javac Something.java and run it using java Something. How do I compile my own c++ code without the help of an IDE? Also I am using Linux Ubuntu 12.04

Recommended Answers

All 5 Replies

The shell command you are looking for is g++ filename -o executablename, or at least that will get you started (the '-o' stands for 'output', and let's you choose the name of the final executable). Look up the documentation on GCC and make for more involved compilation.

Install the build-essential package using sudo apt-get install build-essential then use g++ filename -o outputname as mentioned by Schol-R-LEA.

This will produce the executable, you can then run it by typing ./outputname.

Enjoy coding in C++ on Linux!

Simple (copy&paste entire parts into root and user shell terminal prompts and hit enter, respectively):

1.
(at # root shell prompt)
apt-get install build-essential cmake

2.
(at $ user shell prompt)
export SOURCEDIR=~/projects/cmake_hello_world && mkdir -p $SOURCEDIR && cd $SOURCEDIR &&
(cat <<'EOF'
cmake_minimum_required(VERSION 2.6)
project(cmake_hello_world)
file(WRITE main.cpp "#include <stdio.h>\n int main() { printf(\"Hello World!\\n\"); return 1; }")
add_executable(cmake_hello_world main.cpp)
EOF
) > CMakeLists.txt &&
export BUILDDIR=build.make && mkdir $BUILDDIR && cd $BUILDDIR &&
cmake .. && make && ls -lR .. &&
./cmake_hello_world

So much for an 11-liner shell script snippet to create a fully flexible Makefile-based build environment ;)

See also
$ cmake --help
$ cmake --help-command file

Next, maybe install eclipse / kdevelop / codeblocks / anjuta and generate projects for them (-G'KDevelop3').

Have fun!

[let's hope all shell parts came across properly escaped in the posting]

For simple C++ executables, you can just use the make command directly. So, if you want to build a simple C++ source file named my_application.cpp, you can just execute the command: make my_application
That will compile and link the executable for you quite nicely. A Makefile is unnecessary unless you have more than one source file to link.

Thanks for the help guys.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.