aboutsummaryrefslogtreecommitdiff
path: root/build/cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2014-12-10 10:20:26 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2014-12-10 10:20:26 +0200
commit5e9eb843f6ccadfb47fa603260783425da9e7805 (patch)
tree3778f76de37f5258a07a8fae0e58a843b8a49f1d /build/cxx
parent20e3aedeb7df742c38276fb41cae8f3eb027b6dd (diff)
Add rules
g++-4.9 -std=c++11 -g -I.. -o bd bd.cxx target.cxx native.cxx rule.cxx cxx/rule.cxx cxx/target.cxx process.cxx timestamp.cxx path.cxx
Diffstat (limited to 'build/cxx')
-rw-r--r--build/cxx/rule40
-rw-r--r--build/cxx/rule.cxx260
-rw-r--r--build/cxx/target52
-rw-r--r--build/cxx/target.cxx20
4 files changed, 372 insertions, 0 deletions
diff --git a/build/cxx/rule b/build/cxx/rule
new file mode 100644
index 0000000..d4412e4
--- /dev/null
+++ b/build/cxx/rule
@@ -0,0 +1,40 @@
+// file : build/cxx/rule -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BUILD_CXX_RULE
+#define BUILD_CXX_RULE
+
+#include <build/rule>
+
+namespace build
+{
+ namespace cxx
+ {
+ // @@ Can't we do match(obj&) and then registration code extracts
+ // that. And no virtuals.
+ //
+
+ class compile: public rule
+ {
+ public:
+ virtual recipe
+ match (target&) const;
+
+ static target_state
+ update (target&);
+ };
+
+ class link: public rule
+ {
+ public:
+ virtual recipe
+ match (target&) const;
+
+ static target_state
+ update (target&);
+ };
+ }
+}
+
+#endif // BUILD_CXX_RULE
diff --git a/build/cxx/rule.cxx b/build/cxx/rule.cxx
new file mode 100644
index 0000000..9f8f1ae
--- /dev/null
+++ b/build/cxx/rule.cxx
@@ -0,0 +1,260 @@
+// file : build/cxx/rule.cxx -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#include <build/cxx/rule>
+
+#include <vector>
+#include <iostream>
+
+#include <build/native>
+#include <build/process>
+#include <build/timestamp>
+
+#include <build/cxx/target>
+
+using namespace std;
+
+namespace build
+{
+ namespace cxx
+ {
+ // compile
+ //
+ recipe compile::
+ match (target& t) const
+ {
+ // @@ TODO:
+ //
+ // - check prerequisites: single source file
+ // - check prerequisites: the rest are headers (issue warning at v=1?)
+ // - if path already assigned, verify extension
+ //
+ // @@ Q:
+ //
+ // - if there is no .cxx, are we going to check if the one derived
+ // from target exist or can be built? If we do that, then it
+ // probably makes sense to try other rules first (two passes).
+ //
+ // - Wouldn't it make sense to cache source file? Careful: unloading
+ // of dependency info.
+ //
+
+ // See if we have a source file.
+ //
+ const cxx* s (nullptr);
+ for (const target& p: t.prerequisites ())
+ {
+ if ((s = dynamic_cast<const cxx*> (&p)) != nullptr)
+ break;
+ }
+
+ if (s == nullptr)
+ return recipe ();
+
+ // Derive object file name from target name.
+ //
+ obj& o (dynamic_cast<obj&> (t));
+
+ if (o.path ().empty ())
+ o.path (path (o.name () + ".o"));
+
+ return recipe (&update);
+ }
+
+ target_state compile::
+ update (target& t)
+ {
+ obj& o (dynamic_cast<obj&> (t));
+ timestamp mt (o.mtime ());
+
+ bool u (mt == timestamp_nonexistent);
+ const cxx* s (nullptr);
+
+ for (const target& p: t.prerequisites ())
+ {
+ // Assume all our prerequisites are mtime-based (checked in
+ // match()).
+ //
+ if (!u)
+ {
+ const auto& mtp (dynamic_cast<const mtime_target&> (p));
+ timestamp mp (mtp.mtime ());
+
+ // What do we do if timestamps are equal? This can happen, for
+ // example, on filesystems that don't have subsecond resolution.
+ // There is not much we can do here except detect the case where
+ // the prerequisite was updated in this run which means the
+ // target must be out of date.
+ //
+ if (mt < mp || mt == mp && mtp.state () == target_state::updated)
+ u = true;
+ }
+
+ if (s == nullptr)
+ s = dynamic_cast<const cxx*> (&p);
+
+ if (u && s != nullptr)
+ break;
+ }
+
+ if (!u)
+ return target_state::uptodate;
+
+ const char* args[] = {
+ "g++-4.9",
+ "-std=c++11",
+ "-I..",
+ "-c",
+ "-o", o.path ().string ().c_str (),
+ s->path ().string ().c_str (),
+ nullptr};
+
+ cerr << "c++ " << *s << endl;
+
+ try
+ {
+ process pr (args);
+
+ if (!pr.wait ())
+ return target_state::failed;
+
+ // Should we go to the filesystem and get the new mtime? We
+ // know the file has been modified, so instead just use the
+ // current clock time. It has the advantage of having the
+ // subseconds precision.
+ //
+ o.mtime (system_clock::now ());
+ return target_state::updated;
+ }
+ catch (const process_error& e)
+ {
+ cerr << "error: unable to execute '" << args[0] << "': " <<
+ e.what () << endl;
+
+ if (e.child ())
+ throw; // Let caller terminate us quickly without causing a scene.
+
+ return target_state::failed;
+ }
+ }
+
+ // link
+ //
+ recipe link::
+ match (target& t) const
+ {
+ // @@ TODO:
+ //
+ // - check prerequisites: object files, libraries
+ // - if path already assigned, verify extension
+ //
+ // @@ Q:
+ //
+ // - if there is no .o, are we going to check if the one derived
+ // from target exist or can be built? If we do that, then it
+ // probably makes sense to try other rules first (two passes).
+ // What if there is a library. Probably ok if .a, not is .so.
+ //
+
+ // See if we have at least one object file.
+ //
+ const obj* o (nullptr);
+ for (const target& p: t.prerequisites ())
+ {
+ if ((o = dynamic_cast<const obj*> (&p)) != nullptr)
+ break;
+ }
+
+ if (o == nullptr)
+ return recipe ();
+
+ // Derive executable file name from target name.
+ //
+ exe& e (dynamic_cast<exe&> (t));
+
+ if (e.path ().empty ())
+ e.path (path (e.name ()));
+
+ return recipe (&update);
+ }
+
+ target_state link::
+ update (target& t)
+ {
+ // @@ Q:
+ //
+ // - what are we doing with libraries?
+ //
+
+ exe& e (dynamic_cast<exe&> (t));
+ timestamp mt (e.mtime ());
+
+ bool u (mt == timestamp_nonexistent);
+
+ for (const target& p: t.prerequisites ())
+ {
+ // Assume all our prerequisites are mtime-based (checked in
+ // match()).
+ //
+ const auto& mtp (dynamic_cast<const mtime_target&> (p));
+ timestamp mp (mtp.mtime ());
+
+ // What do we do if timestamps are equal? This can happen, for
+ // example, on filesystems that don't have subsecond resolution.
+ // There is not much we can do here except detect the case where
+ // the prerequisite was updated in this run which means the
+ // target must be out of date.
+ //
+ if (mt < mp || mt == mp && mtp.state () == target_state::updated)
+ {
+ u = true;
+ break;
+ }
+ }
+
+ if (!u)
+ return target_state::uptodate;
+
+ vector<const char*> args {"g++-4.9", "-std=c++11", "-o"};
+
+ args.push_back (e.path ().string ().c_str ());
+
+ for (const target& p: t.prerequisites ())
+ {
+ const obj& o (dynamic_cast<const obj&> (p));
+ args.push_back (o.path ().string ().c_str ());
+ }
+
+ args.push_back (nullptr);
+
+ cerr << "ld " << e << endl;
+
+ try
+ {
+ process pr (args.data ());
+
+ if (!pr.wait ())
+ return target_state::failed;
+
+ // Should we go to the filesystem and get the new mtime? We
+ // know the file has been modified, so instead just use the
+ // current clock time. It has the advantage of having the
+ // subseconds precision.
+ //
+ e.mtime (system_clock::now ());
+ return target_state::updated;
+ }
+ catch (const process_error& e)
+ {
+ cerr << "error: unable to execute '" << args[0] << "': " <<
+ e.what () << endl;
+
+ if (e.child ())
+ throw; // Let caller terminate us quickly without causing a scene.
+
+ return target_state::failed;
+ }
+ }
+ }
+}
diff --git a/build/cxx/target b/build/cxx/target
new file mode 100644
index 0000000..fe17c36
--- /dev/null
+++ b/build/cxx/target
@@ -0,0 +1,52 @@
+// file : build/cxx/target -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BUILD_CXX_TARGET
+#define BUILD_CXX_TARGET
+
+#include <build/target>
+
+namespace build
+{
+ namespace cxx
+ {
+ class hxx: public file
+ {
+ public:
+ using file::file;
+
+ public: virtual const type_info& type_id () const {return ti_;}
+ protected: static const type_info ti_;
+ };
+
+ class ixx: public file
+ {
+ public:
+ using file::file;
+
+ public: virtual const type_info& type_id () const {return ti_;}
+ protected: static const type_info ti_;
+ };
+
+ class txx: public file
+ {
+ public:
+ using file::file;
+
+ public: virtual const type_info& type_id () const {return ti_;}
+ protected: static const type_info ti_;
+ };
+
+ class cxx: public file
+ {
+ public:
+ using file::file;
+
+ public: virtual const type_info& type_id () const {return ti_;}
+ protected: static const type_info ti_;
+ };
+ }
+}
+
+#endif // BUILD_CXX_TARGET
diff --git a/build/cxx/target.cxx b/build/cxx/target.cxx
new file mode 100644
index 0000000..7171e30
--- /dev/null
+++ b/build/cxx/target.cxx
@@ -0,0 +1,20 @@
+// file : build/cxx/target.cxx -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#include <build/cxx/target>
+
+using namespace std;
+
+namespace build
+{
+ namespace cxx
+ {
+ using type_info = target::type_info;
+
+ const type_info hxx::ti_ {typeid (hxx), "hxx", &file::ti_};
+ const type_info ixx::ti_ {typeid (ixx), "ixx", &file::ti_};
+ const type_info txx::ti_ {typeid (txx), "txx", &file::ti_};
+ const type_info cxx::ti_ {typeid (cxx), "cxx", &file::ti_};
+ }
+}