aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/project/boost/build.py
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-12-15 13:40:15 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-12-15 13:51:14 +0300
commit00290ddef6c340575898974c63e57975e3866b75 (patch)
treec20aa1c307deb3c658b5f86689f35a8be0ede8db /project/boost/build.py
parentworkflows/basic: minor fix (diff)
downloadcmake-common-00290ddef6c340575898974c63e57975e3866b75.tar.gz
cmake-common-00290ddef6c340575898974c63e57975e3866b75.zip
basic macOS support
I don't have a Mac to test on, but the knowledge that there is basic support for macOS is still nice.
Diffstat (limited to '')
-rw-r--r--project/boost/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/project/boost/build.py b/project/boost/build.py
index a192585..fd73b6e 100644
--- a/project/boost/build.py
+++ b/project/boost/build.py
@@ -101,7 +101,7 @@ class BuildParameters:
logging.warning("Cannot link the runtime statically to a dynamic library, going to link dynamically")
runtime_link = Linkage.SHARED
elif on_linux_like():
- logging.warning("Cannot link to the GNU C Library (which is assumed) statically, going to link dynamically")
+ logging.warning("Cannot link to the GNU C Library or BSD libc (which are assumed) statically, going to link dynamically")
runtime_link = Linkage.SHARED
yield link, runtime_link