diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-11-10 18:49:59 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-11-10 18:49:59 +0000 |
commit | 166c8048930302d916848e08a251fae05718743d (patch) | |
tree | 402aa308a1bbeee83819f6ab2df60ce4b4b4ae10 /llvm/tools/llvm-config/BuildVariables.inc.in | |
parent | f5b9658a2552bab8ce7fc5519f14103bba2dadbc (diff) | |
download | bcm5719-llvm-166c8048930302d916848e08a251fae05718743d.tar.gz bcm5719-llvm-166c8048930302d916848e08a251fae05718743d.zip |
llvm-config: Replace with C++ version (was llvm-config-2).
llvm-svn: 144300
Diffstat (limited to 'llvm/tools/llvm-config/BuildVariables.inc.in')
-rw-r--r-- | llvm/tools/llvm-config/BuildVariables.inc.in | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/llvm/tools/llvm-config/BuildVariables.inc.in b/llvm/tools/llvm-config/BuildVariables.inc.in new file mode 100644 index 00000000000..5969772c9dc --- /dev/null +++ b/llvm/tools/llvm-config/BuildVariables.inc.in @@ -0,0 +1,26 @@ +//===-- BuildVariables.inc.in - llvm-config build variables -*- C++ -*-----===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// 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. +// +// The non .in variant of this file has been autogenerated by the LLVM build. Do +// not edit! +// +//===----------------------------------------------------------------------===// + +#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@" +#define LLVM_SYSTEM_LIBS "@LLVM_SYSTEM_LIBS@" |