diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-08-30 06:29:06 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-08-30 06:29:06 +0000 |
commit | ca01f9bc6fc72143ed95cea2535085f151a97d41 (patch) | |
tree | 10c2266dc8bc678e824633389f8ac2ab4c62f610 /tools/llvmc/CompilerDriver.h | |
parent | 7c14fd152e27aab095d0fe8471903d90c693f36e (diff) |
Implement the "setIncludePaths" and "setSymbolDefines" interface methods.
Revise token substitution to be a little faster.
Clean up exception throwing, make sure its always a std::string.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16116 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvmc/CompilerDriver.h')
-rw-r--r-- | tools/llvmc/CompilerDriver.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/llvmc/CompilerDriver.h b/tools/llvmc/CompilerDriver.h index ea999b44d9..4a858ad743 100644 --- a/tools/llvmc/CompilerDriver.h +++ b/tools/llvmc/CompilerDriver.h @@ -161,6 +161,12 @@ namespace llvm { virtual void setPhaseArgs(Phases phase, const StringVector& opts) = 0; /// @brief Set Library Paths + virtual void setIncludePaths(const StringVector& paths) = 0; + + /// @brief Set Library Paths + virtual void setSymbolDefines(const StringVector& paths) = 0; + + /// @brief Set Library Paths virtual void setLibraryPaths(const StringVector& paths) = 0; /// @brief Set the list of library paths to be searched for |