Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

--enable-pic equivalent in Visual Studio

What setting in Visual Studio C++ project, would be equivalent to *nix --enable-pic switch, i.e. ./configure --enable-pic

like image 457
theta Avatar asked Nov 09 '12 14:11

theta


1 Answers

There is none since it is not required.

http://en.wikipedia.org/wiki/Position-independent_code: "Microsoft Windows DLLs are not shared libraries in the Unix sense and do not use position independent code"

like image 145
Andreas Fester Avatar answered Oct 12 '22 07:10

Andreas Fester