Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
6  
It might be better to describe what you want to achieve rather than the ./configure option. Then you'll get a greater set of people able to answer. – Benj Nov 9 '12 at 14:16
I wanted to build a project for which --enable-pic was suggested (on *nix environment) – theta Nov 9 '12 at 14:21

1 Answer

up vote 7 down vote accepted

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"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.