diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-12-15 13:40:15 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-12-15 13:51:14 +0300 |
commit | 00290ddef6c340575898974c63e57975e3866b75 (patch) | |
tree | c20aa1c307deb3c658b5f86689f35a8be0ede8db /project/boost/build.py | |
parent | workflows/basic: minor fix (diff) | |
download | cmake-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 'project/boost/build.py')
-rw-r--r-- | project/boost/build.py | 2 |
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 |