Lines Matching refs:abi
123 # the libc++abi that is being built. There are two problems with testing a
124 # static libc++abi. In the case of a standalone build, the tests will link the
125 # system's libc++, which might not have been built against our libc++abi. In the
126 # case of an in tree build, libc++ will prefer a dynamic libc++abi from the
127 # system over a static libc++abi from the output directory.
128 option(LIBCXXABI_ENABLE_SHARED "Build libc++abi as a shared library." ON)
129 option(LIBCXXABI_ENABLE_STATIC "Build libc++abi as a static library." ON)
132 message(FATAL_ERROR "libc++abi must be built as either a shared or static library.")
312 # TODO: Fix the libc++ cmake files so that libc++abi can be statically linked.
313 # As it is now, libc++ will prefer linking against a dynamic libc++abi in the
314 # system library paths over a static libc++abi in the out directory. This
317 message(WARNING "The libc++abi tests are currently only valid when "