summaryrefslogtreecommitdiff
path: root/src/task_ld.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/task_ld.h')
-rw-r--r--src/task_ld.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/task_ld.h b/src/task_ld.h
index 8625075..348d23b 100644
--- a/src/task_ld.h
+++ b/src/task_ld.h
@@ -21,7 +21,8 @@ public:
const Settings& settings,
const std::string& target,
const std::vector<std::string>& objects,
- const std::string& _sourceDir);
+ const std::string& _sourceDir,
+ bool is_self);
virtual ~TaskLD() = default;
bool dirtyInner() override;
@@ -47,4 +48,5 @@ private:
const BuildConfiguration& config;
const Settings& settings;
std::string sourceDir;
+ bool is_self;
};