Jump to content

What is the build sysetm?

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
5 replies to this topic

#1
soso

soso

    Newbie

  • Members
  • Pip
  • 8 posts
Hello all,

I'm working on a C++ project and I'm using the g++ compiler

I should submit the source code and the build system for the project ..but I don't know what is exactly the build system?

could any one help me on how to do it :confused:

any help is really appreciated

Wishing everyone a happy and successful year.

regards

#2
dargueta

dargueta

    Writes binary right handed and hex left handed

  • Moderators
  • 4,717 posts
Probably meant either the binary executable or an object library of everything. I'm assuming you know how to use g++ to compile to an executable binary; to compile to just an object file, use the -c option.
sudo rm -rf /

#3
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
If it's a multi-file project, you may want to include a make file, or at least the compiler commands to compile it.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#4
dargueta

dargueta

    Writes binary right handed and hex left handed

  • Moderators
  • 4,717 posts
Makefile tutorial
sudo rm -rf /

#5
soso

soso

    Newbie

  • Members
  • Pip
  • 8 posts
Thank you all for your help

I submitted the project with the make file .... I wrote my first makefile ^^

Best wishes

#6
dargueta

dargueta

    Writes binary right handed and hex left handed

  • Moderators
  • 4,717 posts
That's good! Knowing how to write makefiles is a good skill to have. (I, on the other hand, write bash scripts to compile my projects... :D )
sudo rm -rf /