aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/c
diff options
context:
space:
mode:
Diffstat (limited to 'libbuild2/c')
-rw-r--r--libbuild2/c/init.cxx3
-rw-r--r--libbuild2/c/target.hxx1
2 files changed, 3 insertions, 1 deletions
diff --git a/libbuild2/c/init.cxx b/libbuild2/c/init.cxx
index c3d8174..1922a99 100644
--- a/libbuild2/c/init.cxx
+++ b/libbuild2/c/init.cxx
@@ -350,7 +350,7 @@ namespace build2
};
// Note that we include S{} here because .S files can include each other.
- // (And maybe from inline assember instrcutions?)
+ // (And maybe from inline assembler instructions?)
//
static const target_type* const inc[] =
{
@@ -358,6 +358,7 @@ namespace build2
&c::static_type,
&m::static_type,
&S::static_type,
+ &c_inc::static_type,
nullptr
};
diff --git a/libbuild2/c/target.hxx b/libbuild2/c/target.hxx
index 39fcf89..c9955e3 100644
--- a/libbuild2/c/target.hxx
+++ b/libbuild2/c/target.hxx
@@ -17,6 +17,7 @@ namespace build2
using cc::c;
using cc::m;
using cc::S;
+ using cc::c_inc;
}
}