diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-08-18 19:42:28 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-08-18 21:56:45 +0300 |
commit | a216de4898cc7b9aafaecf6ebbe19d79d1c5aea3 (patch) | |
tree | 8b8c0fdcbb6a49fd7992421d2da6722efb654a1b /docs/markdown/howtox.md | |
parent | d6243e3ebd43a44aebf4e403cb19b3d881aedee5 (diff) | |
download | meson-a216de4898cc7b9aafaecf6ebbe19d79d1c5aea3.zip meson-a216de4898cc7b9aafaecf6ebbe19d79d1c5aea3.tar.gz meson-a216de4898cc7b9aafaecf6ebbe19d79d1c5aea3.tar.bz2 |
docs: Remove the deleted function find_library
Diffstat (limited to 'docs/markdown/howtox.md')
-rw-r--r-- | docs/markdown/howtox.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/howtox.md b/docs/markdown/howtox.md index 1521f72..5c64bcb 100644 --- a/docs/markdown/howtox.md +++ b/docs/markdown/howtox.md @@ -85,7 +85,7 @@ executable(..., override_options : ['c_std=c11']) ## Enable threads -Lots of people seem to do this manually with `find_library('pthread')` +Lots of people seem to do this manually with `cc.find_library('pthread')` or something similar. Do not do that. It is not portable. Instead do this. |