I've been using the UVa Online Judge to solve some programming challenges, and, when submitting my solutions, I'm told the judge will compile my code using the following parameters to GCC/G++ that I don't know: -lm -lcrypt -pipe -DONLINE_JUDGE.
What do they do? Thank you very much in advance!
lmparameter is a different kind frompipe. The latter is a single word, whereas the former is actuallylfollowed by the abbreviated name of a library. Also, of those four,pipeis the only one that actually shows up in the output ofgcc --help. The rest require-v, and even after sifting through the many pages of output that gives you, you still won't find anything mentioninglmorlcrypt. – Rob Kennedy Oct 3 '09 at 5:30