]> git.tdb.fi Git - builder.git/blobdiff - source/compile.cpp
Big rewrite for a more tool-centric approach
[builder.git] / source / compile.cpp
diff --git a/source/compile.cpp b/source/compile.cpp
deleted file mode 100644 (file)
index 4960d42..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-#include <msp/fs/dir.h>
-#include <msp/fs/utils.h>
-#include "builder.h"
-#include "buildinfo.h"
-#include "compile.h"
-#include "component.h"
-#include "objectfile.h"
-#include "sourcefile.h"
-#include "sourcepackage.h"
-
-using namespace std;
-using namespace Msp;
-
-Compile::Compile(Builder &b, const ObjectFile &obj):
-       ExternalAction(b)
-{
-       const Component &comp = obj.get_component();
-
-       work_dir = comp.get_package().get_source();
-
-       FS::Path spath = obj.get_source().get_path();
-
-       string ext = FS::extpart(spath.str());
-       const char *tool = 0;
-       if(ext==".cpp" || ext==".cc")
-               tool = "CXX";
-       else
-               tool = "CC";
-
-       argv.push_back(builder.get_current_arch().get_tool(tool));
-       argv.push_back("-c");
-
-       const BuildInfo &binfo = comp.get_build_info();
-       for(list<string>::const_iterator i=binfo.warnings.begin(); i!=binfo.warnings.end(); ++i)
-               argv.push_back("-W"+*i);
-       for(list<string>::const_iterator i=binfo.cflags.begin(); i!=binfo.cflags.end(); ++i)
-               argv.push_back(*i);
-       for(list<string>::const_iterator i=binfo.incpath.begin(); i!=binfo.incpath.end(); ++i)
-               argv.push_back("-I"+*i);
-       for(list<string>::const_iterator i=binfo.defines.begin(); i!=binfo.defines.end(); ++i)
-               argv.push_back("-D"+*i);
-
-       FS::Path opath = obj.get_path();
-       argv.push_back("-o");
-       argv.push_back(relative(opath, work_dir).str());
-       argv.push_back(relative(spath, work_dir).str());
-
-       if(!builder.get_dry_run())
-               FS::mkpath(FS::dirname(opath), 0755);
-
-       announce(comp.get_package().get_name(), tool, basename(opath));
-
-       launch();
-}