]> granicus.if.org Git - clang/commit
Build with _XOPEN_SOURCE defined on AIX
authorDavid Tenty <daltenty@ibm.com>
Fri, 7 Jun 2019 15:45:25 +0000 (15:45 +0000)
committerDavid Tenty <daltenty@ibm.com>
Fri, 7 Jun 2019 15:45:25 +0000 (15:45 +0000)
commit4b1ba5168557dfcef8e3553fbc439846e37837df
tree3baf73560dc93d30025378f5258b647ef312ba8d
parentfe6f0b48d94e796528fb3352770363cc1c781e38
Build with _XOPEN_SOURCE defined on AIX

Summary:
It is useful to build with _XOPEN_SOURCE defined on AIX, enabling X/Open
and POSIX compatibility mode, to work around stray macros and other
bugs in the headers provided by the system and build compiler.

This patch adds the config to cmake to build with _XOPEN_SOURCE defined
on AIX with a few exceptions. Google Test internals require access to
platform specific thread info constructs on AIX so in that case we build
with _ALL_SOURCE defined instead. Libclang also uses header which needs
_ALL_SOURCE on AIX so we leave that as is as well.

We also add building on AIX with the large file API and doing CMake
header checks with X/OPEN definitions so the results are consistent with
the environment that will be present in the build.

Reviewers: hubert.reinterpretcast, xingxue, andusy

Reviewed By: hubert.reinterpretcast

Subscribers: mgorny, jsji, cfe-commits, llvm-commits

Tags: #llvm, #clang

Differential Revision: https://reviews.llvm.org/D62533

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@362808 91177308-0d34-0410-b5e6-96231b3b80d8
tools/libclang/CMakeLists.txt