summaryrefslogtreecommitdiff
path: root/m4/fp_find_cxx_std_lib.m4
Commit message (Collapse)AuthorAgeFilesLines
* configure: Fix FIND_CXX_STD_LIB test on DarwinBen Gamari2023-03-161-0/+11
| | | | | | | | Annoyingly, Darwin's <cstddef> includes <version> and APFS is case-insensitive. Consequently, it will end up #including the `VERSION` file generated by the `configure` script on the second and subsequent runs of the `configure` script. See #23116.
* Repair c++ probing on OpenBSDGreg Steuck2022-09-141-0/+1
| | | | | | | | | | Failure without this change: ``` checking C++ standard library flavour... libc++ checking for linkage against 'c++ c++abi'... failed checking for linkage against 'c++ cxxrt'... failed configure: error: Failed to find C++ standard library ```
* system-cxx-std-lib: Add support for FreeBSD libcxxrtBen Gamari2022-08-091-20/+55
|
* Suppress extra output from configure check for c++ librariesGreg Steuck2022-07-161-2/+2
|
* Introduce package to capture dependency on C++ stdlibBen Gamari2022-05-171-0/+58
Here we introduce a new "virtual" package into the initial package database, `system-cxx-std-lib`. This gives users a convenient, platform agnostic way to link against C++ libraries, addressing #20010. Fixes #20010.