aboutsummaryrefslogtreecommitdiff
path: root/build2/cc/common.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/cc/common.hxx')
-rw-r--r--build2/cc/common.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/build2/cc/common.hxx b/build2/cc/common.hxx
index 24262b7..abeadfc 100644
--- a/build2/cc/common.hxx
+++ b/build2/cc/common.hxx
@@ -115,7 +115,8 @@ namespace build2
const strings& tstd; // Translated x_std value (options).
- bool modules; // x.feaures.modules
+ bool modules; // x.features.modules
+ bool symexport; // x.features.symexport
const process_path* pkgconfig; // pkgconfig.path (can be NULL).
const dir_paths& sys_lib_dirs; // x.sys_lib_dirs
@@ -159,6 +160,7 @@ namespace build2
const target_triplet& tg,
const strings& std,
bool fm,
+ bool fs,
const process_path* pkgc,
const dir_paths& sld,
const dir_paths& sid,
@@ -175,6 +177,7 @@ namespace build2
ctg (tg), tsys (ctg.system), tclass (ctg.class_),
tstd (std),
modules (fm),
+ symexport (fs),
pkgconfig (pkgc), sys_lib_dirs (sld), sys_inc_dirs (sid),
x_src (src), x_mod (mod), x_hdr (hdr), x_inc (inc) {}
};