[cfe-commits] r149497 - /cfe/trunk/include/clang/Config/config.h.in

Dylan Noblesmith nobled at dreamwidth.org
Wed Feb 1 05:50:25 PST 2012


Author: nobled
Date: Wed Feb  1 07:50:25 2012
New Revision: 149497

URL: http://llvm.org/viewvc/llvm-project?rev=149497&view=rev
Log:
autoconf: add private config.h to clang

This already exists in the CMake build, which is part of what makes
building clang separately from llvm via cmake possible. This cleans up
that discrepancy between the build systems (and sets the groundwork
for configuring clang separately, too).

Added:
    cfe/trunk/include/clang/Config/config.h.in

Added: cfe/trunk/include/clang/Config/config.h.in
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Config/config.h.in?rev=149497&view=auto
==============================================================================
--- cfe/trunk/include/clang/Config/config.h.in (added)
+++ cfe/trunk/include/clang/Config/config.h.in Wed Feb  1 07:50:25 2012
@@ -0,0 +1,27 @@
+/* include/clang/Config/config.h.in. */
+
+#ifndef CONFIG_H
+#define CONFIG_H
+
+/* Bug report URL. */
+#undef BUG_REPORT_URL
+
+/* Relative directory for resource files */
+#undef CLANG_RESOURCE_DIR
+
+/* 32 bit multilib directory. */
+#undef CXX_INCLUDE_32BIT_DIR
+
+/* 64 bit multilib directory. */
+#undef CXX_INCLUDE_64BIT_DIR
+
+/* Arch the libstdc++ headers. */
+#undef CXX_INCLUDE_ARCH
+
+/* Directory with the libstdc++ headers. */
+#undef CXX_INCLUDE_ROOT
+
+/* Directories clang will search for headers */
+#undef C_INCLUDE_DIRS
+
+#endif





More information about the cfe-commits mailing list