You are not logged in.
Sometimes it's errors, but usually it looks like gibberish, except for the beginning (when it's configure and check) and the end when it's make install. The make part of the building seems to be the CFLAGS printed over and over again. My question is, it goes so fast, what's the point of it?
Personally, I'd rather be back in Hobbiton.
Offline
When you do run into an error, it stops and you can then track down the cause.
You get used to the text going by and understand it eventually. All I see now is blonde, brunette, redhead....
Offline
It doesn't mean anything in particular, make just prints the commands used to build the software. cmake on the other hand provides more compact output, only printing what it's doing (compiling/linking) and the filename(s).
Offline
You get used to the text going by and understand it eventually. All I see now is blonde, brunette, redhead....
I know kung-fu...
Offline
Stop trying to hit me and hit me!
Offline
You're going to have to make a choice... to file a bug-report, OR, NOT to file a bug-report.
The question is... Is there a difference?
Allan-Volunteer on the (topic being discussed) mailn lists. You never get the people who matters attention on the forums.
jasonwryan-Installing Arch is a measure of your literacy. Maintaining Arch is a measure of your diligence. Contributing to Arch is a measure of your competence.
Griemak-Bleeding edge, not bleeding flat. Edge denotes falls will occur from time to time. Bring your own parachute.
Offline
You're going to have to make a choice... to file a bug-report, OR, NOT to file a bug-report.
The question is... Is there a difference?
You're going to have to figure out... is there a difference, or isn't there a difference?
The question is... are the differences different?
Offline
You're going to have to make a choice... to file a bug-report, OR, NOT to file a bug-report.
The question is... Is there a difference?
There's a certain level of satisfaction that can only be obtained by filing a mission critical bug report and having it ignored by developers. For instance, when I told the Enlightenment developers that their file manager was arbitrarily deleting files... Ahhhh, that felt good.
Offline
My question is, it goes so fast, what's the point of it?
It makes nerds feel cool. It's all we have.
Offline
When I was installing Gentoo, I actually managed to use make's output to diagnose an odd problem -- xsltproc, I think, was doing something odd, and I managed to narrow it down to that program by watching the output closely.
It's more useful when you have a build that fails and you can pipe the output to a file for later analysis. Not to mention it reassures you that your terminal is doing something and hasn't just locked up on you.
Offline
To answer the OP's question i think for the most part the output you see is the gcc/g++ commands being used by make. As you may or may not know make is kinda like a script that compiles and links the files, it runs the commands that is set in the makefile, and displayes the commands that is being run at the time. So you may see that a lot of the new commands (or what wouold to most non nerds look like gibberish) have "gcc" or "g++" as the first word and then a whole lot of other junk, which is just options passed to the compiler or linker. And the reason you keep seeing the cflags is cuz it keeps having to pass it to the compiler as options every time it compiles something new, most large programs require a couple of different gcc or g++ commands to get done fully. SO like, compile this file, compile that file, and now link the result together into executable. thats 3 invocations and each one needs to be sent the CFLAGS as options.
Also: allan, i couldn't stop laughing when i read your post lol.
Last edited by Tjh_ (2009-12-03 15:02:04)
Offline