diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-05-13 15:38:53 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-05-13 15:38:53 +0200 |
commit | 23827edd998db30dd1f0d6a14f09399aa7d07b69 (patch) | |
tree | ad5d7669b167efde8e01894c72d091196f58bcdf /libbuild2/cc/common.cxx | |
parent | d92ea3a7cff0dae578005a914df799e1e11efc8e (diff) |
Add ${c,cxx}.find_system_{header,library}() functions
Diffstat (limited to 'libbuild2/cc/common.cxx')
-rw-r--r-- | libbuild2/cc/common.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libbuild2/cc/common.cxx b/libbuild2/cc/common.cxx index 245109b..3130afa 100644 --- a/libbuild2/cc/common.cxx +++ b/libbuild2/cc/common.cxx @@ -322,6 +322,8 @@ namespace build2 // 2 - argument and next element (-l pthread, -framework CoreServices) // 0 - unrecognized/until the end (-Wl,--whole-archive ...) // + // See similar code in find_system_library(). + // auto sense_fragment = [&sys_simple, this] (const string& l) -> pair<size_t, bool> { @@ -627,6 +629,8 @@ namespace build2 // Note that pk's scope should not be NULL (even if dir is absolute). // + // Note: see similar logic in find_system_library(). + // target* common:: search_library (action act, const dir_paths& sysd, |