Skip to content

Commit 0da3d3e

Browse files
committed
handle file paths to libraries
Typically pkgconfig files specify cflags for linking with -L and -l, however, pkgconfig files can also specify paths to library files. For example, building Qt5 statically on macOS generates the following pkgconfig file. Notice the absolute path to libqtpcre.a in Libs.private: prefix=/Users/be/qt5-installed exec_prefix=${prefix} libdir=${prefix}/lib includedir=${prefix}/include host_bins=${prefix}/bin qt_config=debug_and_release release debug build_all c++11 c++14 c++17 c++1z concurrent dbus no-pkg-config reduce_exports release_tools static stl Name: Qt5 Core Description: Qt Core module Version: 5.15.5 Libs: -L${libdir} -lQt5Core Libs.private: -framework DiskArbitration -framework IOKit -lm -framework AppKit -framework Security -framework ApplicationServices -framework CoreServices -framework CoreFoundation -framework Foundation -lz /Users/be/sw/qt-everywhere-src-5.15.5/qtbase/lib/libqtpcre2.a Cflags: -DQT_CORE_LIB -I${includedir}/QtCore -I${includedir} Building Qt5 statically on macOS with vcpkg generates this pkgconfig file which has a handful of file paths for libraries: prefix=${pcfiledir}/../.. exec_prefix=${prefix} libdir=${prefix}/lib includedir=${prefix}/include/qt5 host_bins=${prefix}/tools/qt5/bin qt_config=release c++11 c++14 c++17 c++1z concurrent dbus no-pkg-config reduce_exports static stl properties animation textcodec big_codecs codecs itemmodel proxymodel concatenatetablesproxymodel textdate datestring doubleconversion filesystemiterator filesystemwatcher gestures identityproxymodel library mimetype process statemachine regularexpression settings sharedmemory sortfilterproxymodel stringlistmodel systemsemaphore temporaryfile translation transposeproxymodel xmlstream xmlstreamreader xmlstreamwriter Name: Qt5 Core Description: Qt Core module Version: 5.15.3 Libs: -L"${libdir}" -lQt5Core -L"${prefix}/lib" -L"${prefix}/lib/manual-link" -framework DiskArbitration -framework IOKit -lm -framework AppKit -framework Security -framework ApplicationServices -framework CoreServices -framework CoreFoundation -framework Foundation ${prefix}/lib/libz.a -ldouble-conversion ${prefix}/lib/libicui18n.a ${prefix}/lib/libicutu.a ${prefix}/lib/libicuuc.a ${prefix}/lib/libicuio.a ${prefix}/lib/libicudata.a ${prefix}/lib/libpcre2-16.a -lzstd ${prefix}/lib/libbz2.a ${prefix}/lib/libpng16.a ${prefix}/lib/libicui18n.a ${prefix}/lib/libicutu.a ${prefix}/lib/libicuuc.a ${prefix}/lib/libicuio.a ${prefix}/lib/libicudata.a ${prefix}/lib/libzstd.a Cflags: -DQT_CORE_LIB -I"${includedir}/QtCore" -I"${includedir}"
1 parent 4246c5a commit 0da3d3e

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
lines changed

Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ Cargo build scripts.
1313
"""
1414
keywords = ["build-dependencies"]
1515

16-
[dev-dependencies]
16+
[dependencies]
1717
lazy_static = "1"
18+
regex = "1.6.0"

src/lib.rs

+31-1
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,15 @@ impl Library {
568568
}
569569

570570
fn parse_libs_cflags(&mut self, name: &str, output: &[u8], config: &Config) {
571+
#[cfg(windows)]
572+
lazy_static::lazy_static! {
573+
static ref LIB_BASENAME: regex::Regex = regex::Regex::new(r"^(.*)\.(lib|dll)$").unwrap();
574+
}
575+
#[cfg(not(windows))]
576+
lazy_static::lazy_static! {
577+
static ref LIB_BASENAME: regex::Regex = regex::Regex::new(r"^lib(.*)\.(a|so|dylib)").unwrap();
578+
}
579+
571580
let mut is_msvc = false;
572581
if let Ok(target) = env::var("TARGET") {
573582
if target.contains("msvc") {
@@ -669,7 +678,28 @@ impl Library {
669678
self.include_paths.push(PathBuf::from(inc));
670679
}
671680
}
672-
_ => (),
681+
_ => {
682+
let path = std::path::Path::new(part);
683+
if path.is_file() {
684+
// Cargo doesn't have a means to directly specify a file path to link,
685+
// so split up the path into the parent directory and library name.
686+
if let Some(dir) = path.parent() {
687+
let link_search = format!("rustc-link-search={}", dir.display());
688+
config.print_metadata(&link_search);
689+
}
690+
if let Some(file_name) = path.file_name() {
691+
// libQt5Core.a becomes Qt5Core
692+
// libQt5Core.so.5 becomes Qt5Core
693+
if let Some(captures) =
694+
LIB_BASENAME.captures(&file_name.to_string_lossy())
695+
{
696+
let lib_basename = captures.get(1).unwrap().as_str();
697+
let link_lib = format!("rustc-link-lib={}", lib_basename);
698+
config.print_metadata(&link_lib);
699+
}
700+
}
701+
}
702+
}
673703
}
674704
}
675705

0 commit comments

Comments
 (0)