OpenJDK / haiku / haiku / hotspot
changeset 993:4f3440869807
destructors
author | bachmann |
---|---|
date | Wed, 14 Oct 2009 12:28:48 -0700 |
parents | 1aa3af5d8319 |
children | 6b3efe9e93a6 |
files | src/share/tools/MakeDeps/BuildConfig.cpp |
diffstat | 1 files changed, 14 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/share/tools/MakeDeps/BuildConfig.cpp Wed Oct 14 12:28:46 2009 -0700 +++ b/src/share/tools/MakeDeps/BuildConfig.cpp Wed Oct 14 12:28:48 2009 -0700 @@ -43,6 +43,10 @@ receiver->push_back(attr); receiver->push_back(value); } +CompilerInterface::~CompilerInterface() { + // nothing to do +} + std::map < std::string, void * > vars; std::vector < std::string > context; @@ -148,9 +152,12 @@ includeDirectory << get("OutputDir") << Util::sep << "incls"; mkdir(includeDirectory.str().c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH); includeDirectory << Util::sep; - FileName * oldInclTempl = platform->getInclFileTemplate(); - FileName * oldGITempl = platform->getGIFileTemplate(); - FileName * oldGDTempl = platform->getGDFileTemplate(); + // FileName * oldInclTempl = + platform->getInclFileTemplate(); + // FileName * oldGITempl = + platform->getGIFileTemplate(); + // FileName * oldGDTempl = + platform->getGDFileTemplate(); platform->setInclFileTemplate( new FileName(platform, includeDirectory.str(), "_", "", ".incl", "", "")); platform->setGIFileTemplate( @@ -541,6 +548,10 @@ linkerFlags->insert(linkerFlags->begin(), debugLinkerFlags.begin(), debugLinkerFlags.end()); } +GenericDebugConfig::~GenericDebugConfig() { + // nothing to do +} + std::string C1DebugConfig::getOptFlag() { return getCI()->getNoOptFlag(); }