Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you are building you zero-footprint for the first time you will need a C/C++ compiler avaiable on the initial system.  For the most part, most Unix/Linux distributions will come packaged with the gcc compiler.  

Section
bordertrue
Column
width100px

Unix/Solaris

Check if gcc compiler is installed:

Code Block
languagebash
themeDJango
$ which gcc

# which is dependent on environment variables being set correctly.  
# Alternatively check the /usr/bin and /usr/sfw/bin paths.

If no compiler found, install it:

Code Block
languagebash
themeDJango
$ pkg install gcc-3  # or whatever version you need
Column
width100px

Linux

Chech if gcc compilete is installed:

Code Block
languagebash
themeDJango
$ which gcc

If no compiler found, install it:

Code Block
languagebash
themeDJango
# Debian/Ubuntu
$ sudo apt-get install build-essential

# RHEL/CentOS/Fedora
$ sudo yum group install "Development Tools" 

...