Linked by Jussi Pakkanen on Tue 17th Apr 2007 18:20 UTC
Thread beginning with comment 231688
To view parent comment, click here.
To read all comments associated with this story, please click here.
To view parent comment, click here.
To read all comments associated with this story, please click here.
RE[2]: Needlessly complex: C/C++ compilation
by sanctus on Wed 18th Apr 2007 17:26
in reply to "RE: Needlessly complex: C/C++ compilation"
yeah python, (same thing goes for ruby) to make your script work you have to write at the beginning : #!/usr/bin/python
but wait, what if python is not located there.
solution : #!/usr/bin/env python
but wait, what if env is not there either !!
what a hack
so just remove that line and type python before the script
RE[2]: Needlessly complex: C/C++ compilation
by MORB on Wed 18th Apr 2007 21:51
in reply to "RE: Needlessly complex: C/C++ compilation"





Member since:
2005-07-06
So, instead of writing a makefile ("config file for make"), we now write a config file for the makefile generator generator. Nice improvement.
This is not limited to C/C++:
http://discuss.joelonsoftware.com/default.asp?joel.3.219431.12
This is part of the reason why people are migrating en mass to languages like Ruby and Python.