Search code examples
gcccygwin

Why does Cygwin's GCC display the first line of every file?


I'm not a regular Cygwin user. I installed Cygwin and Cygwin64 for testing proposed patches.

Here's the output of a typical make:

User@windows-7-x64 ~/cryptopp
$ make
g++ -DNDEBUG -g -O2 -fPIC -march=native -pipe -c shacal2.cpp
shacal2.cpp:1:0: warning: -fPIC ignored for target (all code is position independent)
 // shacal2.cpp - by Kevin Springle, 2003
 ^
g++ -DNDEBUG -g -O2 -fPIC -march=native -pipe -c seed.cpp
seed.cpp:1:0: warning: -fPIC ignored for target (all code is position independent)
 // seed.cpp - written and placed in the public domain by Wei Dai
 ^
g++ -DNDEBUG -g -O2 -fPIC -march=native -pipe -c shark.cpp
shark.cpp:1:0: warning: -fPIC ignored for target (all code is position independent)
 // shark.cpp - written and placed in the public domain by Wei Dai
 ^
...

Cygwin's make displays the first line of every file it compiles.

Why does Cygwin's make display the first line of every file? How can I stop the behavior?


Solution

  • The output is due to the warning about the -fPIC command line option, just as it says. Remove the -fPIC option from your makefile's CXXFLAGS (or wherever) and it will go away.