-
-
Notifications
You must be signed in to change notification settings - Fork 265
/
Copy pathldc-build-plugin.d.in
239 lines (196 loc) · 7.04 KB
/
ldc-build-plugin.d.in
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
237
238
239
module ldcBuildRuntime;
import core.stdc.stdlib : exit;
import std.algorithm;
import std.array;
import std.file;
import std.path;
import std.stdio;
version (OSX)
version = Darwin;
else version (iOS)
version = Darwin;
else version (TVOS)
version = Darwin;
else version (WatchOS)
version = Darwin;
struct Config {
string ldcExecutable;
string buildDir;
string ldcSourceDir;
string[] dFlags;
string[] linkerFlags;
bool verbose;
string[] ldcArgs;
string userWorkDir;
}
version (Windows) enum exeSuffix = ".exe";
else enum exeSuffix = "";
string defaultLdcExecutable;
Config config;
int main(string[] args) {
enum exeName = "ldc2" ~ exeSuffix;
defaultLdcExecutable = buildPath(thisExePath.dirName, exeName);
config.userWorkDir = getcwd();
parseCommandLine(args);
findLdcExecutable();
prepareBuildDir();
prepareLdcSource();
build();
if (config.verbose)
writefln(".: Plugin library built successfully.");
return 0;
}
void findLdcExecutable() {
if (config.ldcExecutable !is null) {
if (!config.ldcExecutable.exists) {
writefln(".: Error: LDC executable not found: %s", config.ldcExecutable);
exit(1);
}
config.ldcExecutable = config.ldcExecutable.absolutePath;
return;
}
if (defaultLdcExecutable.exists) {
config.ldcExecutable = defaultLdcExecutable;
return;
}
writefln(".: Please specify LDC executable via '--ldc=<path/to/ldc2%s>'. Aborting.", exeSuffix);
exit(1);
}
void prepareBuildDir() {
if (config.buildDir is null)
config.buildDir = "ldc-build-plugin.tmp";
if (!config.buildDir.exists) {
if (config.verbose)
writefln(".: Creating build directory: %s", config.buildDir);
mkdirRecurse(config.buildDir);
}
config.buildDir = config.buildDir.absolutePath;
}
void prepareLdcSource() {
if (config.ldcSourceDir !is null) {
if (!config.ldcSourceDir.exists) {
writefln(".: Error: LDC source directory not found: %s", config.ldcSourceDir);
exit(1);
}
config.ldcSourceDir = config.ldcSourceDir.absolutePath;
return;
}
const ldcSrc = "ldc-src";
config.ldcSourceDir = buildPath(config.buildDir, ldcSrc);
if (buildPath(config.ldcSourceDir, "dmd").exists)
return;
// Download & extract LDC source archive if <buildDir>/ldc-src/dmd doesn't exist yet.
const wd = WorkingDirScope(config.buildDir);
auto ldcVersion = "@LDC_VERSION@";
void removeVersionSuffix(string beginning) {
const suffixIndex = ldcVersion.countUntil(beginning);
if (suffixIndex > 0)
ldcVersion = ldcVersion[0 .. suffixIndex];
}
removeVersionSuffix("git-");
removeVersionSuffix("-dirty");
import std.format : format;
const localArchiveFile = "ldc-src.zip";
if (!localArchiveFile.exists) {
const url = "https://github.com/ldc-developers/ldc/releases/download/v%1$s/ldc-%1$s-src.zip".format(ldcVersion);
writefln(".: Downloading LDC source archive: %s", url);
import std.net.curl : download;
download(url, localArchiveFile);
if (getSize(localArchiveFile) < 1_048_576) {
writefln(".: Error: downloaded file is corrupt; has LDC v%s been released?", ldcVersion);
writefln(" You can work around this by manually downloading a src package and moving it to: %s",
buildPath(config.buildDir, localArchiveFile));
localArchiveFile.remove;
exit(1);
}
}
extractZipArchive(localArchiveFile, ".");
rename("ldc-%1$s-src".format(ldcVersion), ldcSrc);
}
void build() {
string[] args = [
config.ldcExecutable,
"-I" ~ config.ldcSourceDir,
"--d-version=IN_LLVM",
"-J" ~ buildPath(config.ldcSourceDir, "dmd", "res"),
"--shared",
"--defaultlib=",
"--od=" ~ config.buildDir
];
version (Darwin) {
args ~= "-L-Wl,-undefined,dynamic_lookup";
}
args ~= config.ldcArgs;
exec(args);
}
/*** helpers ***/
struct WorkingDirScope {
string originalPath;
this(string path) { originalPath = getcwd(); chdir(path); }
~this() { chdir(originalPath); }
}
void exec(string[] command) {
import std.process;
static string quoteIfNeeded(string arg) {
const r = arg.findAmong(" ;");
return !r.length ? arg : "'" ~ arg ~ "'";
}
string flattened = command.map!quoteIfNeeded.join(" ");
if (config.verbose) {
writefln(".: Invoking: %s", flattened);
stdout.flush();
}
auto pid = spawnProcess(command, null, std.process.Config.none, config.userWorkDir);
const exitStatus = wait(pid);
if (exitStatus != 0) {
if (config.verbose)
writeln(".: Error: command failed with status ", exitStatus);
exit(1);
}
}
void extractZipArchive(string archivePath, string destination) {
import std.zip;
auto archive = new ZipArchive(std.file.read(archivePath));
foreach (name, am; archive.directory) {
const destPath = buildNormalizedPath(destination, name);
const isDir = name.endsWith("/");
const destDir = isDir ? destPath : destPath.dirName;
mkdirRecurse(destDir);
if (!isDir)
std.file.write(destPath, archive.expand(am));
}
}
void parseCommandLine(string[] args) {
import std.getopt;
try {
arraySep = ";";
auto helpInformation = getopt(
args,
std.getopt.config.passThrough,
"ldc", "Path to LDC executable (default: '" ~ defaultLdcExecutable ~ "')", &config.ldcExecutable,
"buildDir", "Path to build directory (default: './ldc-build-plugin.tmp')", &config.buildDir,
"ldcSrcDir", "Path to LDC source directory (if not specified: downloads & extracts source archive into '<buildDir>/ldc-src')", &config.ldcSourceDir,
"dFlags", "Extra LDC flags for the D module (separated by ';')", &config.dFlags,
"verbose|v", "Verbose output (e.g. showing the compile commandline)", &config.verbose,
"linkerFlags", "Extra C linker flags for shared libraries and testrunner executables (separated by ';')", &config.linkerFlags
);
// getopt() has removed all consumed args from `args`
// Remaining arguments are interpreted as LDC arguments (e.g. plugin source files and -of=<output file>).
config.ldcArgs = args[1 .. $];
if (helpInformation.helpWanted) {
defaultGetoptPrinter(
"OVERVIEW: Builds a Semantic Analysis plugin for LDC.\n\n" ~
"USAGE: ldc-build-plugin [options] sourcefiles... -of=<output file>\n\n" ~
"OPTIONS:\n" ~
" Unrecognized options are passed through to LDC.",
helpInformation.options
);
exit(1);
}
}
catch (Exception e) {
writefln("Error processing command line arguments: %s", e.msg);
writeln("Use '--help' for help.");
exit(1);
}
}