diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-12-11 07:20:18 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-12-11 07:20:18 +0200 |
commit | 4cf87fa84a6938e262fd6122e654e5a483a78abe (patch) | |
tree | 9d6a7802d156dc287562f77184396e0cc7b62d23 /libbuild2/cc/common.cxx | |
parent | 3074c5e1409ad49c0793db6384ecbc6ac4ed33a9 (diff) |
Add support for module interface-only libraries
Also suppress generation of the object file in cases where we don't need it.
Diffstat (limited to 'libbuild2/cc/common.cxx')
-rw-r--r-- | libbuild2/cc/common.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/cc/common.cxx b/libbuild2/cc/common.cxx index 62f0ee0..9cac1b0 100644 --- a/libbuild2/cc/common.cxx +++ b/libbuild2/cc/common.cxx @@ -721,7 +721,7 @@ namespace build2 } // Look for binary-less libraries via pkg-config .pc files. Note that - // it is possible we have already found one of them as binfull but the + // it is possible we have already found one of them as binful but the // other is binless. // { @@ -731,7 +731,7 @@ namespace build2 if (na || ns) { // Only consider the common .pc file if we can be sure there - // is no binfull variant. + // is no binful variant. // pair<path, path> r ( pkgconfig_search (d, p.proj, name, na && ns /* common */)); |