Re: Learning C++
On Jan 7, 2:15 am, "Balog Pal" <p...@lib.hu> wrote:
"James Kanze" <james.ka...@gmail.com>
Makefiles are certainly something additional that you have to
learn. And they shouldn't be necessary for a beginner. I used
to believe that IDE's were a good thing for beginners, because
they allowed deferring the learning of makefiles and such---one
thing at a time. For the last couple of months, however, I've
had to work under an IDE, and I now realize that they represent
even more complexity than make.
Please write an example.
Well, in my old home environment, a makefile was basically:
# Copywrite text...
buildRoot = whereever
sources = toto.cc titi.cc tata.cc
testSources = test1.cc test2.cc test3.cc
binary = prog
#include $(buildRoot)/Makefiles/component.mk
If there were addtional steps, of course, it would be more
complicated, but even in cases where I had to first build a
local binary to build one of the sources, 10 or 15 lines would
suffice. And most of the above would be inserted automatically
when I opened a new file named GNUmakefile.
Of course, $(buildRoot)/Makefile/component.mk is pretty
complicated, but a beginner, working in my environment, doesn't
have to deal with it.
And do you mean that the excess complexity you are discovering
is something that is genuinely present in beginner's projects,
or it is tied to the project you (as a seasoned expert) were
summoned?
To be honest, it's hard to say. I'll admit some frustration,
because I am dealing with a fairly complex environment, in which
many of the sources are either built automatically or are
modified by other programs, with several DLL's, etc. But I was
somewhat surprized at how awkward the GUI interface was, even
for simple things that might actually be part of a beginner's
project.
So until someone comes out with something better, we're
stuck with make as the simplest solution: the easiest to
learn and use.
This sounds like your bunch of make experts could manage the
build of a project that was not fit an IDE's idea. And found
it easier too -- that is hardly surprising.
But I don't see how actual easyness follow.
IMO if you come to production, and any non-trivial project,
managing the build is an expert area in its own right.
I'd certainly agree with you there. Where I was before, we
managed for three different platforms, using the same codebase
(and the same makefile for each component), but it did take some
expert knowledge to create the build system.
Then going back to subject -- production and learnnig do not
mix so well.
Yes. And until actually using them, I always thought that IDE's
had their place in learning process. Maybe it's just my recent
frustrations, but now I'm not so sure.
--
James Kanze