]> git.proxmox.com Git - libgit2.git/commit
cmake: do not use -fPIC for MSYS2
authorPatrick Steinhardt <ps@pks.im>
Mon, 20 Jun 2016 09:09:49 +0000 (11:09 +0200)
committerPatrick Steinhardt <ps@pks.im>
Tue, 21 Jun 2016 05:50:02 +0000 (07:50 +0200)
commitb6a2fd0e0dbf5d2f45fd9307c7577f94b1e4d169
tree7ed509cebc9122dfbcc88a0b7a5cac2a5a5b53e9
parentbb0edf87ce33cbf454fa13490621230cb43d247b
cmake: do not use -fPIC for MSYS2

The MSYS2 build system automatically compiles all code with position-independent
code. When we manually add the -fPIC flag to the compiler flags, MSYS2 will
loudly complain about PIC being the default and thus not required.

Fix the annoyance by stripping -fPIC in MSYS2 enviroments like it is already
done for MinGW.
CMakeLists.txt