2019-03-02 21:46:04 +00:00
|
|
|
const std = @import("std.zig");
|
2017-05-01 17:12:38 +00:00
|
|
|
const builtin = @import("builtin");
|
2017-10-31 08:47:55 +00:00
|
|
|
const io = std.io;
|
|
|
|
const mem = std.mem;
|
|
|
|
const debug = std.debug;
|
2017-04-13 21:21:00 +00:00
|
|
|
const assert = debug.assert;
|
2017-10-31 08:47:55 +00:00
|
|
|
const warn = std.debug.warn;
|
|
|
|
const ArrayList = std.ArrayList;
|
|
|
|
const HashMap = std.HashMap;
|
|
|
|
const Allocator = mem.Allocator;
|
|
|
|
const os = std.os;
|
2017-04-02 22:19:59 +00:00
|
|
|
const StdIo = os.ChildProcess.StdIo;
|
|
|
|
const Term = os.ChildProcess.Term;
|
2017-10-31 08:47:55 +00:00
|
|
|
const BufSet = std.BufSet;
|
|
|
|
const BufMap = std.BufMap;
|
|
|
|
const fmt_lib = std.fmt;
|
2017-03-31 09:48:15 +00:00
|
|
|
|
2019-02-26 23:10:40 +00:00
|
|
|
pub const FmtStep = @import("build/fmt.zig").FmtStep;
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
pub const Builder = struct {
|
2017-04-17 10:45:44 +00:00
|
|
|
uninstall_tls: TopLevelStep,
|
2017-05-01 01:03:23 +00:00
|
|
|
install_tls: TopLevelStep,
|
2017-04-17 10:45:44 +00:00
|
|
|
have_uninstall_step: bool,
|
2017-05-01 01:03:23 +00:00
|
|
|
have_install_step: bool,
|
2018-05-31 14:56:59 +00:00
|
|
|
allocator: *Allocator,
|
2017-05-04 18:05:06 +00:00
|
|
|
lib_paths: ArrayList([]const u8),
|
|
|
|
include_paths: ArrayList([]const u8),
|
|
|
|
rpaths: ArrayList([]const u8),
|
2017-04-06 09:34:04 +00:00
|
|
|
user_input_options: UserInputOptionsMap,
|
|
|
|
available_options_map: AvailableOptionsMap,
|
2017-05-04 18:05:06 +00:00
|
|
|
available_options_list: ArrayList(AvailableOption),
|
2017-04-06 09:34:04 +00:00
|
|
|
verbose: bool,
|
2017-10-26 03:10:41 +00:00
|
|
|
verbose_tokenize: bool,
|
|
|
|
verbose_ast: bool,
|
|
|
|
verbose_link: bool,
|
2019-02-25 16:37:54 +00:00
|
|
|
verbose_cc: bool,
|
2017-10-26 03:10:41 +00:00
|
|
|
verbose_ir: bool,
|
|
|
|
verbose_llvm_ir: bool,
|
|
|
|
verbose_cimport: bool,
|
2017-04-06 09:34:04 +00:00
|
|
|
invalid_user_input: bool,
|
2017-04-13 21:21:00 +00:00
|
|
|
zig_exe: []const u8,
|
2018-05-31 14:56:59 +00:00
|
|
|
default_step: *Step,
|
2018-11-08 02:22:42 +00:00
|
|
|
env_map: *BufMap,
|
2018-05-31 14:56:59 +00:00
|
|
|
top_level_steps: ArrayList(*TopLevelStep),
|
2017-04-13 21:21:00 +00:00
|
|
|
prefix: []const u8,
|
2017-12-24 01:21:57 +00:00
|
|
|
search_prefixes: ArrayList([]const u8),
|
2017-04-17 10:45:44 +00:00
|
|
|
lib_dir: []const u8,
|
2017-05-01 01:03:23 +00:00
|
|
|
exe_dir: []const u8,
|
2017-05-04 18:05:06 +00:00
|
|
|
installed_files: ArrayList([]const u8),
|
2017-04-19 05:13:15 +00:00
|
|
|
build_root: []const u8,
|
2017-04-28 06:22:12 +00:00
|
|
|
cache_root: []const u8,
|
2017-05-10 01:20:09 +00:00
|
|
|
release_mode: ?builtin.Mode,
|
2017-04-06 09:34:04 +00:00
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
pub const CStd = enum {
|
2018-09-06 20:29:35 +00:00
|
|
|
C89,
|
|
|
|
C99,
|
|
|
|
C11,
|
|
|
|
};
|
|
|
|
|
2017-04-06 09:34:04 +00:00
|
|
|
const UserInputOptionsMap = HashMap([]const u8, UserInputOption, mem.hash_slice_u8, mem.eql_slice_u8);
|
|
|
|
const AvailableOptionsMap = HashMap([]const u8, AvailableOption, mem.hash_slice_u8, mem.eql_slice_u8);
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
const AvailableOption = struct {
|
2017-04-06 09:34:04 +00:00
|
|
|
name: []const u8,
|
|
|
|
type_id: TypeId,
|
|
|
|
description: []const u8,
|
|
|
|
};
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
const UserInputOption = struct {
|
2017-04-06 09:34:04 +00:00
|
|
|
name: []const u8,
|
|
|
|
value: UserValue,
|
|
|
|
used: bool,
|
|
|
|
};
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
const UserValue = union(enum) {
|
2017-12-04 01:43:56 +00:00
|
|
|
Flag: void,
|
2017-04-06 09:34:04 +00:00
|
|
|
Scalar: []const u8,
|
2017-05-04 18:05:06 +00:00
|
|
|
List: ArrayList([]const u8),
|
2017-04-06 09:34:04 +00:00
|
|
|
};
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
const TypeId = enum {
|
2017-04-06 09:34:04 +00:00
|
|
|
Bool,
|
|
|
|
Int,
|
|
|
|
Float,
|
|
|
|
String,
|
|
|
|
List,
|
|
|
|
};
|
2017-03-31 09:48:15 +00:00
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
const TopLevelStep = struct {
|
2017-04-13 21:21:00 +00:00
|
|
|
step: Step,
|
|
|
|
description: []const u8,
|
|
|
|
};
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn init(allocator: *Allocator, zig_exe: []const u8, build_root: []const u8, cache_root: []const u8) Builder {
|
2019-02-03 21:13:28 +00:00
|
|
|
const env_map = allocator.create(BufMap) catch unreachable;
|
2018-10-15 22:23:47 +00:00
|
|
|
env_map.* = os.getEnvMap(allocator) catch unreachable;
|
2018-11-13 13:08:37 +00:00
|
|
|
var self = Builder{
|
2017-04-19 05:13:15 +00:00
|
|
|
.zig_exe = zig_exe,
|
|
|
|
.build_root = build_root,
|
2018-01-09 05:07:01 +00:00
|
|
|
.cache_root = os.path.relative(allocator, build_root, cache_root) catch unreachable,
|
2017-04-06 09:34:04 +00:00
|
|
|
.verbose = false,
|
2017-10-26 03:10:41 +00:00
|
|
|
.verbose_tokenize = false,
|
|
|
|
.verbose_ast = false,
|
|
|
|
.verbose_link = false,
|
2019-02-25 16:37:54 +00:00
|
|
|
.verbose_cc = false,
|
2017-10-26 03:10:41 +00:00
|
|
|
.verbose_ir = false,
|
|
|
|
.verbose_llvm_ir = false,
|
|
|
|
.verbose_cimport = false,
|
2017-04-06 09:34:04 +00:00
|
|
|
.invalid_user_input = false,
|
2017-03-31 09:48:15 +00:00
|
|
|
.allocator = allocator,
|
2017-05-04 18:05:06 +00:00
|
|
|
.lib_paths = ArrayList([]const u8).init(allocator),
|
|
|
|
.include_paths = ArrayList([]const u8).init(allocator),
|
|
|
|
.rpaths = ArrayList([]const u8).init(allocator),
|
2017-04-06 09:34:04 +00:00
|
|
|
.user_input_options = UserInputOptionsMap.init(allocator),
|
|
|
|
.available_options_map = AvailableOptionsMap.init(allocator),
|
2017-05-04 18:05:06 +00:00
|
|
|
.available_options_list = ArrayList(AvailableOption).init(allocator),
|
2018-05-31 14:56:59 +00:00
|
|
|
.top_level_steps = ArrayList(*TopLevelStep).init(allocator),
|
2017-04-13 21:21:00 +00:00
|
|
|
.default_step = undefined,
|
2018-10-15 22:23:47 +00:00
|
|
|
.env_map = env_map,
|
2017-04-13 21:21:00 +00:00
|
|
|
.prefix = undefined,
|
2017-12-24 01:21:57 +00:00
|
|
|
.search_prefixes = ArrayList([]const u8).init(allocator),
|
2017-04-17 10:45:44 +00:00
|
|
|
.lib_dir = undefined,
|
2017-05-01 01:03:23 +00:00
|
|
|
.exe_dir = undefined,
|
2017-05-04 18:05:06 +00:00
|
|
|
.installed_files = ArrayList([]const u8).init(allocator),
|
2018-11-13 13:08:37 +00:00
|
|
|
.uninstall_tls = TopLevelStep{
|
2017-04-17 10:45:44 +00:00
|
|
|
.step = Step.init("uninstall", allocator, makeUninstall),
|
|
|
|
.description = "Remove build artifacts from prefix path",
|
|
|
|
},
|
|
|
|
.have_uninstall_step = false,
|
2018-11-13 13:08:37 +00:00
|
|
|
.install_tls = TopLevelStep{
|
2017-05-01 01:03:23 +00:00
|
|
|
.step = Step.initNoOp("install", allocator),
|
|
|
|
.description = "Copy build artifacts to prefix path",
|
|
|
|
},
|
|
|
|
.have_install_step = false,
|
2017-05-10 01:20:09 +00:00
|
|
|
.release_mode = null,
|
2017-04-04 05:52:20 +00:00
|
|
|
};
|
|
|
|
self.processNixOSEnvVars();
|
2017-04-13 21:21:00 +00:00
|
|
|
self.default_step = self.step("default", "Build the project");
|
2017-04-04 05:52:20 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn deinit(self: *Builder) void {
|
2017-04-04 05:52:20 +00:00
|
|
|
self.lib_paths.deinit();
|
|
|
|
self.include_paths.deinit();
|
|
|
|
self.rpaths.deinit();
|
2017-04-13 21:21:00 +00:00
|
|
|
self.env_map.deinit();
|
|
|
|
self.top_level_steps.deinit();
|
2017-03-31 09:48:15 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn setInstallPrefix(self: *Builder, maybe_prefix: ?[]const u8) void {
|
2018-06-10 05:13:51 +00:00
|
|
|
self.prefix = maybe_prefix orelse "/usr/local"; // TODO better default
|
2019-02-07 05:42:41 +00:00
|
|
|
self.lib_dir = os.path.join(self.allocator, [][]const u8{ self.prefix, "lib" }) catch unreachable;
|
|
|
|
self.exe_dir = os.path.join(self.allocator, [][]const u8{ self.prefix, "bin" }) catch unreachable;
|
2017-03-31 09:48:15 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addExecutable(self: *Builder, name: []const u8, root_src: ?[]const u8) *LibExeObjStep {
|
2018-12-01 06:21:59 +00:00
|
|
|
return LibExeObjStep.createExecutable(self, name, root_src, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn addStaticExecutable(self: *Builder, name: []const u8, root_src: ?[]const u8) *LibExeObjStep {
|
|
|
|
return LibExeObjStep.createExecutable(self, name, root_src, true);
|
2017-03-31 09:48:15 +00:00
|
|
|
}
|
|
|
|
|
2019-02-25 16:37:54 +00:00
|
|
|
pub fn addObject(self: *Builder, name: []const u8, root_src: ?[]const u8) *LibExeObjStep {
|
2017-04-26 23:17:05 +00:00
|
|
|
return LibExeObjStep.createObject(self, name, root_src);
|
2017-04-21 05:56:12 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 22:23:47 +00:00
|
|
|
pub fn addSharedLibrary(self: *Builder, name: []const u8, root_src: ?[]const u8, ver: Version) *LibExeObjStep {
|
2017-04-26 23:17:05 +00:00
|
|
|
return LibExeObjStep.createSharedLibrary(self, name, root_src, ver);
|
2017-04-21 05:56:12 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addStaticLibrary(self: *Builder, name: []const u8, root_src: ?[]const u8) *LibExeObjStep {
|
2017-04-26 23:17:05 +00:00
|
|
|
return LibExeObjStep.createStaticLibrary(self, name, root_src);
|
2017-04-21 05:56:12 +00:00
|
|
|
}
|
|
|
|
|
2019-02-25 16:37:54 +00:00
|
|
|
pub fn addTest(self: *Builder, root_src: []const u8) *LibExeObjStep {
|
|
|
|
return LibExeObjStep.createTest(self, "test", root_src);
|
2017-04-19 05:13:15 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addAssemble(self: *Builder, name: []const u8, src: []const u8) *LibExeObjStep {
|
2017-04-26 23:17:05 +00:00
|
|
|
const obj_step = LibExeObjStep.createObject(self, name, null);
|
|
|
|
obj_step.addAssemblyFile(src);
|
|
|
|
return obj_step;
|
2017-04-19 18:00:12 +00:00
|
|
|
}
|
|
|
|
|
2017-09-26 05:01:49 +00:00
|
|
|
/// ::argv is copied.
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addCommand(self: *Builder, cwd: ?[]const u8, env_map: *const BufMap, argv: []const []const u8) *CommandStep {
|
2017-09-26 05:01:49 +00:00
|
|
|
return CommandStep.create(self, cwd, env_map, argv);
|
2017-04-13 21:21:00 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addWriteFile(self: *Builder, file_path: []const u8, data: []const u8) *WriteFileStep {
|
2019-02-03 21:13:28 +00:00
|
|
|
const write_file_step = self.allocator.create(WriteFileStep) catch unreachable;
|
|
|
|
write_file_step.* = WriteFileStep.init(self, file_path, data);
|
2017-04-19 05:13:15 +00:00
|
|
|
return write_file_step;
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addLog(self: *Builder, comptime format: []const u8, args: ...) *LogStep {
|
2017-04-19 19:38:12 +00:00
|
|
|
const data = self.fmt(format, args);
|
2019-02-03 21:13:28 +00:00
|
|
|
const log_step = self.allocator.create(LogStep) catch unreachable;
|
|
|
|
log_step.* = LogStep.init(self, data);
|
2017-04-19 05:13:15 +00:00
|
|
|
return log_step;
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addRemoveDirTree(self: *Builder, dir_path: []const u8) *RemoveDirStep {
|
2019-02-03 21:13:28 +00:00
|
|
|
const remove_dir_step = self.allocator.create(RemoveDirStep) catch unreachable;
|
|
|
|
remove_dir_step.* = RemoveDirStep.init(self, dir_path);
|
2017-04-20 06:26:36 +00:00
|
|
|
return remove_dir_step;
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:10:40 +00:00
|
|
|
pub fn addFmt(self: *Builder, paths: []const []const u8) *FmtStep {
|
|
|
|
return FmtStep.create(self, paths);
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn version(self: *const Builder, major: u32, minor: u32, patch: u32) Version {
|
2018-11-13 13:08:37 +00:00
|
|
|
return Version{
|
2017-04-13 21:21:00 +00:00
|
|
|
.major = major,
|
|
|
|
.minor = minor,
|
|
|
|
.patch = patch,
|
2017-12-22 05:50:30 +00:00
|
|
|
};
|
2017-04-13 21:21:00 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addCIncludePath(self: *Builder, path: []const u8) void {
|
2018-01-09 05:07:01 +00:00
|
|
|
self.include_paths.append(path) catch unreachable;
|
2017-04-04 05:52:20 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addRPath(self: *Builder, path: []const u8) void {
|
2018-01-09 05:07:01 +00:00
|
|
|
self.rpaths.append(path) catch unreachable;
|
2017-04-04 05:52:20 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addLibPath(self: *Builder, path: []const u8) void {
|
2018-01-09 05:07:01 +00:00
|
|
|
self.lib_paths.append(path) catch unreachable;
|
2017-04-04 05:52:20 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn make(self: *Builder, step_names: []const []const u8) !void {
|
2018-09-11 22:15:08 +00:00
|
|
|
try self.makePath(self.cache_root);
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
var wanted_steps = ArrayList(*Step).init(self.allocator);
|
2017-04-13 21:21:00 +00:00
|
|
|
defer wanted_steps.deinit();
|
2017-04-03 08:58:19 +00:00
|
|
|
|
2017-04-13 21:21:00 +00:00
|
|
|
if (step_names.len == 0) {
|
2018-06-15 17:49:39 +00:00
|
|
|
try wanted_steps.append(self.default_step);
|
2017-04-13 21:21:00 +00:00
|
|
|
} else {
|
|
|
|
for (step_names) |step_name| {
|
2018-01-07 21:51:46 +00:00
|
|
|
const s = try self.getTopLevelStepByName(step_name);
|
2018-01-15 05:01:02 +00:00
|
|
|
try wanted_steps.append(s);
|
2017-04-06 09:34:04 +00:00
|
|
|
}
|
2017-04-13 21:21:00 +00:00
|
|
|
}
|
2017-04-06 09:34:04 +00:00
|
|
|
|
2017-04-13 21:21:00 +00:00
|
|
|
for (wanted_steps.toSliceConst()) |s| {
|
2018-01-07 21:51:46 +00:00
|
|
|
try self.makeOneStep(s);
|
2017-04-13 21:21:00 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-03 08:58:19 +00:00
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn getInstallStep(self: *Builder) *Step {
|
2018-05-10 04:29:49 +00:00
|
|
|
if (self.have_install_step) return &self.install_tls.step;
|
2017-05-01 01:03:23 +00:00
|
|
|
|
2018-01-09 05:07:01 +00:00
|
|
|
self.top_level_steps.append(&self.install_tls) catch unreachable;
|
2017-05-01 01:03:23 +00:00
|
|
|
self.have_install_step = true;
|
|
|
|
return &self.install_tls.step;
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn getUninstallStep(self: *Builder) *Step {
|
2018-05-10 04:29:49 +00:00
|
|
|
if (self.have_uninstall_step) return &self.uninstall_tls.step;
|
2017-04-17 10:45:44 +00:00
|
|
|
|
2018-01-09 05:07:01 +00:00
|
|
|
self.top_level_steps.append(&self.uninstall_tls) catch unreachable;
|
2017-04-17 10:45:44 +00:00
|
|
|
self.have_uninstall_step = true;
|
|
|
|
return &self.uninstall_tls.step;
|
|
|
|
}
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
fn makeUninstall(uninstall_step: *Step) anyerror!void {
|
2017-04-19 05:13:15 +00:00
|
|
|
const uninstall_tls = @fieldParentPtr(TopLevelStep, "step", uninstall_step);
|
|
|
|
const self = @fieldParentPtr(Builder, "uninstall_tls", uninstall_tls);
|
2017-04-17 10:45:44 +00:00
|
|
|
|
|
|
|
for (self.installed_files.toSliceConst()) |installed_file| {
|
2017-05-01 01:03:23 +00:00
|
|
|
if (self.verbose) {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("rm {}\n", installed_file);
|
2017-05-01 01:03:23 +00:00
|
|
|
}
|
2018-08-21 20:07:28 +00:00
|
|
|
_ = os.deleteFile(installed_file);
|
2017-04-17 10:45:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO remove empty directories
|
|
|
|
}
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
fn makeOneStep(self: *Builder, s: *Step) anyerror!void {
|
2017-04-13 21:21:00 +00:00
|
|
|
if (s.loop_flag) {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Dependency loop detected:\n {}\n", s.name);
|
2017-04-13 21:21:00 +00:00
|
|
|
return error.DependencyLoopDetected;
|
|
|
|
}
|
|
|
|
s.loop_flag = true;
|
2017-04-03 08:58:19 +00:00
|
|
|
|
2017-04-13 21:21:00 +00:00
|
|
|
for (s.dependencies.toSlice()) |dep| {
|
2018-01-07 22:28:20 +00:00
|
|
|
self.makeOneStep(dep) catch |err| {
|
2017-04-13 21:21:00 +00:00
|
|
|
if (err == error.DependencyLoopDetected) {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn(" {}\n", s.name);
|
2017-04-04 05:52:20 +00:00
|
|
|
}
|
2017-04-13 21:21:00 +00:00
|
|
|
return err;
|
|
|
|
};
|
|
|
|
}
|
2017-04-04 05:52:20 +00:00
|
|
|
|
2017-04-13 21:21:00 +00:00
|
|
|
s.loop_flag = false;
|
2017-04-04 05:52:20 +00:00
|
|
|
|
2018-01-07 21:51:46 +00:00
|
|
|
try s.make();
|
2017-04-13 21:21:00 +00:00
|
|
|
}
|
2017-04-04 05:52:20 +00:00
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
fn getTopLevelStepByName(self: *Builder, name: []const u8) !*Step {
|
2017-04-13 21:21:00 +00:00
|
|
|
for (self.top_level_steps.toSliceConst()) |top_level_step| {
|
|
|
|
if (mem.eql(u8, top_level_step.step.name, name)) {
|
|
|
|
return &top_level_step.step;
|
2017-04-06 09:34:04 +00:00
|
|
|
}
|
2017-04-04 05:52:20 +00:00
|
|
|
}
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Cannot run step '{}' because it does not exist\n", name);
|
2017-04-13 21:21:00 +00:00
|
|
|
return error.InvalidStepName;
|
2017-04-04 05:52:20 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
fn processNixOSEnvVars(self: *Builder) void {
|
2017-10-15 05:23:10 +00:00
|
|
|
if (os.getEnvVarOwned(self.allocator, "NIX_CFLAGS_COMPILE")) |nix_cflags_compile| {
|
2019-02-04 20:24:06 +00:00
|
|
|
var it = mem.tokenize(nix_cflags_compile, " ");
|
2017-04-04 05:52:20 +00:00
|
|
|
while (true) {
|
2018-06-10 05:13:51 +00:00
|
|
|
const word = it.next() orelse break;
|
2017-04-04 05:52:20 +00:00
|
|
|
if (mem.eql(u8, word, "-isystem")) {
|
2018-06-10 05:13:51 +00:00
|
|
|
const include_path = it.next() orelse {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Expected argument after -isystem in NIX_CFLAGS_COMPILE\n");
|
2017-04-04 05:52:20 +00:00
|
|
|
break;
|
|
|
|
};
|
|
|
|
self.addCIncludePath(include_path);
|
|
|
|
} else {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Unrecognized C flag from NIX_CFLAGS_COMPILE: {}\n", word);
|
2017-04-04 05:52:20 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-10-15 05:23:10 +00:00
|
|
|
} else |err| {
|
|
|
|
assert(err == error.EnvironmentVariableNotFound);
|
2017-04-04 05:52:20 +00:00
|
|
|
}
|
2017-10-15 05:23:10 +00:00
|
|
|
if (os.getEnvVarOwned(self.allocator, "NIX_LDFLAGS")) |nix_ldflags| {
|
2019-02-04 20:24:06 +00:00
|
|
|
var it = mem.tokenize(nix_ldflags, " ");
|
2017-04-04 05:52:20 +00:00
|
|
|
while (true) {
|
2018-06-10 05:13:51 +00:00
|
|
|
const word = it.next() orelse break;
|
2017-04-04 05:52:20 +00:00
|
|
|
if (mem.eql(u8, word, "-rpath")) {
|
2018-06-10 05:13:51 +00:00
|
|
|
const rpath = it.next() orelse {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Expected argument after -rpath in NIX_LDFLAGS\n");
|
2017-04-04 05:52:20 +00:00
|
|
|
break;
|
|
|
|
};
|
|
|
|
self.addRPath(rpath);
|
|
|
|
} else if (word.len > 2 and word[0] == '-' and word[1] == 'L') {
|
2017-05-19 14:39:59 +00:00
|
|
|
const lib_path = word[2..];
|
2017-04-04 05:52:20 +00:00
|
|
|
self.addLibPath(lib_path);
|
|
|
|
} else {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Unrecognized C flag from NIX_LDFLAGS: {}\n", word);
|
2017-04-04 05:52:20 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-04-02 22:19:59 +00:00
|
|
|
}
|
2017-10-15 05:23:10 +00:00
|
|
|
} else |err| {
|
|
|
|
assert(err == error.EnvironmentVariableNotFound);
|
2017-03-31 09:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-06 09:34:04 +00:00
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn option(self: *Builder, comptime T: type, name: []const u8, description: []const u8) ?T {
|
2017-04-19 05:13:15 +00:00
|
|
|
const type_id = comptime typeToEnum(T);
|
2018-11-13 13:08:37 +00:00
|
|
|
const available_option = AvailableOption{
|
2017-04-06 09:34:04 +00:00
|
|
|
.name = name,
|
|
|
|
.type_id = type_id,
|
|
|
|
.description = description,
|
|
|
|
};
|
2018-01-09 05:07:01 +00:00
|
|
|
if ((self.available_options_map.put(name, available_option) catch unreachable) != null) {
|
2017-04-06 09:34:04 +00:00
|
|
|
debug.panic("Option '{}' declared twice", name);
|
|
|
|
}
|
2018-01-09 05:07:01 +00:00
|
|
|
self.available_options_list.append(available_option) catch unreachable;
|
2017-04-06 09:34:04 +00:00
|
|
|
|
2018-06-10 05:13:51 +00:00
|
|
|
const entry = self.user_input_options.get(name) orelse return null;
|
2017-04-06 09:34:04 +00:00
|
|
|
entry.value.used = true;
|
|
|
|
switch (type_id) {
|
|
|
|
TypeId.Bool => switch (entry.value.value) {
|
|
|
|
UserValue.Flag => return true,
|
|
|
|
UserValue.Scalar => |s| {
|
|
|
|
if (mem.eql(u8, s, "true")) {
|
|
|
|
return true;
|
|
|
|
} else if (mem.eql(u8, s, "false")) {
|
|
|
|
return false;
|
|
|
|
} else {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Expected -D{} to be a boolean, but received '{}'\n", name, s);
|
2017-04-06 09:34:04 +00:00
|
|
|
self.markInvalidUserInput();
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
UserValue.List => {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Expected -D{} to be a boolean, but received a list.\n", name);
|
2017-04-06 09:34:04 +00:00
|
|
|
self.markInvalidUserInput();
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
TypeId.Int => debug.panic("TODO integer options to build script"),
|
|
|
|
TypeId.Float => debug.panic("TODO float options to build script"),
|
2017-04-19 05:13:15 +00:00
|
|
|
TypeId.String => switch (entry.value.value) {
|
|
|
|
UserValue.Flag => {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Expected -D{} to be a string, but received a boolean.\n", name);
|
2017-04-19 05:13:15 +00:00
|
|
|
self.markInvalidUserInput();
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
UserValue.List => {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Expected -D{} to be a string, but received a list.\n", name);
|
2017-04-19 05:13:15 +00:00
|
|
|
self.markInvalidUserInput();
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
UserValue.Scalar => |s| return s,
|
|
|
|
},
|
2017-04-06 09:34:04 +00:00
|
|
|
TypeId.List => debug.panic("TODO list options to build script"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn step(self: *Builder, name: []const u8, description: []const u8) *Step {
|
2019-02-03 21:13:28 +00:00
|
|
|
const step_info = self.allocator.create(TopLevelStep) catch unreachable;
|
|
|
|
step_info.* = TopLevelStep{
|
2017-04-13 21:21:00 +00:00
|
|
|
.step = Step.initNoOp(name, self.allocator),
|
|
|
|
.description = description,
|
2019-02-03 21:13:28 +00:00
|
|
|
};
|
2018-01-09 05:07:01 +00:00
|
|
|
self.top_level_steps.append(step_info) catch unreachable;
|
2017-04-13 21:21:00 +00:00
|
|
|
return &step_info.step;
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn standardReleaseOptions(self: *Builder) builtin.Mode {
|
2017-05-10 01:20:09 +00:00
|
|
|
if (self.release_mode) |mode| return mode;
|
|
|
|
|
2018-06-10 05:13:51 +00:00
|
|
|
const release_safe = self.option(bool, "release-safe", "optimizations on and safety on") orelse false;
|
|
|
|
const release_fast = self.option(bool, "release-fast", "optimizations on and safety off") orelse false;
|
|
|
|
const release_small = self.option(bool, "release-small", "size optimizations on and safety off") orelse false;
|
2017-05-02 21:34:21 +00:00
|
|
|
|
2018-05-26 22:16:39 +00:00
|
|
|
const mode = if (release_safe and !release_fast and !release_small) builtin.Mode.ReleaseSafe else if (release_fast and !release_safe and !release_small) builtin.Mode.ReleaseFast else if (release_small and !release_fast and !release_safe) builtin.Mode.ReleaseSmall else if (!release_fast and !release_safe and !release_small) builtin.Mode.Debug else x: {
|
2018-04-16 00:26:10 +00:00
|
|
|
warn("Multiple release modes (of -Drelease-safe, -Drelease-fast and -Drelease-small)");
|
2017-05-02 21:34:21 +00:00
|
|
|
self.markInvalidUserInput();
|
2017-12-22 05:50:30 +00:00
|
|
|
break :x builtin.Mode.Debug;
|
2017-05-10 01:20:09 +00:00
|
|
|
};
|
|
|
|
self.release_mode = mode;
|
|
|
|
return mode;
|
2017-05-02 21:34:21 +00:00
|
|
|
}
|
|
|
|
|
2018-08-03 21:22:17 +00:00
|
|
|
pub fn addUserInputOption(self: *Builder, name: []const u8, value: []const u8) !bool {
|
|
|
|
const gop = try self.user_input_options.getOrPut(name);
|
|
|
|
if (!gop.found_existing) {
|
2018-11-13 13:08:37 +00:00
|
|
|
gop.kv.value = UserInputOption{
|
2018-08-03 21:22:17 +00:00
|
|
|
.name = name,
|
2018-11-13 13:08:37 +00:00
|
|
|
.value = UserValue{ .Scalar = value },
|
2018-08-03 21:22:17 +00:00
|
|
|
.used = false,
|
|
|
|
};
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// option already exists
|
|
|
|
switch (gop.kv.value.value) {
|
|
|
|
UserValue.Scalar => |s| {
|
|
|
|
// turn it into a list
|
|
|
|
var list = ArrayList([]const u8).init(self.allocator);
|
|
|
|
list.append(s) catch unreachable;
|
|
|
|
list.append(value) catch unreachable;
|
2018-11-13 13:08:37 +00:00
|
|
|
_ = self.user_input_options.put(name, UserInputOption{
|
2018-08-03 21:22:17 +00:00
|
|
|
.name = name,
|
2018-11-13 13:08:37 +00:00
|
|
|
.value = UserValue{ .List = list },
|
2018-08-03 21:22:17 +00:00
|
|
|
.used = false,
|
|
|
|
}) catch unreachable;
|
|
|
|
},
|
|
|
|
UserValue.List => |*list| {
|
|
|
|
// append to the list
|
|
|
|
list.append(value) catch unreachable;
|
2018-11-13 13:08:37 +00:00
|
|
|
_ = self.user_input_options.put(name, UserInputOption{
|
2018-08-03 21:22:17 +00:00
|
|
|
.name = name,
|
2018-11-13 13:08:37 +00:00
|
|
|
.value = UserValue{ .List = list.* },
|
2018-08-03 21:22:17 +00:00
|
|
|
.used = false,
|
|
|
|
}) catch unreachable;
|
|
|
|
},
|
|
|
|
UserValue.Flag => {
|
|
|
|
warn("Option '-D{}={}' conflicts with flag '-D{}'.\n", name, value, name);
|
|
|
|
return true;
|
|
|
|
},
|
2017-04-06 09:34:04 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-08-03 21:22:17 +00:00
|
|
|
pub fn addUserInputFlag(self: *Builder, name: []const u8) !bool {
|
|
|
|
const gop = try self.user_input_options.getOrPut(name);
|
|
|
|
if (!gop.found_existing) {
|
2018-11-13 13:08:37 +00:00
|
|
|
gop.kv.value = UserInputOption{
|
2018-08-03 21:22:17 +00:00
|
|
|
.name = name,
|
2018-11-13 13:08:37 +00:00
|
|
|
.value = UserValue{ .Flag = {} },
|
2018-08-03 21:22:17 +00:00
|
|
|
.used = false,
|
|
|
|
};
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// option already exists
|
|
|
|
switch (gop.kv.value.value) {
|
|
|
|
UserValue.Scalar => |s| {
|
|
|
|
warn("Flag '-D{}' conflicts with option '-D{}={}'.\n", name, name, s);
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
UserValue.List => {
|
|
|
|
warn("Flag '-D{}' conflicts with multiple options of the same name.\n", name);
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
UserValue.Flag => {},
|
2017-04-06 09:34:04 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-01-25 09:10:11 +00:00
|
|
|
fn typeToEnum(comptime T: type) TypeId {
|
2017-12-22 05:50:30 +00:00
|
|
|
return switch (@typeId(T)) {
|
2017-05-17 16:26:35 +00:00
|
|
|
builtin.TypeId.Int => TypeId.Int,
|
|
|
|
builtin.TypeId.Float => TypeId.Float,
|
|
|
|
builtin.TypeId.Bool => TypeId.Bool,
|
|
|
|
else => switch (T) {
|
|
|
|
[]const u8 => TypeId.String,
|
|
|
|
[]const []const u8 => TypeId.List,
|
|
|
|
else => @compileError("Unsupported type: " ++ @typeName(T)),
|
|
|
|
},
|
2017-12-22 05:50:30 +00:00
|
|
|
};
|
2017-04-06 09:34:04 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
fn markInvalidUserInput(self: *Builder) void {
|
2017-04-06 09:34:04 +00:00
|
|
|
self.invalid_user_input = true;
|
|
|
|
}
|
|
|
|
|
2018-01-25 09:10:11 +00:00
|
|
|
pub fn typeIdName(id: TypeId) []const u8 {
|
2017-04-06 09:34:04 +00:00
|
|
|
return switch (id) {
|
2017-04-06 22:07:38 +00:00
|
|
|
TypeId.Bool => "bool",
|
|
|
|
TypeId.Int => "int",
|
|
|
|
TypeId.Float => "float",
|
|
|
|
TypeId.String => "string",
|
|
|
|
TypeId.List => "list",
|
2017-04-06 09:34:04 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn validateUserInputDidItFail(self: *Builder) bool {
|
2017-04-06 09:34:04 +00:00
|
|
|
// make sure all args are used
|
|
|
|
var it = self.user_input_options.iterator();
|
|
|
|
while (true) {
|
2018-06-10 05:13:51 +00:00
|
|
|
const entry = it.next() orelse break;
|
2017-04-06 09:34:04 +00:00
|
|
|
if (!entry.value.used) {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Invalid option: -D{}\n\n", entry.key);
|
2017-04-06 09:34:04 +00:00
|
|
|
self.markInvalidUserInput();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return self.invalid_user_input;
|
|
|
|
}
|
2017-04-17 06:58:42 +00:00
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
fn spawnChild(self: *Builder, argv: []const []const u8) !void {
|
2018-10-15 22:23:47 +00:00
|
|
|
return self.spawnChildEnvMap(null, self.env_map, argv);
|
2017-04-17 07:20:56 +00:00
|
|
|
}
|
|
|
|
|
2018-01-25 09:10:11 +00:00
|
|
|
fn printCmd(cwd: ?[]const u8, argv: []const []const u8) void {
|
2017-10-31 08:47:55 +00:00
|
|
|
if (cwd) |yes_cwd| warn("cd {} && ", yes_cwd);
|
2017-10-26 03:10:41 +00:00
|
|
|
for (argv) |arg| {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("{} ", arg);
|
2017-10-26 03:10:41 +00:00
|
|
|
}
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("\n");
|
2017-10-26 03:10:41 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
fn spawnChildEnvMap(self: *Builder, cwd: ?[]const u8, env_map: *const BufMap, argv: []const []const u8) !void {
|
2017-04-17 06:58:42 +00:00
|
|
|
if (self.verbose) {
|
2017-10-26 03:10:41 +00:00
|
|
|
printCmd(cwd, argv);
|
2017-04-17 06:58:42 +00:00
|
|
|
}
|
|
|
|
|
2018-01-09 05:07:01 +00:00
|
|
|
const child = os.ChildProcess.init(argv, self.allocator) catch unreachable;
|
2017-09-26 05:01:49 +00:00
|
|
|
defer child.deinit();
|
2017-04-17 06:58:42 +00:00
|
|
|
|
2017-09-26 05:01:49 +00:00
|
|
|
child.cwd = cwd;
|
|
|
|
child.env_map = env_map;
|
|
|
|
|
2018-01-07 22:28:20 +00:00
|
|
|
const term = child.spawnAndWait() catch |err| {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Unable to spawn {}: {}\n", argv[0], @errorName(err));
|
2017-04-21 05:56:12 +00:00
|
|
|
return err;
|
|
|
|
};
|
2017-09-26 05:01:49 +00:00
|
|
|
|
2017-04-17 06:58:42 +00:00
|
|
|
switch (term) {
|
2017-09-08 03:10:23 +00:00
|
|
|
Term.Exited => |code| {
|
2017-04-17 06:58:42 +00:00
|
|
|
if (code != 0) {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("The following command exited with error code {}:\n", code);
|
2017-10-26 03:10:41 +00:00
|
|
|
printCmd(cwd, argv);
|
2017-04-21 05:56:12 +00:00
|
|
|
return error.UncleanExit;
|
2017-04-17 06:58:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
else => {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("The following command terminated unexpectedly:\n");
|
2017-10-26 03:10:41 +00:00
|
|
|
printCmd(cwd, argv);
|
|
|
|
|
2017-04-21 05:56:12 +00:00
|
|
|
return error.UncleanExit;
|
2017-04-17 06:58:42 +00:00
|
|
|
},
|
2017-12-22 05:50:30 +00:00
|
|
|
}
|
2017-04-17 06:58:42 +00:00
|
|
|
}
|
2017-04-17 10:45:44 +00:00
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn makePath(self: *Builder, path: []const u8) !void {
|
2018-01-07 22:28:20 +00:00
|
|
|
os.makePath(self.allocator, self.pathFromRoot(path)) catch |err| {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Unable to create path {}: {}\n", path, @errorName(err));
|
2017-04-30 17:01:35 +00:00
|
|
|
return err;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn installArtifact(self: *Builder, artifact: *LibExeObjStep) void {
|
2017-05-01 02:09:44 +00:00
|
|
|
self.getInstallStep().dependOn(&self.addInstallArtifact(artifact).step);
|
2017-04-17 10:45:44 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addInstallArtifact(self: *Builder, artifact: *LibExeObjStep) *InstallArtifactStep {
|
2017-09-18 06:50:51 +00:00
|
|
|
return InstallArtifactStep.create(self, artifact);
|
2017-05-01 01:03:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
///::dest_rel_path is relative to prefix path or it can be an absolute path
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn installFile(self: *Builder, src_path: []const u8, dest_rel_path: []const u8) void {
|
2017-05-01 01:03:23 +00:00
|
|
|
self.getInstallStep().dependOn(&self.addInstallFile(src_path, dest_rel_path).step);
|
|
|
|
}
|
|
|
|
|
|
|
|
///::dest_rel_path is relative to prefix path or it can be an absolute path
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addInstallFile(self: *Builder, src_path: []const u8, dest_rel_path: []const u8) *InstallFileStep {
|
2019-02-07 05:42:41 +00:00
|
|
|
const full_dest_path = os.path.resolve(
|
|
|
|
self.allocator,
|
|
|
|
[][]const u8{ self.prefix, dest_rel_path },
|
|
|
|
) catch unreachable;
|
2017-05-01 01:03:23 +00:00
|
|
|
self.pushInstalledFile(full_dest_path);
|
2017-04-17 10:45:44 +00:00
|
|
|
|
2019-02-03 21:13:28 +00:00
|
|
|
const install_step = self.allocator.create(InstallFileStep) catch unreachable;
|
|
|
|
install_step.* = InstallFileStep.init(self, src_path, full_dest_path);
|
2017-04-17 10:45:44 +00:00
|
|
|
return install_step;
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn pushInstalledFile(self: *Builder, full_path: []const u8) void {
|
2017-04-17 10:45:44 +00:00
|
|
|
_ = self.getUninstallStep();
|
2018-01-09 05:07:01 +00:00
|
|
|
self.installed_files.append(full_path) catch unreachable;
|
2017-04-17 10:45:44 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
fn copyFile(self: *Builder, source_path: []const u8, dest_path: []const u8) !void {
|
2018-07-26 03:16:13 +00:00
|
|
|
return self.copyFileMode(source_path, dest_path, os.File.default_mode);
|
2017-05-01 02:09:44 +00:00
|
|
|
}
|
|
|
|
|
2018-07-26 03:16:13 +00:00
|
|
|
fn copyFileMode(self: *Builder, source_path: []const u8, dest_path: []const u8, mode: os.File.Mode) !void {
|
2017-05-01 02:09:44 +00:00
|
|
|
if (self.verbose) {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("cp {} {}\n", source_path, dest_path);
|
2017-05-01 02:09:44 +00:00
|
|
|
}
|
|
|
|
|
2018-06-14 20:15:32 +00:00
|
|
|
const dirname = os.path.dirname(dest_path) orelse ".";
|
2017-04-30 22:56:24 +00:00
|
|
|
const abs_source_path = self.pathFromRoot(source_path);
|
2018-01-07 22:28:20 +00:00
|
|
|
os.makePath(self.allocator, dirname) catch |err| {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Unable to create path {}: {}\n", dirname, @errorName(err));
|
2017-05-01 02:09:44 +00:00
|
|
|
return err;
|
2017-04-23 15:09:26 +00:00
|
|
|
};
|
2018-10-01 17:43:25 +00:00
|
|
|
os.copyFileMode(abs_source_path, dest_path, mode) catch |err| {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Unable to copy {} to {}: {}\n", abs_source_path, dest_path, @errorName(err));
|
2017-05-01 02:09:44 +00:00
|
|
|
return err;
|
2017-04-17 10:45:44 +00:00
|
|
|
};
|
|
|
|
}
|
2017-04-19 05:13:15 +00:00
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
fn pathFromRoot(self: *Builder, rel_path: []const u8) []u8 {
|
2019-02-07 05:42:41 +00:00
|
|
|
return os.path.resolve(self.allocator, [][]const u8{ self.build_root, rel_path }) catch unreachable;
|
2017-04-19 05:13:15 +00:00
|
|
|
}
|
2017-04-19 19:38:12 +00:00
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn fmt(self: *Builder, comptime format: []const u8, args: ...) []u8 {
|
2018-01-09 05:07:01 +00:00
|
|
|
return fmt_lib.allocPrint(self.allocator, format, args) catch unreachable;
|
2017-04-19 19:38:12 +00:00
|
|
|
}
|
2017-10-16 05:14:28 +00:00
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn findProgram(self: *Builder, names: []const []const u8, paths: []const []const u8) ![]const u8 {
|
2017-12-24 01:21:57 +00:00
|
|
|
// TODO report error for ambiguous situations
|
2018-11-13 13:08:37 +00:00
|
|
|
const exe_extension = (Target{ .Native = {} }).exeFileExt();
|
2017-12-24 01:21:57 +00:00
|
|
|
for (self.search_prefixes.toSliceConst()) |search_prefix| {
|
|
|
|
for (names) |name| {
|
|
|
|
if (os.path.isAbsolute(name)) {
|
|
|
|
return name;
|
|
|
|
}
|
2019-02-07 05:42:41 +00:00
|
|
|
const full_path = try os.path.join(self.allocator, [][]const u8{ search_prefix, "bin", self.fmt("{}{}", name, exe_extension) });
|
2017-12-24 01:21:57 +00:00
|
|
|
if (os.path.real(self.allocator, full_path)) |real_path| {
|
|
|
|
return real_path;
|
|
|
|
} else |_| {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-12-12 21:03:20 +00:00
|
|
|
if (self.env_map.get("PATH")) |PATH| {
|
|
|
|
for (names) |name| {
|
|
|
|
if (os.path.isAbsolute(name)) {
|
|
|
|
return name;
|
|
|
|
}
|
2019-02-04 20:24:06 +00:00
|
|
|
var it = mem.tokenize(PATH, []u8{os.path.delimiter});
|
2017-12-12 21:03:20 +00:00
|
|
|
while (it.next()) |path| {
|
2019-02-07 05:42:41 +00:00
|
|
|
const full_path = try os.path.join(self.allocator, [][]const u8{ path, self.fmt("{}{}", name, exe_extension) });
|
2017-12-12 21:03:20 +00:00
|
|
|
if (os.path.real(self.allocator, full_path)) |real_path| {
|
|
|
|
return real_path;
|
|
|
|
} else |_| {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (names) |name| {
|
|
|
|
if (os.path.isAbsolute(name)) {
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
for (paths) |path| {
|
2019-02-07 05:42:41 +00:00
|
|
|
const full_path = try os.path.join(self.allocator, [][]const u8{ path, self.fmt("{}{}", name, exe_extension) });
|
2017-12-12 21:03:20 +00:00
|
|
|
if (os.path.real(self.allocator, full_path)) |real_path| {
|
|
|
|
return real_path;
|
|
|
|
} else |_| {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return error.FileNotFound;
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn exec(self: *Builder, argv: []const []const u8) ![]u8 {
|
2017-12-12 21:03:20 +00:00
|
|
|
const max_output_size = 100 * 1024;
|
2018-01-12 07:12:11 +00:00
|
|
|
const result = try os.ChildProcess.exec(self.allocator, argv, null, null, max_output_size);
|
2017-12-12 21:03:20 +00:00
|
|
|
switch (result.term) {
|
|
|
|
os.ChildProcess.Term.Exited => |code| {
|
|
|
|
if (code != 0) {
|
|
|
|
warn("The following command exited with error code {}:\n", code);
|
|
|
|
printCmd(null, argv);
|
|
|
|
warn("stderr:{}\n", result.stderr);
|
|
|
|
std.debug.panic("command failed");
|
|
|
|
}
|
|
|
|
return result.stdout;
|
|
|
|
},
|
|
|
|
else => {
|
|
|
|
warn("The following command terminated unexpectedly:\n");
|
|
|
|
printCmd(null, argv);
|
|
|
|
warn("stderr:{}\n", result.stderr);
|
|
|
|
std.debug.panic("command failed");
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2017-12-24 01:21:57 +00:00
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addSearchPrefix(self: *Builder, search_prefix: []const u8) void {
|
2018-01-09 05:07:01 +00:00
|
|
|
self.search_prefixes.append(search_prefix) catch unreachable;
|
2017-12-24 01:21:57 +00:00
|
|
|
}
|
2017-04-13 21:21:00 +00:00
|
|
|
};
|
2017-04-06 09:34:04 +00:00
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
const Version = struct {
|
2017-04-13 21:21:00 +00:00
|
|
|
major: u32,
|
|
|
|
minor: u32,
|
|
|
|
patch: u32,
|
2017-03-31 09:48:15 +00:00
|
|
|
};
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
const CrossTarget = struct {
|
2017-05-01 17:12:38 +00:00
|
|
|
arch: builtin.Arch,
|
|
|
|
os: builtin.Os,
|
2019-02-26 20:51:32 +00:00
|
|
|
abi: builtin.Abi,
|
2017-04-03 08:58:19 +00:00
|
|
|
};
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
pub const Target = union(enum) {
|
2017-12-04 01:43:56 +00:00
|
|
|
Native: void,
|
2017-04-03 08:58:19 +00:00
|
|
|
Cross: CrossTarget,
|
2017-04-16 18:14:11 +00:00
|
|
|
|
2019-02-26 20:51:32 +00:00
|
|
|
fn archSubArchName(arch: builtin.Arch) []const u8 {
|
|
|
|
return switch (arch) {
|
|
|
|
builtin.Arch.arm => |sub| @tagName(sub),
|
|
|
|
builtin.Arch.armeb => |sub| @tagName(sub),
|
|
|
|
builtin.Arch.thumb => |sub| @tagName(sub),
|
|
|
|
builtin.Arch.thumbeb => |sub| @tagName(sub),
|
|
|
|
builtin.Arch.aarch64 => |sub| @tagName(sub),
|
|
|
|
builtin.Arch.aarch64_be => |sub| @tagName(sub),
|
|
|
|
builtin.Arch.kalimba => |sub| @tagName(sub),
|
|
|
|
else => "",
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn subArchName(self: Target) []const u8 {
|
|
|
|
switch (self) {
|
|
|
|
Target.Native => return archSubArchName(builtin.arch),
|
|
|
|
Target.Cross => |cross| return archSubArchName(cross.arch),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn oFileExt(self: *const Target) []const u8 {
|
2019-02-26 20:51:32 +00:00
|
|
|
const abi = switch (self.*) {
|
|
|
|
Target.Native => builtin.abi,
|
|
|
|
Target.Cross => |t| t.abi,
|
2017-04-16 18:14:11 +00:00
|
|
|
};
|
2019-02-26 20:51:32 +00:00
|
|
|
return switch (abi) {
|
|
|
|
builtin.Abi.msvc => ".obj",
|
2017-04-16 18:14:11 +00:00
|
|
|
else => ".o",
|
|
|
|
};
|
|
|
|
}
|
2017-04-19 18:00:12 +00:00
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn exeFileExt(self: *const Target) []const u8 {
|
2017-09-23 21:59:30 +00:00
|
|
|
return switch (self.getOs()) {
|
|
|
|
builtin.Os.windows => ".exe",
|
|
|
|
else => "",
|
|
|
|
};
|
2017-12-27 00:44:08 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn libFileExt(self: *const Target) []const u8 {
|
2017-12-27 00:44:08 +00:00
|
|
|
return switch (self.getOs()) {
|
|
|
|
builtin.Os.windows => ".lib",
|
|
|
|
else => ".a",
|
|
|
|
};
|
2017-09-23 21:59:30 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn getOs(self: *const Target) builtin.Os {
|
2018-05-10 04:29:49 +00:00
|
|
|
return switch (self.*) {
|
2017-05-01 17:12:38 +00:00
|
|
|
Target.Native => builtin.os,
|
2017-04-19 18:00:12 +00:00
|
|
|
Target.Cross => |t| t.os,
|
|
|
|
};
|
2017-09-23 21:59:30 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn isDarwin(self: *const Target) bool {
|
2017-09-23 21:59:30 +00:00
|
|
|
return switch (self.getOs()) {
|
2018-05-26 22:16:39 +00:00
|
|
|
builtin.Os.ios, builtin.Os.macosx => true,
|
2017-09-23 21:59:30 +00:00
|
|
|
else => false,
|
2017-04-19 18:00:12 +00:00
|
|
|
};
|
|
|
|
}
|
2017-10-16 05:14:28 +00:00
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn isWindows(self: *const Target) bool {
|
2017-10-16 05:14:28 +00:00
|
|
|
return switch (self.getOs()) {
|
|
|
|
builtin.Os.windows => true,
|
|
|
|
else => false,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-10-17 19:18:50 +00:00
|
|
|
pub fn isFreeBSD(self: *const Target) bool {
|
|
|
|
return switch (self.getOs()) {
|
|
|
|
builtin.Os.freebsd => true,
|
|
|
|
else => false,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn wantSharedLibSymLinks(self: *const Target) bool {
|
2017-10-16 05:14:28 +00:00
|
|
|
return !self.isWindows();
|
|
|
|
}
|
2017-04-03 08:58:19 +00:00
|
|
|
};
|
|
|
|
|
2018-12-05 13:10:09 +00:00
|
|
|
const Pkg = struct {
|
|
|
|
name: []const u8,
|
|
|
|
path: []const u8,
|
|
|
|
};
|
|
|
|
|
2019-02-25 16:37:54 +00:00
|
|
|
const CSourceFile = struct {
|
|
|
|
source_path: []const u8,
|
|
|
|
args: []const []const u8,
|
|
|
|
};
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
pub const LibExeObjStep = struct {
|
2017-04-13 21:21:00 +00:00
|
|
|
step: Step,
|
2018-05-31 14:56:59 +00:00
|
|
|
builder: *Builder,
|
2017-03-31 09:48:15 +00:00
|
|
|
name: []const u8,
|
2017-04-03 08:58:19 +00:00
|
|
|
target: Target,
|
2017-04-04 05:52:20 +00:00
|
|
|
link_libs: BufSet,
|
2017-09-18 06:50:51 +00:00
|
|
|
linker_script: ?[]const u8,
|
|
|
|
out_filename: []const u8,
|
2017-04-19 05:13:15 +00:00
|
|
|
output_path: ?[]const u8,
|
2019-02-25 18:34:25 +00:00
|
|
|
output_lib_path: ?[]const u8,
|
2017-09-18 06:50:51 +00:00
|
|
|
static: bool,
|
2017-04-21 05:56:12 +00:00
|
|
|
version: Version,
|
2017-09-18 06:50:51 +00:00
|
|
|
object_files: ArrayList([]const u8),
|
|
|
|
build_mode: builtin.Mode,
|
|
|
|
kind: Kind,
|
2017-05-01 02:09:44 +00:00
|
|
|
major_only_filename: []const u8,
|
|
|
|
name_only_filename: []const u8,
|
2017-09-18 06:50:51 +00:00
|
|
|
strip: bool,
|
|
|
|
full_path_libs: ArrayList([]const u8),
|
|
|
|
need_flat_namespace_hack: bool,
|
|
|
|
include_dirs: ArrayList([]const u8),
|
2017-12-12 04:34:59 +00:00
|
|
|
lib_paths: ArrayList([]const u8),
|
2017-09-23 21:59:30 +00:00
|
|
|
frameworks: BufSet,
|
2018-01-05 04:43:46 +00:00
|
|
|
verbose_link: bool,
|
2019-02-25 16:37:54 +00:00
|
|
|
verbose_cc: bool,
|
2018-09-06 20:29:35 +00:00
|
|
|
c_std: Builder.CStd,
|
2019-02-25 16:37:54 +00:00
|
|
|
override_std_dir: ?[]const u8,
|
2019-03-02 15:38:27 +00:00
|
|
|
main_pkg_path: ?[]const u8,
|
2019-02-25 16:37:54 +00:00
|
|
|
exec_cmd_args: ?[]const ?[]const u8,
|
|
|
|
name_prefix: []const u8,
|
|
|
|
filter: ?[]const u8,
|
2017-09-18 06:50:51 +00:00
|
|
|
|
|
|
|
root_src: ?[]const u8,
|
|
|
|
output_h_path: ?[]const u8,
|
|
|
|
out_h_filename: []const u8,
|
2019-02-25 18:34:25 +00:00
|
|
|
out_lib_filename: []const u8,
|
2017-05-04 18:05:06 +00:00
|
|
|
assembly_files: ArrayList([]const u8),
|
|
|
|
packages: ArrayList(Pkg),
|
2018-07-08 04:00:05 +00:00
|
|
|
build_options_contents: std.Buffer,
|
2018-11-02 04:07:43 +00:00
|
|
|
system_linker_hack: bool,
|
2017-05-01 20:35:10 +00:00
|
|
|
|
2019-02-25 16:37:54 +00:00
|
|
|
c_source_files: ArrayList(*CSourceFile),
|
2017-09-18 06:50:51 +00:00
|
|
|
object_src: []const u8,
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
const Kind = enum {
|
2017-04-21 05:56:12 +00:00
|
|
|
Exe,
|
|
|
|
Lib,
|
2017-04-26 23:17:05 +00:00
|
|
|
Obj,
|
2019-02-25 16:37:54 +00:00
|
|
|
Test,
|
2017-04-21 05:56:12 +00:00
|
|
|
};
|
|
|
|
|
2018-10-15 22:23:47 +00:00
|
|
|
pub fn createSharedLibrary(builder: *Builder, name: []const u8, root_src: ?[]const u8, ver: Version) *LibExeObjStep {
|
2019-02-03 21:13:28 +00:00
|
|
|
const self = builder.allocator.create(LibExeObjStep) catch unreachable;
|
|
|
|
self.* = initExtraArgs(builder, name, root_src, Kind.Lib, false, ver);
|
2017-04-26 23:17:05 +00:00
|
|
|
return self;
|
2017-04-21 05:56:12 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn createStaticLibrary(builder: *Builder, name: []const u8, root_src: ?[]const u8) *LibExeObjStep {
|
2019-02-03 21:13:28 +00:00
|
|
|
const self = builder.allocator.create(LibExeObjStep) catch unreachable;
|
|
|
|
self.* = initExtraArgs(builder, name, root_src, Kind.Lib, true, builder.version(0, 0, 0));
|
2017-04-26 23:17:05 +00:00
|
|
|
return self;
|
2017-04-21 05:56:12 +00:00
|
|
|
}
|
|
|
|
|
2019-02-25 16:37:54 +00:00
|
|
|
pub fn createObject(builder: *Builder, name: []const u8, root_src: ?[]const u8) *LibExeObjStep {
|
2019-02-03 21:13:28 +00:00
|
|
|
const self = builder.allocator.create(LibExeObjStep) catch unreachable;
|
|
|
|
self.* = initExtraArgs(builder, name, root_src, Kind.Obj, false, builder.version(0, 0, 0));
|
2017-04-26 23:17:05 +00:00
|
|
|
return self;
|
2017-04-21 05:56:12 +00:00
|
|
|
}
|
2017-04-04 05:52:20 +00:00
|
|
|
|
2018-12-01 06:21:59 +00:00
|
|
|
pub fn createExecutable(builder: *Builder, name: []const u8, root_src: ?[]const u8, static: bool) *LibExeObjStep {
|
2019-02-03 21:13:28 +00:00
|
|
|
const self = builder.allocator.create(LibExeObjStep) catch unreachable;
|
|
|
|
self.* = initExtraArgs(builder, name, root_src, Kind.Exe, static, builder.version(0, 0, 0));
|
2017-04-26 23:17:05 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2019-02-25 16:37:54 +00:00
|
|
|
pub fn createTest(builder: *Builder, name: []const u8, root_src: []const u8) *LibExeObjStep {
|
2019-02-03 21:13:28 +00:00
|
|
|
const self = builder.allocator.create(LibExeObjStep) catch unreachable;
|
2019-02-25 16:37:54 +00:00
|
|
|
self.* = initExtraArgs(builder, name, root_src, Kind.Test, false, builder.version(0, 0, 0));
|
2017-09-18 06:50:51 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2018-10-15 22:23:47 +00:00
|
|
|
fn initExtraArgs(builder: *Builder, name: []const u8, root_src: ?[]const u8, kind: Kind, static: bool, ver: Version) LibExeObjStep {
|
2018-11-13 13:08:37 +00:00
|
|
|
var self = LibExeObjStep{
|
2017-09-18 06:50:51 +00:00
|
|
|
.strip = false,
|
2017-04-13 21:21:00 +00:00
|
|
|
.builder = builder,
|
2018-01-05 04:43:46 +00:00
|
|
|
.verbose_link = false,
|
2019-02-25 16:37:54 +00:00
|
|
|
.verbose_cc = false,
|
2017-05-02 21:34:21 +00:00
|
|
|
.build_mode = builtin.Mode.Debug,
|
2017-04-21 05:56:12 +00:00
|
|
|
.static = static,
|
|
|
|
.kind = kind,
|
2017-04-13 21:21:00 +00:00
|
|
|
.root_src = root_src,
|
|
|
|
.name = name,
|
2017-12-12 21:40:04 +00:00
|
|
|
.target = Target.Native,
|
2017-04-28 14:46:01 +00:00
|
|
|
.linker_script = null,
|
2017-04-13 21:21:00 +00:00
|
|
|
.link_libs = BufSet.init(builder.allocator),
|
2017-09-23 21:59:30 +00:00
|
|
|
.frameworks = BufSet.init(builder.allocator),
|
2017-04-13 21:21:00 +00:00
|
|
|
.step = Step.init(name, builder.allocator, make),
|
2017-04-19 05:13:15 +00:00
|
|
|
.output_path = null,
|
2019-02-25 18:34:25 +00:00
|
|
|
.output_lib_path = null,
|
2017-04-30 22:56:24 +00:00
|
|
|
.output_h_path = null,
|
2018-10-15 22:23:47 +00:00
|
|
|
.version = ver,
|
2017-04-21 05:56:12 +00:00
|
|
|
.out_filename = undefined,
|
2017-04-30 22:56:24 +00:00
|
|
|
.out_h_filename = builder.fmt("{}.h", name),
|
2019-02-25 18:34:25 +00:00
|
|
|
.out_lib_filename = undefined,
|
2017-05-01 02:09:44 +00:00
|
|
|
.major_only_filename = undefined,
|
|
|
|
.name_only_filename = undefined,
|
2017-05-04 18:05:06 +00:00
|
|
|
.object_files = ArrayList([]const u8).init(builder.allocator),
|
|
|
|
.assembly_files = ArrayList([]const u8).init(builder.allocator),
|
|
|
|
.packages = ArrayList(Pkg).init(builder.allocator),
|
2017-09-18 06:50:51 +00:00
|
|
|
.full_path_libs = ArrayList([]const u8).init(builder.allocator),
|
|
|
|
.need_flat_namespace_hack = false,
|
2019-02-25 16:37:54 +00:00
|
|
|
.c_source_files = ArrayList(*CSourceFile).init(builder.allocator),
|
2017-09-18 06:50:51 +00:00
|
|
|
.include_dirs = ArrayList([]const u8).init(builder.allocator),
|
2017-12-12 04:34:59 +00:00
|
|
|
.lib_paths = ArrayList([]const u8).init(builder.allocator),
|
2017-09-18 06:50:51 +00:00
|
|
|
.object_src = undefined,
|
2018-07-08 04:00:05 +00:00
|
|
|
.build_options_contents = std.Buffer.initSize(builder.allocator, 0) catch unreachable,
|
2018-09-06 20:29:35 +00:00
|
|
|
.c_std = Builder.CStd.C99,
|
2018-11-02 04:07:43 +00:00
|
|
|
.system_linker_hack = false,
|
2019-02-25 16:37:54 +00:00
|
|
|
.override_std_dir = null,
|
2019-03-02 15:38:27 +00:00
|
|
|
.main_pkg_path = null,
|
2019-02-25 16:37:54 +00:00
|
|
|
.exec_cmd_args = null,
|
|
|
|
.name_prefix = "",
|
|
|
|
.filter = null,
|
2017-04-21 05:56:12 +00:00
|
|
|
};
|
|
|
|
self.computeOutFileNames();
|
|
|
|
return self;
|
2017-04-13 21:21:00 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
fn computeOutFileNames(self: *LibExeObjStep) void {
|
2017-04-21 05:56:12 +00:00
|
|
|
switch (self.kind) {
|
2017-04-26 23:17:05 +00:00
|
|
|
Kind.Obj => {
|
|
|
|
self.out_filename = self.builder.fmt("{}{}", self.name, self.target.oFileExt());
|
|
|
|
},
|
2017-04-21 05:56:12 +00:00
|
|
|
Kind.Exe => {
|
|
|
|
self.out_filename = self.builder.fmt("{}{}", self.name, self.target.exeFileExt());
|
|
|
|
},
|
2019-02-25 16:37:54 +00:00
|
|
|
Kind.Test => {
|
|
|
|
self.out_filename = self.builder.fmt("test{}", self.target.exeFileExt());
|
|
|
|
},
|
2017-04-21 05:56:12 +00:00
|
|
|
Kind.Lib => {
|
|
|
|
if (self.static) {
|
2019-02-25 18:34:25 +00:00
|
|
|
switch (self.target.getOs()) {
|
|
|
|
builtin.Os.windows => {
|
|
|
|
self.out_filename = self.builder.fmt("{}.lib", self.name);
|
|
|
|
},
|
|
|
|
else => {
|
|
|
|
self.out_filename = self.builder.fmt("lib{}.a", self.name);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
self.out_lib_filename = self.out_filename;
|
2017-04-21 05:56:12 +00:00
|
|
|
} else {
|
2017-09-23 21:59:30 +00:00
|
|
|
switch (self.target.getOs()) {
|
2018-05-26 22:16:39 +00:00
|
|
|
builtin.Os.ios, builtin.Os.macosx => {
|
2018-05-10 04:29:49 +00:00
|
|
|
self.out_filename = self.builder.fmt("lib{}.{d}.{d}.{d}.dylib", self.name, self.version.major, self.version.minor, self.version.patch);
|
2017-09-23 17:27:36 +00:00
|
|
|
self.major_only_filename = self.builder.fmt("lib{}.{d}.dylib", self.name, self.version.major);
|
2017-08-27 21:16:42 +00:00
|
|
|
self.name_only_filename = self.builder.fmt("lib{}.dylib", self.name);
|
2019-02-25 18:34:25 +00:00
|
|
|
self.out_lib_filename = self.out_filename;
|
2017-08-27 21:16:42 +00:00
|
|
|
},
|
|
|
|
builtin.Os.windows => {
|
2017-10-16 05:14:28 +00:00
|
|
|
self.out_filename = self.builder.fmt("{}.dll", self.name);
|
2019-02-25 18:34:25 +00:00
|
|
|
self.out_lib_filename = self.builder.fmt("{}.lib", self.name);
|
2017-08-27 21:16:42 +00:00
|
|
|
},
|
|
|
|
else => {
|
2018-05-10 04:29:49 +00:00
|
|
|
self.out_filename = self.builder.fmt("lib{}.so.{d}.{d}.{d}", self.name, self.version.major, self.version.minor, self.version.patch);
|
2017-08-27 21:16:42 +00:00
|
|
|
self.major_only_filename = self.builder.fmt("lib{}.so.{d}", self.name, self.version.major);
|
|
|
|
self.name_only_filename = self.builder.fmt("lib{}.so", self.name);
|
2019-02-25 18:34:25 +00:00
|
|
|
self.out_lib_filename = self.out_filename;
|
2017-08-27 21:16:42 +00:00
|
|
|
},
|
|
|
|
}
|
2017-04-21 05:56:12 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
2017-04-04 05:52:20 +00:00
|
|
|
}
|
2017-04-03 08:58:19 +00:00
|
|
|
|
2019-02-26 20:51:32 +00:00
|
|
|
pub fn setTarget(
|
|
|
|
self: *LibExeObjStep,
|
|
|
|
target_arch: builtin.Arch,
|
|
|
|
target_os: builtin.Os,
|
|
|
|
target_abi: builtin.Abi,
|
|
|
|
) void {
|
2018-11-13 13:08:37 +00:00
|
|
|
self.target = Target{
|
|
|
|
.Cross = CrossTarget{
|
2018-05-26 22:16:39 +00:00
|
|
|
.arch = target_arch,
|
|
|
|
.os = target_os,
|
2019-02-26 20:51:32 +00:00
|
|
|
.abi = target_abi,
|
2018-05-26 22:16:39 +00:00
|
|
|
},
|
|
|
|
};
|
2017-04-26 23:17:05 +00:00
|
|
|
self.computeOutFileNames();
|
2017-04-03 08:58:19 +00:00
|
|
|
}
|
|
|
|
|
2017-09-18 06:50:51 +00:00
|
|
|
// TODO respect this in the C args
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn setLinkerScriptPath(self: *LibExeObjStep, path: []const u8) void {
|
2017-04-28 14:46:01 +00:00
|
|
|
self.linker_script = path;
|
2017-04-03 08:58:19 +00:00
|
|
|
}
|
2017-04-04 05:52:20 +00:00
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn linkFramework(self: *LibExeObjStep, framework_name: []const u8) void {
|
2017-09-23 21:59:30 +00:00
|
|
|
assert(self.target.isDarwin());
|
2018-01-09 05:07:01 +00:00
|
|
|
self.frameworks.put(framework_name) catch unreachable;
|
2017-09-23 21:59:30 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn linkLibrary(self: *LibExeObjStep, lib: *LibExeObjStep) void {
|
2017-09-18 06:50:51 +00:00
|
|
|
assert(self.kind != Kind.Obj);
|
|
|
|
assert(lib.kind == Kind.Lib);
|
|
|
|
|
|
|
|
self.step.dependOn(&lib.step);
|
|
|
|
|
2019-02-25 18:34:25 +00:00
|
|
|
if (lib.static or self.target.isWindows()) {
|
|
|
|
self.object_files.append(lib.getOutputLibPath()) catch unreachable;
|
|
|
|
} else {
|
|
|
|
self.full_path_libs.append(lib.getOutputPath()) catch unreachable;
|
|
|
|
}
|
2017-09-18 06:50:51 +00:00
|
|
|
|
2019-02-25 19:27:03 +00:00
|
|
|
if (lib.link_libs.exists("c")) {
|
|
|
|
self.link_libs.put("c") catch unreachable;
|
|
|
|
}
|
|
|
|
|
2017-09-18 06:50:51 +00:00
|
|
|
// TODO should be some kind of isolated directory that only has this header in it
|
2018-01-09 05:07:01 +00:00
|
|
|
self.include_dirs.append(self.builder.cache_root) catch unreachable;
|
2017-09-18 06:50:51 +00:00
|
|
|
self.need_flat_namespace_hack = true;
|
2017-09-23 21:59:30 +00:00
|
|
|
|
|
|
|
// inherit the object's frameworks
|
|
|
|
if (self.target.isDarwin() and lib.static) {
|
|
|
|
var it = lib.frameworks.iterator();
|
|
|
|
while (it.next()) |entry| {
|
2018-01-09 05:07:01 +00:00
|
|
|
self.frameworks.put(entry.key) catch unreachable;
|
2017-09-23 21:59:30 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-18 06:50:51 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn linkSystemLibrary(self: *LibExeObjStep, name: []const u8) void {
|
2018-01-09 05:07:01 +00:00
|
|
|
self.link_libs.put(name) catch unreachable;
|
2017-04-04 05:52:20 +00:00
|
|
|
}
|
2017-04-06 09:34:04 +00:00
|
|
|
|
2019-02-25 16:37:54 +00:00
|
|
|
pub fn setNamePrefix(self: *LibExeObjStep, text: []const u8) void {
|
|
|
|
assert(self.kind == Kind.Test);
|
|
|
|
self.name_prefix = text;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn setFilter(self: *LibExeObjStep, text: ?[]const u8) void {
|
|
|
|
assert(self.kind == Kind.Test);
|
|
|
|
self.filter = text;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn addCSourceFile(self: *LibExeObjStep, file: []const u8, args: []const []const u8) void {
|
|
|
|
const c_source_file = self.builder.allocator.create(CSourceFile) catch unreachable;
|
|
|
|
c_source_file.* = CSourceFile{
|
|
|
|
.source_path = file,
|
|
|
|
.args = args,
|
|
|
|
};
|
|
|
|
self.c_source_files.append(c_source_file) catch unreachable;
|
2017-09-18 06:50:51 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn setVerboseLink(self: *LibExeObjStep, value: bool) void {
|
2018-01-05 04:43:46 +00:00
|
|
|
self.verbose_link = value;
|
2017-04-19 18:00:12 +00:00
|
|
|
}
|
|
|
|
|
2019-02-25 16:37:54 +00:00
|
|
|
pub fn setVerboseCC(self: *LibExeObjStep, value: bool) void {
|
|
|
|
self.verbose_cc = value;
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn setBuildMode(self: *LibExeObjStep, mode: builtin.Mode) void {
|
2017-05-02 21:34:21 +00:00
|
|
|
self.build_mode = mode;
|
2017-04-19 18:00:12 +00:00
|
|
|
}
|
|
|
|
|
2019-02-25 16:37:54 +00:00
|
|
|
pub fn overrideStdDir(self: *LibExeObjStep, dir_path: []const u8) void {
|
|
|
|
self.override_std_dir = dir_path;
|
|
|
|
}
|
|
|
|
|
2019-03-02 15:38:27 +00:00
|
|
|
pub fn setMainPkgPath(self: *LibExeObjStep, dir_path: []const u8) void {
|
|
|
|
self.main_pkg_path = dir_path;
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn setOutputPath(self: *LibExeObjStep, file_path: []const u8) void {
|
2017-09-18 22:01:58 +00:00
|
|
|
self.output_path = file_path;
|
|
|
|
|
|
|
|
// catch a common mistake
|
|
|
|
if (mem.eql(u8, self.builder.pathFromRoot(file_path), self.builder.pathFromRoot("."))) {
|
|
|
|
debug.panic("setOutputPath wants a file path, not a directory\n");
|
|
|
|
}
|
2017-04-19 18:00:12 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn getOutputPath(self: *LibExeObjStep) []const u8 {
|
2019-02-07 05:42:41 +00:00
|
|
|
return if (self.output_path) |output_path| output_path else os.path.join(
|
|
|
|
self.builder.allocator,
|
|
|
|
[][]const u8{ self.builder.cache_root, self.out_filename },
|
|
|
|
) catch unreachable;
|
2017-04-30 22:56:24 +00:00
|
|
|
}
|
|
|
|
|
2019-02-25 18:34:25 +00:00
|
|
|
pub fn setOutputLibPath(self: *LibExeObjStep, file_path: []const u8) void {
|
|
|
|
assert(self.kind == Kind.Lib);
|
|
|
|
if (self.static)
|
|
|
|
return self.setOutputPath(file_path);
|
|
|
|
|
|
|
|
self.output_lib_path = file_path;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn getOutputLibPath(self: *LibExeObjStep) []const u8 {
|
|
|
|
assert(self.kind == Kind.Lib);
|
|
|
|
return if (self.output_lib_path) |output_lib_path| output_lib_path else os.path.join(
|
|
|
|
self.builder.allocator,
|
|
|
|
[][]const u8{ self.builder.cache_root, self.out_lib_filename },
|
|
|
|
) catch unreachable;
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn setOutputHPath(self: *LibExeObjStep, file_path: []const u8) void {
|
2017-09-18 22:01:58 +00:00
|
|
|
self.output_h_path = file_path;
|
|
|
|
|
|
|
|
// catch a common mistake
|
|
|
|
if (mem.eql(u8, self.builder.pathFromRoot(file_path), self.builder.pathFromRoot("."))) {
|
|
|
|
debug.panic("setOutputHPath wants a file path, not a directory\n");
|
|
|
|
}
|
2017-04-30 22:56:24 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn getOutputHPath(self: *LibExeObjStep) []const u8 {
|
2019-02-07 05:42:41 +00:00
|
|
|
return if (self.output_h_path) |output_h_path| output_h_path else os.path.join(
|
|
|
|
self.builder.allocator,
|
|
|
|
[][]const u8{ self.builder.cache_root, self.out_h_filename },
|
|
|
|
) catch unreachable;
|
2017-04-30 22:56:24 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addAssemblyFile(self: *LibExeObjStep, path: []const u8) void {
|
2018-01-09 05:07:01 +00:00
|
|
|
self.assembly_files.append(path) catch unreachable;
|
2017-04-19 18:00:12 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addObjectFile(self: *LibExeObjStep, path: []const u8) void {
|
2017-04-26 23:17:05 +00:00
|
|
|
assert(self.kind != Kind.Obj);
|
2017-04-19 18:00:12 +00:00
|
|
|
|
2018-01-09 05:07:01 +00:00
|
|
|
self.object_files.append(path) catch unreachable;
|
2017-04-19 18:00:12 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addObject(self: *LibExeObjStep, obj: *LibExeObjStep) void {
|
2017-04-26 23:17:05 +00:00
|
|
|
assert(obj.kind == Kind.Obj);
|
|
|
|
assert(self.kind != Kind.Obj);
|
2017-04-19 18:00:12 +00:00
|
|
|
|
2017-04-26 16:56:10 +00:00
|
|
|
self.step.dependOn(&obj.step);
|
|
|
|
|
2018-01-09 05:07:01 +00:00
|
|
|
self.object_files.append(obj.getOutputPath()) catch unreachable;
|
2017-09-18 06:50:51 +00:00
|
|
|
|
|
|
|
// TODO should be some kind of isolated directory that only has this header in it
|
2018-01-09 05:07:01 +00:00
|
|
|
self.include_dirs.append(self.builder.cache_root) catch unreachable;
|
2019-02-25 16:37:54 +00:00
|
|
|
|
|
|
|
if (obj.link_libs.exists("c")) {
|
|
|
|
self.link_libs.put("c") catch unreachable;
|
|
|
|
}
|
2017-09-18 06:50:51 +00:00
|
|
|
}
|
|
|
|
|
2018-07-08 04:00:05 +00:00
|
|
|
pub fn addBuildOption(self: *LibExeObjStep, comptime T: type, name: []const u8, value: T) void {
|
|
|
|
const out = &std.io.BufferOutStream.init(&self.build_options_contents).stream;
|
|
|
|
out.print("pub const {} = {};\n", name, value) catch unreachable;
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addIncludeDir(self: *LibExeObjStep, path: []const u8) void {
|
2018-01-09 05:07:01 +00:00
|
|
|
self.include_dirs.append(path) catch unreachable;
|
2017-04-26 16:56:10 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addLibPath(self: *LibExeObjStep, path: []const u8) void {
|
2018-01-09 05:07:01 +00:00
|
|
|
self.lib_paths.append(path) catch unreachable;
|
2017-12-12 04:34:59 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn addPackagePath(self: *LibExeObjStep, name: []const u8, pkg_index_path: []const u8) void {
|
2018-11-13 13:08:37 +00:00
|
|
|
self.packages.append(Pkg{
|
2017-05-01 20:35:10 +00:00
|
|
|
.name = name,
|
|
|
|
.path = pkg_index_path,
|
2018-01-09 05:07:01 +00:00
|
|
|
}) catch unreachable;
|
2017-05-01 20:35:10 +00:00
|
|
|
}
|
|
|
|
|
2019-02-25 16:37:54 +00:00
|
|
|
pub fn setExecCmd(self: *LibExeObjStep, args: []const ?[]const u8) void {
|
|
|
|
assert(self.kind == Kind.Test);
|
|
|
|
self.exec_cmd_args = args;
|
2017-09-18 06:50:51 +00:00
|
|
|
}
|
|
|
|
|
2018-11-02 04:07:43 +00:00
|
|
|
pub fn enableSystemLinkerHack(self: *LibExeObjStep) void {
|
|
|
|
self.system_linker_hack = true;
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
fn make(step: *Step) !void {
|
2017-04-26 23:17:05 +00:00
|
|
|
const self = @fieldParentPtr(LibExeObjStep, "step", step);
|
2017-04-19 18:00:12 +00:00
|
|
|
const builder = self.builder;
|
|
|
|
|
2019-02-25 16:37:54 +00:00
|
|
|
if (self.root_src == null and self.object_files.len == 0 and
|
|
|
|
self.assembly_files.len == 0 and self.c_source_files.len == 0)
|
|
|
|
{
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("{}: linker needs 1 or more objects to link\n", self.step.name);
|
2017-04-19 18:00:12 +00:00
|
|
|
return error.NeedAnObject;
|
|
|
|
}
|
|
|
|
|
2017-05-04 18:05:06 +00:00
|
|
|
var zig_args = ArrayList([]const u8).init(builder.allocator);
|
2017-04-19 18:00:12 +00:00
|
|
|
defer zig_args.deinit();
|
|
|
|
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append(builder.zig_exe) catch unreachable;
|
2017-09-26 05:01:49 +00:00
|
|
|
|
2017-04-26 23:17:05 +00:00
|
|
|
const cmd = switch (self.kind) {
|
2017-09-16 05:00:59 +00:00
|
|
|
Kind.Lib => "build-lib",
|
|
|
|
Kind.Exe => "build-exe",
|
|
|
|
Kind.Obj => "build-obj",
|
2019-02-25 16:37:54 +00:00
|
|
|
Kind.Test => "test",
|
2017-04-19 18:00:12 +00:00
|
|
|
};
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append(cmd) catch unreachable;
|
2017-04-19 18:00:12 +00:00
|
|
|
|
2017-05-03 21:23:11 +00:00
|
|
|
if (self.root_src) |root_src| {
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append(builder.pathFromRoot(root_src)) catch unreachable;
|
2017-04-26 23:17:05 +00:00
|
|
|
}
|
|
|
|
|
2019-02-25 16:37:54 +00:00
|
|
|
for (self.c_source_files.toSliceConst()) |c_source_file| {
|
|
|
|
try zig_args.append("--c-source");
|
|
|
|
for (c_source_file.args) |arg| {
|
|
|
|
try zig_args.append(arg);
|
|
|
|
}
|
|
|
|
try zig_args.append(self.builder.pathFromRoot(c_source_file.source_path));
|
|
|
|
}
|
|
|
|
|
2018-07-08 04:00:05 +00:00
|
|
|
if (self.build_options_contents.len() > 0) {
|
2019-02-07 05:42:41 +00:00
|
|
|
const build_options_file = try os.path.join(
|
|
|
|
builder.allocator,
|
|
|
|
[][]const u8{ builder.cache_root, builder.fmt("{}_build_options.zig", self.name) },
|
|
|
|
);
|
2018-08-21 20:07:28 +00:00
|
|
|
try std.io.writeFile(build_options_file, self.build_options_contents.toSliceConst());
|
2018-07-08 04:00:05 +00:00
|
|
|
try zig_args.append("--pkg-begin");
|
|
|
|
try zig_args.append("build_options");
|
|
|
|
try zig_args.append(builder.pathFromRoot(build_options_file));
|
|
|
|
try zig_args.append("--pkg-end");
|
|
|
|
}
|
|
|
|
|
2019-02-25 16:37:54 +00:00
|
|
|
if (self.filter) |filter| {
|
|
|
|
try zig_args.append("--test-filter");
|
|
|
|
try zig_args.append(filter);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self.name_prefix.len != 0) {
|
|
|
|
try zig_args.append("--test-name-prefix");
|
|
|
|
try zig_args.append(self.name_prefix);
|
|
|
|
}
|
|
|
|
|
2017-04-19 18:00:12 +00:00
|
|
|
for (self.object_files.toSliceConst()) |object_file| {
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("--object") catch unreachable;
|
|
|
|
zig_args.append(builder.pathFromRoot(object_file)) catch unreachable;
|
2017-04-19 18:00:12 +00:00
|
|
|
}
|
|
|
|
|
2017-04-26 23:17:05 +00:00
|
|
|
for (self.assembly_files.toSliceConst()) |asm_file| {
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("--assembly") catch unreachable;
|
|
|
|
zig_args.append(builder.pathFromRoot(asm_file)) catch unreachable;
|
2017-04-26 23:17:05 +00:00
|
|
|
}
|
|
|
|
|
2018-01-09 05:07:01 +00:00
|
|
|
if (builder.verbose_tokenize) zig_args.append("--verbose-tokenize") catch unreachable;
|
|
|
|
if (builder.verbose_ast) zig_args.append("--verbose-ast") catch unreachable;
|
|
|
|
if (builder.verbose_cimport) zig_args.append("--verbose-cimport") catch unreachable;
|
|
|
|
if (builder.verbose_ir) zig_args.append("--verbose-ir") catch unreachable;
|
|
|
|
if (builder.verbose_llvm_ir) zig_args.append("--verbose-llvm-ir") catch unreachable;
|
|
|
|
if (builder.verbose_link or self.verbose_link) zig_args.append("--verbose-link") catch unreachable;
|
2019-02-25 16:37:54 +00:00
|
|
|
if (builder.verbose_cc or self.verbose_cc) zig_args.append("--verbose-cc") catch unreachable;
|
2017-04-19 18:00:12 +00:00
|
|
|
|
2017-09-18 06:50:51 +00:00
|
|
|
if (self.strip) {
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("--strip") catch unreachable;
|
2017-09-18 06:50:51 +00:00
|
|
|
}
|
|
|
|
|
2017-05-02 21:34:21 +00:00
|
|
|
switch (self.build_mode) {
|
|
|
|
builtin.Mode.Debug => {},
|
2018-01-09 05:07:01 +00:00
|
|
|
builtin.Mode.ReleaseSafe => zig_args.append("--release-safe") catch unreachable,
|
|
|
|
builtin.Mode.ReleaseFast => zig_args.append("--release-fast") catch unreachable,
|
2018-04-16 00:26:10 +00:00
|
|
|
builtin.Mode.ReleaseSmall => zig_args.append("--release-small") catch unreachable,
|
2017-04-19 18:00:12 +00:00
|
|
|
}
|
|
|
|
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("--cache-dir") catch unreachable;
|
|
|
|
zig_args.append(builder.pathFromRoot(builder.cache_root)) catch unreachable;
|
2017-04-30 22:56:24 +00:00
|
|
|
|
|
|
|
const output_path = builder.pathFromRoot(self.getOutputPath());
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("--output") catch unreachable;
|
|
|
|
zig_args.append(output_path) catch unreachable;
|
2017-04-30 22:56:24 +00:00
|
|
|
|
2019-02-25 18:34:25 +00:00
|
|
|
if (self.kind == Kind.Lib and !self.static) {
|
|
|
|
const output_lib_path = builder.pathFromRoot(self.getOutputLibPath());
|
|
|
|
zig_args.append("--output-lib") catch unreachable;
|
|
|
|
zig_args.append(output_lib_path) catch unreachable;
|
|
|
|
}
|
|
|
|
|
2019-02-25 19:27:03 +00:00
|
|
|
if (self.kind != Kind.Exe and self.root_src != null) {
|
2017-05-01 20:35:10 +00:00
|
|
|
const output_h_path = self.getOutputHPath();
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("--output-h") catch unreachable;
|
|
|
|
zig_args.append(builder.pathFromRoot(output_h_path)) catch unreachable;
|
2017-05-01 20:35:10 +00:00
|
|
|
}
|
2017-04-19 18:00:12 +00:00
|
|
|
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("--name") catch unreachable;
|
|
|
|
zig_args.append(self.name) catch unreachable;
|
2017-04-19 18:00:12 +00:00
|
|
|
|
2017-04-26 23:17:05 +00:00
|
|
|
if (self.kind == Kind.Lib and !self.static) {
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("--ver-major") catch unreachable;
|
|
|
|
zig_args.append(builder.fmt("{}", self.version.major)) catch unreachable;
|
2017-04-26 23:17:05 +00:00
|
|
|
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("--ver-minor") catch unreachable;
|
|
|
|
zig_args.append(builder.fmt("{}", self.version.minor)) catch unreachable;
|
2017-04-26 23:17:05 +00:00
|
|
|
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("--ver-patch") catch unreachable;
|
|
|
|
zig_args.append(builder.fmt("{}", self.version.patch)) catch unreachable;
|
2017-04-26 23:17:05 +00:00
|
|
|
}
|
2019-03-03 17:35:09 +00:00
|
|
|
if (self.static) {
|
2018-12-01 06:21:59 +00:00
|
|
|
zig_args.append("--static") catch unreachable;
|
|
|
|
}
|
2017-04-26 23:17:05 +00:00
|
|
|
|
2017-04-19 18:00:12 +00:00
|
|
|
switch (self.target) {
|
|
|
|
Target.Native => {},
|
|
|
|
Target.Cross => |cross_target| {
|
2019-02-26 20:51:32 +00:00
|
|
|
const triple = builder.fmt(
|
|
|
|
"{}{}-{}-{}",
|
|
|
|
@tagName(cross_target.arch),
|
|
|
|
Target.archSubArchName(cross_target.arch),
|
|
|
|
@tagName(cross_target.os),
|
|
|
|
@tagName(cross_target.abi),
|
|
|
|
);
|
|
|
|
|
|
|
|
try zig_args.append("-target");
|
|
|
|
try zig_args.append(triple);
|
2017-04-19 18:00:12 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-05-03 21:23:11 +00:00
|
|
|
if (self.linker_script) |linker_script| {
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("--linker-script") catch unreachable;
|
|
|
|
zig_args.append(linker_script) catch unreachable;
|
2017-04-19 18:00:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
var it = self.link_libs.iterator();
|
|
|
|
while (true) {
|
2018-06-10 05:13:51 +00:00
|
|
|
const entry = it.next() orelse break;
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("--library") catch unreachable;
|
|
|
|
zig_args.append(entry.key) catch unreachable;
|
2017-04-19 18:00:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-25 16:37:54 +00:00
|
|
|
if (self.exec_cmd_args) |exec_cmd_args| {
|
|
|
|
for (exec_cmd_args) |cmd_arg| {
|
|
|
|
if (cmd_arg) |arg| {
|
|
|
|
try zig_args.append("--test-cmd");
|
|
|
|
try zig_args.append(arg);
|
|
|
|
} else {
|
|
|
|
try zig_args.append("--test-cmd-bin");
|
|
|
|
}
|
|
|
|
}
|
2017-09-18 06:50:51 +00:00
|
|
|
}
|
2017-05-01 20:35:10 +00:00
|
|
|
for (self.packages.toSliceConst()) |pkg| {
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("--pkg-begin") catch unreachable;
|
|
|
|
zig_args.append(pkg.name) catch unreachable;
|
|
|
|
zig_args.append(builder.pathFromRoot(pkg.path)) catch unreachable;
|
|
|
|
zig_args.append("--pkg-end") catch unreachable;
|
2017-05-01 20:35:10 +00:00
|
|
|
}
|
|
|
|
|
2017-12-12 04:34:59 +00:00
|
|
|
for (self.include_dirs.toSliceConst()) |include_path| {
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("-isystem") catch unreachable;
|
|
|
|
zig_args.append(self.builder.pathFromRoot(include_path)) catch unreachable;
|
2017-12-12 04:34:59 +00:00
|
|
|
}
|
|
|
|
|
2017-04-26 23:17:05 +00:00
|
|
|
for (builder.include_paths.toSliceConst()) |include_path| {
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("-isystem") catch unreachable;
|
|
|
|
zig_args.append(builder.pathFromRoot(include_path)) catch unreachable;
|
2017-04-26 23:17:05 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 18:00:12 +00:00
|
|
|
for (builder.rpaths.toSliceConst()) |rpath| {
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("-rpath") catch unreachable;
|
|
|
|
zig_args.append(rpath) catch unreachable;
|
2017-04-19 18:00:12 +00:00
|
|
|
}
|
|
|
|
|
2017-12-12 04:34:59 +00:00
|
|
|
for (self.lib_paths.toSliceConst()) |lib_path| {
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("--library-path") catch unreachable;
|
|
|
|
zig_args.append(lib_path) catch unreachable;
|
2017-12-12 04:34:59 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 18:00:12 +00:00
|
|
|
for (builder.lib_paths.toSliceConst()) |lib_path| {
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("--library-path") catch unreachable;
|
|
|
|
zig_args.append(lib_path) catch unreachable;
|
2017-04-19 18:00:12 +00:00
|
|
|
}
|
|
|
|
|
2017-09-18 06:50:51 +00:00
|
|
|
for (self.full_path_libs.toSliceConst()) |full_path_lib| {
|
2019-02-25 16:37:54 +00:00
|
|
|
try zig_args.append("--library");
|
|
|
|
try zig_args.append(builder.pathFromRoot(full_path_lib));
|
|
|
|
|
|
|
|
const full_path_lib_abs = builder.pathFromRoot(full_path_lib);
|
|
|
|
if (os.path.dirname(full_path_lib_abs)) |dirname| {
|
|
|
|
try zig_args.append("-rpath");
|
|
|
|
try zig_args.append(dirname);
|
|
|
|
}
|
2017-09-18 06:50:51 +00:00
|
|
|
}
|
|
|
|
|
2017-09-23 21:59:30 +00:00
|
|
|
if (self.target.isDarwin()) {
|
|
|
|
var it = self.frameworks.iterator();
|
|
|
|
while (it.next()) |entry| {
|
2018-01-09 05:07:01 +00:00
|
|
|
zig_args.append("-framework") catch unreachable;
|
|
|
|
zig_args.append(entry.key) catch unreachable;
|
2017-09-23 21:59:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-02 04:07:43 +00:00
|
|
|
if (self.system_linker_hack) {
|
|
|
|
try zig_args.append("--system-linker-hack");
|
|
|
|
}
|
2018-07-25 01:28:54 +00:00
|
|
|
|
2019-02-06 19:32:20 +00:00
|
|
|
if (self.override_std_dir) |dir| {
|
|
|
|
try zig_args.append("--override-std-dir");
|
|
|
|
try zig_args.append(builder.pathFromRoot(dir));
|
|
|
|
}
|
2018-07-25 01:28:54 +00:00
|
|
|
|
2019-03-02 15:38:27 +00:00
|
|
|
if (self.main_pkg_path) |dir| {
|
|
|
|
try zig_args.append("--main-pkg-path");
|
|
|
|
try zig_args.append(builder.pathFromRoot(dir));
|
|
|
|
}
|
|
|
|
|
2018-01-07 21:51:46 +00:00
|
|
|
try builder.spawnChild(zig_args.toSliceConst());
|
2019-02-25 16:37:54 +00:00
|
|
|
|
|
|
|
if (self.kind == Kind.Lib and !self.static and self.target.wantSharedLibSymLinks()) {
|
|
|
|
try doAtomicSymLinks(builder.allocator, output_path, self.major_only_filename, self.name_only_filename);
|
|
|
|
}
|
2017-09-18 06:50:51 +00:00
|
|
|
}
|
2017-04-13 21:21:00 +00:00
|
|
|
};
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
pub const CommandStep = struct {
|
2017-04-13 21:21:00 +00:00
|
|
|
step: Step,
|
2018-05-31 14:56:59 +00:00
|
|
|
builder: *Builder,
|
2017-09-26 05:01:49 +00:00
|
|
|
argv: [][]const u8,
|
2017-04-30 22:56:24 +00:00
|
|
|
cwd: ?[]const u8,
|
2018-05-31 14:56:59 +00:00
|
|
|
env_map: *const BufMap,
|
2017-04-13 21:21:00 +00:00
|
|
|
|
2017-09-26 05:01:49 +00:00
|
|
|
/// ::argv is copied.
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn create(builder: *Builder, cwd: ?[]const u8, env_map: *const BufMap, argv: []const []const u8) *CommandStep {
|
2019-02-03 21:13:28 +00:00
|
|
|
const self = builder.allocator.create(CommandStep) catch unreachable;
|
|
|
|
self.* = CommandStep{
|
2017-04-17 07:20:56 +00:00
|
|
|
.builder = builder,
|
2017-09-26 05:01:49 +00:00
|
|
|
.step = Step.init(argv[0], builder.allocator, make),
|
2018-01-09 05:07:01 +00:00
|
|
|
.argv = builder.allocator.alloc([]u8, argv.len) catch unreachable,
|
2017-04-13 21:21:00 +00:00
|
|
|
.cwd = cwd,
|
|
|
|
.env_map = env_map,
|
2019-02-03 21:13:28 +00:00
|
|
|
};
|
2018-06-20 15:40:21 +00:00
|
|
|
|
2017-09-26 05:01:49 +00:00
|
|
|
mem.copy([]const u8, self.argv, argv);
|
|
|
|
self.step.name = self.argv[0];
|
2017-04-30 22:56:24 +00:00
|
|
|
return self;
|
2017-04-13 21:21:00 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
fn make(step: *Step) !void {
|
2017-04-18 06:28:05 +00:00
|
|
|
const self = @fieldParentPtr(CommandStep, "step", step);
|
2017-04-13 21:21:00 +00:00
|
|
|
|
2017-11-07 08:22:27 +00:00
|
|
|
const cwd = if (self.cwd) |cwd| self.builder.pathFromRoot(cwd) else self.builder.build_root;
|
2017-09-26 05:01:49 +00:00
|
|
|
return self.builder.spawnChildEnvMap(cwd, self.env_map, self.argv);
|
2017-04-13 21:21:00 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
const InstallArtifactStep = struct {
|
2017-09-18 06:50:51 +00:00
|
|
|
step: Step,
|
2018-05-31 14:56:59 +00:00
|
|
|
builder: *Builder,
|
|
|
|
artifact: *LibExeObjStep,
|
2017-09-18 06:50:51 +00:00
|
|
|
dest_file: []const u8,
|
|
|
|
|
2018-09-13 20:34:33 +00:00
|
|
|
const Self = @This();
|
2017-09-18 06:50:51 +00:00
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn create(builder: *Builder, artifact: *LibExeObjStep) *Self {
|
2017-09-18 06:50:51 +00:00
|
|
|
const dest_dir = switch (artifact.kind) {
|
|
|
|
LibExeObjStep.Kind.Obj => unreachable,
|
2019-02-25 16:37:54 +00:00
|
|
|
LibExeObjStep.Kind.Test => unreachable,
|
2017-09-18 06:50:51 +00:00
|
|
|
LibExeObjStep.Kind.Exe => builder.exe_dir,
|
|
|
|
LibExeObjStep.Kind.Lib => builder.lib_dir,
|
|
|
|
};
|
2019-02-03 21:13:28 +00:00
|
|
|
const self = builder.allocator.create(Self) catch unreachable;
|
|
|
|
self.* = Self{
|
2017-09-18 06:50:51 +00:00
|
|
|
.builder = builder,
|
|
|
|
.step = Step.init(builder.fmt("install {}", artifact.step.name), builder.allocator, make),
|
|
|
|
.artifact = artifact,
|
2019-02-07 05:42:41 +00:00
|
|
|
.dest_file = os.path.join(
|
|
|
|
builder.allocator,
|
|
|
|
[][]const u8{ dest_dir, artifact.out_filename },
|
|
|
|
) catch unreachable,
|
|
|
|
};
|
2017-09-18 06:50:51 +00:00
|
|
|
self.step.dependOn(&artifact.step);
|
|
|
|
builder.pushInstalledFile(self.dest_file);
|
|
|
|
if (self.artifact.kind == LibExeObjStep.Kind.Lib and !self.artifact.static) {
|
2019-02-07 05:42:41 +00:00
|
|
|
builder.pushInstalledFile(os.path.join(
|
|
|
|
builder.allocator,
|
|
|
|
[][]const u8{ builder.lib_dir, artifact.major_only_filename },
|
|
|
|
) catch unreachable);
|
|
|
|
builder.pushInstalledFile(os.path.join(
|
|
|
|
builder.allocator,
|
|
|
|
[][]const u8{ builder.lib_dir, artifact.name_only_filename },
|
|
|
|
) catch unreachable);
|
2017-04-17 10:45:44 +00:00
|
|
|
}
|
2017-09-18 06:50:51 +00:00
|
|
|
return self;
|
|
|
|
}
|
2017-04-17 10:45:44 +00:00
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
fn make(step: *Step) !void {
|
2017-09-18 06:50:51 +00:00
|
|
|
const self = @fieldParentPtr(Self, "step", step);
|
|
|
|
const builder = self.builder;
|
2017-04-17 10:45:44 +00:00
|
|
|
|
2018-02-11 01:55:13 +00:00
|
|
|
const mode = switch (builtin.os) {
|
|
|
|
builtin.Os.windows => {},
|
|
|
|
else => switch (self.artifact.kind) {
|
|
|
|
LibExeObjStep.Kind.Obj => unreachable,
|
2019-02-25 16:37:54 +00:00
|
|
|
LibExeObjStep.Kind.Test => unreachable,
|
2018-02-11 01:55:13 +00:00
|
|
|
LibExeObjStep.Kind.Exe => u32(0o755),
|
|
|
|
LibExeObjStep.Kind.Lib => if (self.artifact.static) u32(0o666) else u32(0o755),
|
|
|
|
},
|
2017-09-18 06:50:51 +00:00
|
|
|
};
|
2018-01-07 21:51:46 +00:00
|
|
|
try builder.copyFileMode(self.artifact.getOutputPath(), self.dest_file, mode);
|
2017-09-18 06:50:51 +00:00
|
|
|
if (self.artifact.kind == LibExeObjStep.Kind.Lib and !self.artifact.static) {
|
2018-05-10 04:29:49 +00:00
|
|
|
try doAtomicSymLinks(builder.allocator, self.dest_file, self.artifact.major_only_filename, self.artifact.name_only_filename);
|
2017-04-17 10:45:44 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-18 06:50:51 +00:00
|
|
|
};
|
2017-04-17 10:45:44 +00:00
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
pub const InstallFileStep = struct {
|
2017-04-17 10:45:44 +00:00
|
|
|
step: Step,
|
2018-05-31 14:56:59 +00:00
|
|
|
builder: *Builder,
|
2017-04-17 10:45:44 +00:00
|
|
|
src_path: []const u8,
|
|
|
|
dest_path: []const u8,
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn init(builder: *Builder, src_path: []const u8, dest_path: []const u8) InstallFileStep {
|
2018-11-13 13:08:37 +00:00
|
|
|
return InstallFileStep{
|
2017-04-17 10:45:44 +00:00
|
|
|
.builder = builder,
|
2017-04-19 19:38:12 +00:00
|
|
|
.step = Step.init(builder.fmt("install {}", src_path), builder.allocator, make),
|
2017-04-17 10:45:44 +00:00
|
|
|
.src_path = src_path,
|
|
|
|
.dest_path = dest_path,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
fn make(step: *Step) !void {
|
2017-04-18 06:28:05 +00:00
|
|
|
const self = @fieldParentPtr(InstallFileStep, "step", step);
|
2018-01-07 21:51:46 +00:00
|
|
|
try self.builder.copyFile(self.src_path, self.dest_path);
|
2017-04-17 10:45:44 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
pub const WriteFileStep = struct {
|
2017-04-19 05:13:15 +00:00
|
|
|
step: Step,
|
2018-05-31 14:56:59 +00:00
|
|
|
builder: *Builder,
|
2017-04-19 05:13:15 +00:00
|
|
|
file_path: []const u8,
|
|
|
|
data: []const u8,
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn init(builder: *Builder, file_path: []const u8, data: []const u8) WriteFileStep {
|
2018-11-13 13:08:37 +00:00
|
|
|
return WriteFileStep{
|
2017-04-19 05:13:15 +00:00
|
|
|
.builder = builder,
|
2017-04-19 19:38:12 +00:00
|
|
|
.step = Step.init(builder.fmt("writefile {}", file_path), builder.allocator, make),
|
2017-04-19 05:13:15 +00:00
|
|
|
.file_path = file_path,
|
|
|
|
.data = data,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
fn make(step: *Step) !void {
|
2017-04-19 05:13:15 +00:00
|
|
|
const self = @fieldParentPtr(WriteFileStep, "step", step);
|
|
|
|
const full_path = self.builder.pathFromRoot(self.file_path);
|
2018-06-14 20:15:32 +00:00
|
|
|
const full_path_dir = os.path.dirname(full_path) orelse ".";
|
2018-01-07 22:28:20 +00:00
|
|
|
os.makePath(self.builder.allocator, full_path_dir) catch |err| {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("unable to make path {}: {}\n", full_path_dir, @errorName(err));
|
2017-04-20 06:26:36 +00:00
|
|
|
return err;
|
2017-04-19 05:13:15 +00:00
|
|
|
};
|
2018-08-21 20:07:28 +00:00
|
|
|
io.writeFile(full_path, self.data) catch |err| {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("unable to write {}: {}\n", full_path, @errorName(err));
|
2017-04-20 06:26:36 +00:00
|
|
|
return err;
|
2017-04-19 05:13:15 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
pub const LogStep = struct {
|
2017-04-19 05:13:15 +00:00
|
|
|
step: Step,
|
2018-05-31 14:56:59 +00:00
|
|
|
builder: *Builder,
|
2017-04-19 05:13:15 +00:00
|
|
|
data: []const u8,
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn init(builder: *Builder, data: []const u8) LogStep {
|
2018-11-13 13:08:37 +00:00
|
|
|
return LogStep{
|
2017-04-19 05:13:15 +00:00
|
|
|
.builder = builder,
|
2017-04-19 19:38:12 +00:00
|
|
|
.step = Step.init(builder.fmt("log {}", data), builder.allocator, make),
|
2017-04-19 05:13:15 +00:00
|
|
|
.data = data,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
fn make(step: *Step) anyerror!void {
|
2017-04-19 05:13:15 +00:00
|
|
|
const self = @fieldParentPtr(LogStep, "step", step);
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("{}", self.data);
|
2017-04-19 05:13:15 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
pub const RemoveDirStep = struct {
|
2017-04-20 06:26:36 +00:00
|
|
|
step: Step,
|
2018-05-31 14:56:59 +00:00
|
|
|
builder: *Builder,
|
2017-04-20 06:26:36 +00:00
|
|
|
dir_path: []const u8,
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn init(builder: *Builder, dir_path: []const u8) RemoveDirStep {
|
2018-11-13 13:08:37 +00:00
|
|
|
return RemoveDirStep{
|
2017-04-20 06:26:36 +00:00
|
|
|
.builder = builder,
|
|
|
|
.step = Step.init(builder.fmt("RemoveDir {}", dir_path), builder.allocator, make),
|
|
|
|
.dir_path = dir_path,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
fn make(step: *Step) !void {
|
2017-04-20 06:26:36 +00:00
|
|
|
const self = @fieldParentPtr(RemoveDirStep, "step", step);
|
|
|
|
|
|
|
|
const full_path = self.builder.pathFromRoot(self.dir_path);
|
2018-01-07 22:28:20 +00:00
|
|
|
os.deleteTree(self.builder.allocator, full_path) catch |err| {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Unable to remove {}: {}\n", full_path, @errorName(err));
|
2017-04-20 06:26:36 +00:00
|
|
|
return err;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
pub const Step = struct {
|
2017-04-13 21:21:00 +00:00
|
|
|
name: []const u8,
|
2018-11-13 13:08:37 +00:00
|
|
|
makeFn: fn (self: *Step) anyerror!void,
|
2018-05-31 14:56:59 +00:00
|
|
|
dependencies: ArrayList(*Step),
|
2017-04-13 21:21:00 +00:00
|
|
|
loop_flag: bool,
|
|
|
|
done_flag: bool,
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
pub fn init(name: []const u8, allocator: *Allocator, makeFn: fn (*Step) anyerror!void) Step {
|
|
|
|
return Step{
|
2017-04-13 21:21:00 +00:00
|
|
|
.name = name,
|
|
|
|
.makeFn = makeFn,
|
2018-05-31 14:56:59 +00:00
|
|
|
.dependencies = ArrayList(*Step).init(allocator),
|
2017-04-13 21:21:00 +00:00
|
|
|
.loop_flag = false,
|
|
|
|
.done_flag = false,
|
2017-12-22 05:50:30 +00:00
|
|
|
};
|
2017-04-13 21:21:00 +00:00
|
|
|
}
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn initNoOp(name: []const u8, allocator: *Allocator) Step {
|
2017-12-22 05:50:30 +00:00
|
|
|
return init(name, allocator, makeNoOp);
|
2017-04-13 21:21:00 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn make(self: *Step) !void {
|
2018-05-10 04:29:49 +00:00
|
|
|
if (self.done_flag) return;
|
2017-04-13 21:21:00 +00:00
|
|
|
|
2018-01-07 21:51:46 +00:00
|
|
|
try self.makeFn(self);
|
2017-04-13 21:21:00 +00:00
|
|
|
self.done_flag = true;
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
pub fn dependOn(self: *Step, other: *Step) void {
|
2018-01-09 05:07:01 +00:00
|
|
|
self.dependencies.append(other) catch unreachable;
|
2017-04-13 21:21:00 +00:00
|
|
|
}
|
|
|
|
|
2018-11-13 13:08:37 +00:00
|
|
|
fn makeNoOp(self: *Step) anyerror!void {}
|
2017-04-13 21:21:00 +00:00
|
|
|
};
|
2017-04-30 22:56:24 +00:00
|
|
|
|
2018-05-31 14:56:59 +00:00
|
|
|
fn doAtomicSymLinks(allocator: *Allocator, output_path: []const u8, filename_major_only: []const u8, filename_name_only: []const u8) !void {
|
2018-06-14 20:15:32 +00:00
|
|
|
const out_dir = os.path.dirname(output_path) orelse ".";
|
2017-04-30 22:56:24 +00:00
|
|
|
const out_basename = os.path.basename(output_path);
|
|
|
|
// sym link for libfoo.so.1 to libfoo.so.1.2.3
|
2019-02-07 05:42:41 +00:00
|
|
|
const major_only_path = os.path.join(
|
|
|
|
allocator,
|
|
|
|
[][]const u8{ out_dir, filename_major_only },
|
|
|
|
) catch unreachable;
|
2018-01-07 22:28:20 +00:00
|
|
|
os.atomicSymLink(allocator, out_basename, major_only_path) catch |err| {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Unable to symlink {} -> {}\n", major_only_path, out_basename);
|
2017-04-30 22:56:24 +00:00
|
|
|
return err;
|
|
|
|
};
|
|
|
|
// sym link for libfoo.so to libfoo.so.1
|
2019-02-07 05:42:41 +00:00
|
|
|
const name_only_path = os.path.join(
|
|
|
|
allocator,
|
|
|
|
[][]const u8{ out_dir, filename_name_only },
|
|
|
|
) catch unreachable;
|
2018-01-07 22:28:20 +00:00
|
|
|
os.atomicSymLink(allocator, filename_major_only, name_only_path) catch |err| {
|
2017-10-31 08:47:55 +00:00
|
|
|
warn("Unable to symlink {} -> {}\n", name_only_path, filename_major_only);
|
2017-04-30 22:56:24 +00:00
|
|
|
return err;
|
|
|
|
};
|
|
|
|
}
|