2011-12-02 04:18:09 +08:00
|
|
|
//===-- BuildVariables.inc.in - llvm-config build variables -*- C++ -*-----===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2011-12-02 04:18:09 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file is configured by the build system to define the variables
|
|
|
|
// llvm-config wants to report to the user, but which can only be determined at
|
|
|
|
// build time.
|
|
|
|
//
|
2013-12-05 13:44:44 +08:00
|
|
|
// The variant of this file not ending with .in has been autogenerated by the
|
|
|
|
// LLVM build. Do not edit!
|
2011-12-02 04:18:09 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#define LLVM_SRC_ROOT "@LLVM_SRC_ROOT@"
|
|
|
|
#define LLVM_OBJ_ROOT "@LLVM_OBJ_ROOT@"
|
|
|
|
#define LLVM_CPPFLAGS "@LLVM_CPPFLAGS@"
|
|
|
|
#define LLVM_CFLAGS "@LLVM_CFLAGS@"
|
|
|
|
#define LLVM_LDFLAGS "@LLVM_LDFLAGS@"
|
|
|
|
#define LLVM_CXXFLAGS "@LLVM_CXXFLAGS@"
|
|
|
|
#define LLVM_BUILDMODE "@LLVM_BUILDMODE@"
|
2014-12-29 19:16:25 +08:00
|
|
|
#define LLVM_LIBDIR_SUFFIX "@LLVM_LIBDIR_SUFFIX@"
|
2011-12-16 08:04:43 +08:00
|
|
|
#define LLVM_TARGETS_BUILT "@LLVM_TARGETS_BUILT@"
|
2011-12-02 04:18:09 +08:00
|
|
|
#define LLVM_SYSTEM_LIBS "@LLVM_SYSTEM_LIBS@"
|
2015-09-10 00:39:30 +08:00
|
|
|
#define LLVM_BUILD_SYSTEM "@LLVM_BUILD_SYSTEM@"
|
2017-01-11 03:55:51 +08:00
|
|
|
#define LLVM_HAS_RTTI @LLVM_HAS_RTTI@
|
|
|
|
#define LLVM_ENABLE_DYLIB @LLVM_BUILD_LLVM_DYLIB@
|
|
|
|
#define LLVM_LINK_DYLIB @LLVM_LINK_LLVM_DYLIB@
|
|
|
|
#define LLVM_ENABLE_SHARED @BUILD_SHARED_LIBS@
|
2019-07-20 06:46:47 +08:00
|
|
|
#define LLVM_DYLIB_COMPONENTS "@LLVM_DYLIB_COMPONENTS_expanded@"
|
tools/llvm-config: improve shared library support
Summary:
This is a re-commit of r257003, which was reverted,
along with the fixes from http://reviews.llvm.org/D15986.
r252532 added support for reporting the monolithic library
when LLVM_BUILD_LLVM_DYLIB is used. This would only be done
if the individual components were not found, and the dynamic
library is found.
This diff extends this as follows:
- If LLVM_LINK_LLVM_DYLIB is set, then prefer the shared
library, even if all component libraries exist.
- Two flags, --link-shared and --link-static are introduced
to provide explicit guidance. If --link-shared is passed
and the shared library does not exist, an error results.
Additionally, changed the expected shared library names from
(e.g.) LLVM-3.8.0 to LLVM-3.8. The former exists only in an
installation (and then only in CMake builds I think?), and not
in the build tree; this breaks usage of llvm-config during
builds, e.g. by llvm-go.
Reviewers: DiamondLovesYou, beanz
Subscribers: llvm-commits
Differential Revision: http://reviews.llvm.org/D15986
llvm-svn: 258283
2016-01-20 12:03:09 +08:00
|
|
|
#define LLVM_DYLIB_VERSION "@LLVM_DYLIB_VERSION@"
|
2017-01-11 03:55:51 +08:00
|
|
|
#define LLVM_HAS_GLOBAL_ISEL @LLVM_HAS_GLOBAL_ISEL@
|
2017-06-02 03:20:33 +08:00
|
|
|
#define LLVM_TOOLS_INSTALL_DIR "@LLVM_TOOLS_INSTALL_DIR@"
|