Skip to content

Commit 2b1c01c

Browse files
committed
build: refactor pkg-config for shared libraries
Improve detection and usage of pkg-config. This simplifies the setup of all our shared libraries. If pkg-config is installed on the host and `--shared` flags are passed by the user, we try to get defaults from pkg-config instead of using the default provided by configure. PR-URL: #1603 Reviewed-By: Ben Noordhuis <[email protected]>
1 parent 214d020 commit 2b1c01c

File tree

1 file changed

+56
-66
lines changed

1 file changed

+56
-66
lines changed

configure

+56-66
Original file line numberDiff line numberDiff line change
@@ -343,17 +343,28 @@ def b(value):
343343

344344

345345
def pkg_config(pkg):
346-
cmd = os.popen('pkg-config --libs %s' % pkg, 'r')
347-
libs = cmd.readline().strip()
348-
ret = cmd.close()
349-
if (ret): return None
350-
351-
cmd = os.popen('pkg-config --cflags %s' % pkg, 'r')
352-
cflags = cmd.readline().strip()
353-
ret = cmd.close()
354-
if (ret): return None
355-
356-
return (libs, cflags)
346+
pkg_config = os.environ.get('PKG_CONFIG', 'pkg-config')
347+
args = '--silence-errors'
348+
retval = ()
349+
for flag in ['--libs-only-l', '--cflags-only-I', '--libs-only-L']:
350+
try:
351+
val = subprocess.check_output([pkg_config, args, flag, pkg])
352+
# check_output returns bytes
353+
val = val.encode().strip().rstrip('\n')
354+
except subprocess.CalledProcessError:
355+
# most likely missing a .pc-file
356+
val = None
357+
except OSError:
358+
# no pkg-config/pkgconf installed
359+
return (None, None, None)
360+
retval += (val,)
361+
return retval
362+
363+
364+
def format_libraries(list):
365+
"""Returns string of space separated libraries"""
366+
libraries = list.split(',')
367+
return ' '.join('-l{0}'.format(i) for i in libraries)
357368

358369

359370
def try_check_compiler(cc, lang):
@@ -668,40 +679,30 @@ def configure_node(o):
668679
o['variables']['node_target_type'] = 'static_library'
669680

670681

671-
def configure_libz(o):
672-
o['variables']['node_shared_zlib'] = b(options.shared_zlib)
673-
674-
if options.shared_zlib:
675-
o['libraries'] += ['-l%s' % options.shared_zlib_libname]
676-
if options.shared_zlib_libpath:
677-
o['libraries'] += ['-L%s' % options.shared_zlib_libpath]
678-
if options.shared_zlib_includes:
679-
o['include_dirs'] += [options.shared_zlib_includes]
680-
681-
682-
def configure_http_parser(o):
683-
o['variables']['node_shared_http_parser'] = b(options.shared_http_parser)
684-
685-
if options.shared_http_parser:
686-
o['libraries'] += ['-l%s' % options.shared_http_parser_libname]
687-
if options.shared_http_parser_libpath:
688-
o['libraries'] += ['-L%s' % options.shared_http_parser_libpath]
689-
if options.shared_http_parser_includes:
690-
o['include_dirs'] += [options.shared_http_parser_includes]
691-
692-
693-
def configure_libuv(o):
694-
o['variables']['node_shared_libuv'] = b(options.shared_libuv)
695-
696-
if options.shared_libuv:
697-
o['libraries'] += ['-l%s' % options.shared_libuv_libname]
698-
if options.shared_libuv_libpath:
699-
o['libraries'] += ['-L%s' % options.shared_libuv_libpath]
700-
else:
701-
o['variables']['uv_library'] = 'static_library'
702-
703-
if options.shared_libuv_includes:
704-
o['include_dirs'] += [options.shared_libuv_includes]
682+
def configure_library(lib, output):
683+
shared_lib = 'shared_' + lib
684+
output['variables']['node_' + shared_lib] = b(getattr(options, shared_lib))
685+
686+
if getattr(options, shared_lib):
687+
default_cflags = getattr(options, shared_lib + '_includes')
688+
default_lib = format_libraries(getattr(options, shared_lib + '_libname'))
689+
default_libpath = getattr(options, shared_lib + '_libpath')
690+
if default_libpath:
691+
default_libpath = '-L' + default_libpath
692+
(pkg_libs, pkg_cflags, pkg_libpath) = pkg_config(lib)
693+
cflags = pkg_cflags.split('-I') if pkg_cflags else default_cflags
694+
libs = pkg_libs if pkg_libs else default_lib
695+
libpath = pkg_libpath if pkg_libpath else default_libpath
696+
697+
# libpath needs to be provided ahead libraries
698+
if libpath:
699+
output['libraries'] += [libpath]
700+
if libs:
701+
# libs passed to the linker cannot contain spaces.
702+
# (libpath on the other hand can)
703+
output['libraries'] += libs.split()
704+
if cflags:
705+
output['include_dirs'] += [cflags]
705706

706707

707708
def configure_v8(o):
@@ -714,25 +715,11 @@ def configure_v8(o):
714715
def configure_openssl(o):
715716
o['variables']['node_use_openssl'] = b(not options.without_ssl)
716717
o['variables']['node_shared_openssl'] = b(options.shared_openssl)
717-
o['variables']['openssl_no_asm'] = (
718-
1 if options.openssl_no_asm else 0)
718+
o['variables']['openssl_no_asm'] = 1 if options.openssl_no_asm else 0
719719

720720
if options.without_ssl:
721721
return
722-
723-
if options.shared_openssl:
724-
(libs, cflags) = pkg_config('openssl') or ('-lssl -lcrypto', '')
725-
726-
libnames = options.shared_openssl_libname.split(',')
727-
o['libraries'] += ['-l%s' % s for s in libnames]
728-
729-
if options.shared_openssl_libpath:
730-
o['libraries'] += ['-L%s' % options.shared_openssl_libpath]
731-
732-
if options.shared_openssl_includes:
733-
o['include_dirs'] += [options.shared_openssl_includes]
734-
else:
735-
o['cflags'] += cflags.split()
722+
configure_library('openssl', o)
736723

737724

738725
def configure_fullystatic(o):
@@ -853,11 +840,14 @@ def configure_intl(o):
853840
# ICU from pkg-config.
854841
o['variables']['v8_enable_i18n_support'] = 1
855842
pkgicu = pkg_config('icu-i18n')
856-
if not pkgicu:
843+
if pkgicu[0] is None:
857844
print 'Error: could not load pkg-config data for "icu-i18n".'
858845
print 'See above errors or the README.md.'
859846
sys.exit(1)
860-
(libs, cflags) = pkgicu
847+
(libs, cflags, libpath) = pkgicu
848+
# libpath provides linker path which may contain spaces
849+
o['libraries'] += [libpath]
850+
# safe to split, cannot contain spaces
861851
o['libraries'] += libs.split()
862852
o['cflags'] += cflags.split()
863853
# use the "system" .gyp
@@ -1016,9 +1006,9 @@ if (options.dest_os):
10161006
flavor = GetFlavor(flavor_params)
10171007

10181008
configure_node(output)
1019-
configure_libz(output)
1020-
configure_http_parser(output)
1021-
configure_libuv(output)
1009+
configure_library('zlib', output)
1010+
configure_library('http_parser', output)
1011+
configure_library('libuv', output)
10221012
configure_v8(output)
10231013
configure_openssl(output)
10241014
configure_winsdk(output)

0 commit comments

Comments
 (0)