diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2022-05-29 16:08:31 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2022-06-09 22:15:42 +0200 |
commit | 80db51ae3f7d5fbfb52eee4505f615ea4edba62d (patch) | |
tree | 8460f40daf54d253bb48fec3085fc8384313941e /src/task_so.cc | |
parent | b74bd9e24e1205b7449404fd05172664b211d82c (diff) |
Use derived dependency task targets instead of 'raw' depends strings for linkage.
Diffstat (limited to 'src/task_so.cc')
-rw-r--r-- | src/task_so.cc | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/src/task_so.cc b/src/task_so.cc index 430c3e1..44340dd 100644 --- a/src/task_so.cc +++ b/src/task_so.cc @@ -81,16 +81,6 @@ bool TaskSO::dirtyInner() int TaskSO::runInner() { - std::string objectlist; - for(const auto& objectFile : objectFiles) - { - if(!objectlist.empty()) - { - objectlist += " "; - } - objectlist += objectFile.string(); - } - std::vector<std::string> args; args.push_back("-fPIC"); @@ -99,9 +89,9 @@ int TaskSO::runInner() args.push_back("-o"); args.push_back(targetFile.string()); - for(const auto& objectFile : objectFiles) + for(const auto& task : getDependsTasks()) { - args.push_back(objectFile.string()); + args.push_back(task->target()); } for(const auto& depFile : depFiles) |