1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
10 from optparse
import OptionParser
12 # This script runs pkg-config, optionally filtering out some results, and
15 # The result will be [ <includes>, <cflags>, <libs>, <lib_dirs>, <ldflags> ]
16 # where each member is itself a list of strings.
18 # You can filter out matches using "-v <regexp>" where all results from
19 # pkgconfig matching the given regular expression will be ignored. You can
20 # specify more than one regular expression my specifying "-v" more than once.
22 # You can specify a sysroot using "-s <sysroot>" where sysroot is the absolute
23 # system path to the sysroot used for compiling. This script will attempt to
24 # generate correct paths for the sysroot.
26 # When using a sysroot, you must also specify the architecture via
27 # "-a <arch>" where arch is either "x86" or "x64".
29 # Additionally, you can specify the option --atleast-version. This will skip
30 # the normal outputting of a dictionary and instead print true or false,
31 # depending on the return value of pkg-config for the given package.
33 # If this is run on non-Linux platforms, just return nothing and indicate
34 # success. This allows us to "kind of emulate" a Linux build from other
36 if sys
.platform
.find("linux") == -1:
37 print "[[],[],[],[],[]]"
41 def SetConfigPath(options
):
42 """Set the PKG_CONFIG_PATH environment variable.
43 This takes into account any sysroot and architecture specification from the
44 options on the given command line."""
46 sysroot
= options
.sysroot
50 # Compute the library path name based on the architecture.
52 if sysroot
and not arch
:
53 print "You must specify an architecture via -a if using a sysroot."
60 # Add the sysroot path to the environment's PKG_CONFIG_PATH
61 config_path
= sysroot
+ '/usr/' + libpath
+ '/pkgconfig'
62 config_path
+= ':' + sysroot
+ '/usr/share/pkgconfig'
63 if 'PKG_CONFIG_PATH' in os
.environ
:
64 os
.environ
['PKG_CONFIG_PATH'] += ':' + config_path
66 os
.environ
['PKG_CONFIG_PATH'] = config_path
69 def GetPkgConfigPrefixToStrip(args
):
70 """Returns the prefix from pkg-config where packages are installed.
71 This returned prefix is the one that should be stripped from the beginning of
72 directory names to take into account sysroots."""
73 # Some sysroots, like the Chromium OS ones, may generate paths that are not
74 # relative to the sysroot. For example,
75 # /path/to/chroot/build/x86-generic/usr/lib/pkgconfig/pkg.pc may have all
76 # paths relative to /path/to/chroot (i.e. prefix=/build/x86-generic/usr)
77 # instead of relative to /path/to/chroot/build/x86-generic (i.e prefix=/usr).
78 # To support this correctly, it's necessary to extract the prefix to strip
79 # from pkg-config's |prefix| variable.
80 prefix
= subprocess
.check_output(["pkg-config", "--variable=prefix"] + args
,
82 if prefix
[-4] == '/usr':
87 def MatchesAnyRegexp(flag
, list_of_regexps
):
88 """Returns true if the first argument matches any regular expression in the
90 for regexp
in list_of_regexps
:
91 if regexp
.search(flag
) != None:
96 def RewritePath(path
, strip_prefix
, sysroot
):
97 """Rewrites a path by stripping the prefix and prepending the sysroot."""
98 if os
.path
.isabs(path
) and not path
.startswith(sysroot
):
99 if path
.startswith(strip_prefix
):
100 path
= path
[len(strip_prefix
):]
101 path
= path
.lstrip('/')
102 return os
.path
.join(sysroot
, path
)
107 parser
= OptionParser()
108 parser
.add_option('-p', action
='store', dest
='pkg_config', type='string',
109 default
='pkg-config')
110 parser
.add_option('-v', action
='append', dest
='strip_out', type='string')
111 parser
.add_option('-s', action
='store', dest
='sysroot', type='string')
112 parser
.add_option('-a', action
='store', dest
='arch', type='string')
113 parser
.add_option('--atleast-version', action
='store',
114 dest
='atleast_version', type='string')
115 parser
.add_option('--libdir', action
='store_true', dest
='libdir')
116 (options
, args
) = parser
.parse_args()
118 # Make a list of regular expressions to strip out.
120 if options
.strip_out
!= None:
121 for regexp
in options
.strip_out
:
122 strip_out
.append(re
.compile(regexp
))
124 SetConfigPath(options
)
126 prefix
= GetPkgConfigPrefixToStrip(args
)
130 if options
.atleast_version
:
131 # When asking for the return value, just run pkg-config and print the return
132 # value, no need to do other work.
133 if not subprocess
.call([options
.pkg_config
,
134 "--atleast-version=" + options
.atleast_version
] +
144 libdir
= subprocess
.check_output([options
.pkg_config
,
145 "--variable=libdir"] +
149 print "Error from pkg-config."
151 sys
.stdout
.write(libdir
.strip())
155 flag_string
= subprocess
.check_output(
156 [ options
.pkg_config
, "--cflags", "--libs" ] +
157 args
, env
=os
.environ
)
158 # For now just split on spaces to get the args out. This will break if
159 # pkgconfig returns quoted things with spaces in them, but that doesn't seem
160 # to happen in practice.
161 all_flags
= flag_string
.strip().split(' ')
163 print "Could not run pkg-config."
167 sysroot
= options
.sysroot
177 for flag
in all_flags
[:]:
178 if len(flag
) == 0 or MatchesAnyRegexp(flag
, strip_out
):
182 libs
.append(RewritePath(flag
[2:], prefix
, sysroot
))
183 elif flag
[:2] == '-L':
184 lib_dirs
.append(RewritePath(flag
[2:], prefix
, sysroot
))
185 elif flag
[:2] == '-I':
186 includes
.append(RewritePath(flag
[2:], prefix
, sysroot
))
187 elif flag
[:3] == '-Wl':
189 elif flag
== '-pthread':
190 # Many libs specify "-pthread" which we don't need since we always include
191 # this anyway. Removing it here prevents a bunch of duplicate inclusions on
197 # Output a GN array, the first one is the cflags, the second are the libs. The
198 # JSON formatter prints GN compatible lists when everything is a list of
200 print json
.dumps([includes
, cflags
, libs
, lib_dirs
, ldflags
])