aboutsummaryrefslogtreecommitdiff
path: root/tools/llvmc/CompilerDriver.h
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-05-19 00:52:28 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-05-19 00:52:28 +0000
commitcc97cfc43eb481ef61763feecb16aa3658016284 (patch)
treeb3a02020992025dba6145192325de7812367d527 /tools/llvmc/CompilerDriver.h
parent8f9e21e3deaf89253458d21fcdca1fc293b3efba (diff)
For PR514:
* language specification files are no longer configured with "configure" * add substitutions for %bindir%, %libdir%, and various llvmgcc related variables needed in the c and cpp spec files. * Implement the stubstituions in the Compiler Driver. * Move st.in to projects/Stacker/tools/stkrc where it belongs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22128 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvmc/CompilerDriver.h')
-rw-r--r--tools/llvmc/CompilerDriver.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/llvmc/CompilerDriver.h b/tools/llvmc/CompilerDriver.h
index 6f9d0f497a..1100e3e46f 100644
--- a/tools/llvmc/CompilerDriver.h
+++ b/tools/llvmc/CompilerDriver.h
@@ -110,6 +110,7 @@ namespace llvm {
/// @brief Configuration Data Provider interface
class ConfigDataProvider {
public:
+ virtual ~ConfigDataProvider();
virtual ConfigData* ProvideConfigData(const std::string& filetype) = 0;
virtual void setConfigDir(const sys::Path& dirName) = 0;
};