summaryrefslogtreecommitdiff
path: root/src/task_ld.cc
blob: 2a3c8c436b4514ec7e31ba4e6d7ecad9160714ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
#include "task_ld.h"

#include <iostream>
#include <fstream>

#include "libctor.h"
#include "settings.h"
#include "execute.h"

namespace
{
std::string readFile(const std::string &fileName)
{
	std::ifstream ifs(fileName.c_str(), std::ios::in | std::ios::binary | std::ios::ate);

	std::ifstream::pos_type fileSize = ifs.tellg();
	ifs.seekg(0, std::ios::beg);

	std::vector<char> bytes(fileSize);
	ifs.read(bytes.data(), fileSize);

	return std::string(bytes.data(), fileSize);
}
} // namespace ::

TaskLD::TaskLD(const BuildConfiguration& config,
               const Settings& settings,
               const std::string& target,
               const std::vector<std::string>& objects,
               const std::string& sourcePath)
	: Task(config)
	, config(config)
	, settings(settings)
{
	target_type = config.type;
	if(target_type == TargetType::Auto)
	{
		target_type = TargetType::Executable;
	}

	std::filesystem::path base = settings.builddir;
	base /= sourcePath;
	std::filesystem::create_directories(base);

	targetFile = base / target;
	for(const auto& object : objects)
	{
		std::filesystem::path objectFile = object;
		objectFiles.push_back(objectFile);
		dependsStr.push_back(objectFile.string());
	}

	for(const auto& dep : config.depends)
	{
		std::filesystem::path depFile = settings.builddir;
		depFile /= dep;
		depFiles.push_back(depFile);
	}

	flagsFile = base / targetFile.stem();
	flagsFile += ".flags";

	source_language = Language::C;
	for(const auto& source : config.sources)
	{
		std::filesystem::path sourceFile(source.file);
		if(sourceFile.extension().string() != ".c")
		{
			source_language = Language::Cpp;
		}
	}
}

bool TaskLD::dirtyInner()
{
	if(!std::filesystem::exists(targetFile))
	{
		return true;
	}

	if(!std::filesystem::exists(flagsFile))
	{
		return true;
	}

	for(const auto& objectFile : objectFiles)
	{
		if(std::filesystem::last_write_time(targetFile) <=
		   std::filesystem::last_write_time(objectFile))
		{
			return true;
		}
	}

	{
		auto lastFlags = readFile(flagsFile.string());
		if(flagsString() != lastFlags)
		{
			//std::cout << "The compiler flags changed\n";
			return true;
		}
	}

	return false;
}

int TaskLD::runInner()
{
	std::string objectlist;
	for(const auto& objectFile : objectFiles)
	{
		if(!objectlist.empty())
		{
			objectlist += " ";
		}
		objectlist += objectFile.string();
	}

	std::vector<std::string> args;
	for(const auto& objectFile : objectFiles)
	{
		args.push_back(objectFile.string());
	}

	for(const auto& depFile : depFiles)
	{
		if(depFile.extension() == ".so")
		{
			args.push_back(std::string("-L") + settings.builddir);
			auto lib = depFile.stem().string().substr(3); // strip 'lib' prefix
			args.push_back(std::string("-l") + lib);
		}
		else if(depFile.extension() == ".a")
		{
			args.push_back(depFile.string());
		}
	}

	for(const auto& flag : config.ldflags)
	{
		args.push_back(flag);
	}
	args.push_back("-o");
	args.push_back(targetFile.string());

	{ // Write flags to file.
		std::ofstream flagsStream(flagsFile);
		flagsStream << flagsString();
	}

	if(settings.verbose == 0)
	{
		std::cout << "LD => " << targetFile.string() << "\n";
	}

	auto tool = compiler();
	return execute(tool, args, settings.verbose > 0);
}

int TaskLD::clean()
{
	if(std::filesystem::exists(targetFile))
	{
		std::cout << "Removing " << targetFile.string() << "\n";
		std::filesystem::remove(targetFile);
	}

	if(std::filesystem::exists(flagsFile))
	{
		std::cout << "Removing " << flagsFile.string() << "\n";
		std::filesystem::remove(flagsFile);
	}

	return 0;
}

std::vector<std::string> TaskLD::depends() const
{
	std::vector<std::string> deps;
	for(const auto& objectFile : objectFiles)
	{
		deps.push_back(objectFile.string());
	}

	for(const auto& depFile : depFiles)
	{
		deps.push_back(depFile.string());
	}

	return deps;
}

std::string TaskLD::target() const
{
	return targetFile.string();
}

bool TaskLD::derived() const
{
	return false;
}

std::string TaskLD::flagsString() const
{
	std::string flagsStr;
	for(const auto& flag : config.ldflags)
	{
		if(flag != config.ldflags[0])
		{
			flagsStr += " ";
		}
		flagsStr += flag;
	}
	flagsStr += "\n";

	for(const auto& dep : config.depends)
	{
		if(dep != config.depends[0])
		{
			flagsStr += " ";
		}
		flagsStr += dep;
	}

	auto deps = depends();
	for(const auto& dep : deps)
	{
		flagsStr += " ";
		flagsStr += dep;
	}

	return flagsStr;
}