summaryrefslogtreecommitdiff
path: root/src/task_ld.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2022-08-21 12:38:35 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2022-08-21 12:50:45 +0200
commitc8e7d8922310108f2d46189a8f48abcb68e72534 (patch)
treed29ae8b8da4e10a88344f0412cc7bb3ea0539344 /src/task_ld.h
parent33f70be85ef83b0ebeaa6755b67558ae2f5ae8e6 (diff)
WIP: Deferred linking of self
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;
};