diff options
author | Chris Lattner <sabre@nondot.org> | 2006-06-02 19:13:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-06-02 19:13:29 +0000 |
commit | abdbae7bd3af228f394e7f27e67899a493f36c1e (patch) | |
tree | b841cb5a079cd9f3cf3818e44764fa70e9e618e2 /tools/llvm-config/llvm-config.in.in | |
parent | 0c1262c9f9cf2c2f76cb2f9c3c6500ec9e696824 (diff) |
Capture the build mode (e.g. Debug/Release) in the llvm-config script.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28665 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-config/llvm-config.in.in')
-rw-r--r-- | tools/llvm-config/llvm-config.in.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/llvm-config/llvm-config.in.in b/tools/llvm-config/llvm-config.in.in index 5029541229..e33aed390d 100644 --- a/tools/llvm-config/llvm-config.in.in +++ b/tools/llvm-config/llvm-config.in.in @@ -47,6 +47,7 @@ my @TARGETS_BUILT = map { lc($_) } qw{@TARGETS_TO_BUILD@}; #---- begin Makefile values ---- my $CXXFLAGS = q{@LLVM_CXXFLAGS@}; my $LDFLAGS = q{@LLVM_LDFLAGS@}; +my $LLVM_BUILDMODE = q{@LLVM_BUILDMODE@}; #---- end Makefile values ---- # Convert the current executable name into its directory (e.g. "."). |