We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66601f1 commit fd713e1Copy full SHA for fd713e1
deps/libeio/wscript
@@ -125,5 +125,7 @@ def build(bld):
125
libeio.install_path = None
126
if bld.env["USE_DEBUG"]:
127
libeio.clone("debug");
128
+ if Options.options.product_type != 'program':
129
+ libeio.ccflags = "-fPIC"
130
bld.install_files('${PREFIX}/include/node/', 'eio.h');
131
wscript
@@ -619,6 +619,8 @@ def build(bld):
619
http_parser.install_path = None
620
621
http_parser.clone("debug")
622
+ if product_type_is_lib:
623
+ http_parser.ccflags = '-fPIC'
624
625
### src/native.cc
626
def make_macros(loc, content):
0 commit comments