2017-05-01 10:12:38 -07:00
|
|
|
const builtin = @import("builtin");
|
2017-03-31 02:48:15 -07:00
|
|
|
const io = @import("io.zig");
|
|
|
|
const mem = @import("mem.zig");
|
|
|
|
const debug = @import("debug.zig");
|
2017-04-13 14:21:00 -07:00
|
|
|
const assert = debug.assert;
|
2017-05-04 11:05:06 -07:00
|
|
|
const ArrayList = @import("array_list.zig").ArrayList;
|
2017-04-06 02:34:04 -07:00
|
|
|
const HashMap = @import("hash_map.zig").HashMap;
|
2017-03-31 02:48:15 -07:00
|
|
|
const Allocator = @import("mem.zig").Allocator;
|
2017-04-02 15:19:59 -07:00
|
|
|
const os = @import("os/index.zig");
|
|
|
|
const StdIo = os.ChildProcess.StdIo;
|
|
|
|
const Term = os.ChildProcess.Term;
|
2017-04-03 22:52:20 -07:00
|
|
|
const BufSet = @import("buf_set.zig").BufSet;
|
2017-04-13 14:21:00 -07:00
|
|
|
const BufMap = @import("buf_map.zig").BufMap;
|
2017-06-07 19:56:57 -07:00
|
|
|
const fmt_lib = @import("fmt/index.zig");
|
2017-03-31 02:48:15 -07:00
|
|
|
|
|
|
|
error ExtraArg;
|
2017-04-02 15:19:59 -07:00
|
|
|
error UncleanExit;
|
2017-04-13 14:21:00 -07:00
|
|
|
error InvalidStepName;
|
|
|
|
error DependencyLoopDetected;
|
|
|
|
error NoCompilerFound;
|
2017-04-19 11:00:12 -07:00
|
|
|
error NeedAnObject;
|
2017-03-31 02:48:15 -07:00
|
|
|
|
|
|
|
pub const Builder = struct {
|
2017-04-17 03:45:44 -07:00
|
|
|
uninstall_tls: TopLevelStep,
|
2017-04-30 18:03:23 -07:00
|
|
|
install_tls: TopLevelStep,
|
2017-04-17 03:45:44 -07:00
|
|
|
have_uninstall_step: bool,
|
2017-04-30 18:03:23 -07:00
|
|
|
have_install_step: bool,
|
2017-03-31 02:48:15 -07:00
|
|
|
allocator: &Allocator,
|
2017-05-04 11:05:06 -07:00
|
|
|
lib_paths: ArrayList([]const u8),
|
|
|
|
include_paths: ArrayList([]const u8),
|
|
|
|
rpaths: ArrayList([]const u8),
|
2017-04-06 02:34:04 -07:00
|
|
|
user_input_options: UserInputOptionsMap,
|
|
|
|
available_options_map: AvailableOptionsMap,
|
2017-05-04 11:05:06 -07:00
|
|
|
available_options_list: ArrayList(AvailableOption),
|
2017-04-06 02:34:04 -07:00
|
|
|
verbose: bool,
|
|
|
|
invalid_user_input: bool,
|
2017-04-13 14:21:00 -07:00
|
|
|
zig_exe: []const u8,
|
|
|
|
default_step: &Step,
|
|
|
|
env_map: BufMap,
|
2017-05-04 11:05:06 -07:00
|
|
|
top_level_steps: ArrayList(&TopLevelStep),
|
2017-04-13 14:21:00 -07:00
|
|
|
prefix: []const u8,
|
2017-04-17 03:45:44 -07:00
|
|
|
lib_dir: []const u8,
|
2017-04-30 18:03:23 -07:00
|
|
|
exe_dir: []const u8,
|
2017-05-04 11:05:06 -07:00
|
|
|
installed_files: ArrayList([]const u8),
|
2017-04-18 22:13:15 -07:00
|
|
|
build_root: []const u8,
|
2017-04-27 23:22:12 -07:00
|
|
|
cache_root: []const u8,
|
2017-05-09 18:20:09 -07:00
|
|
|
release_mode: ?builtin.Mode,
|
2017-04-06 02:34:04 -07: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);
|
|
|
|
|
|
|
|
const AvailableOption = struct {
|
|
|
|
name: []const u8,
|
|
|
|
type_id: TypeId,
|
|
|
|
description: []const u8,
|
|
|
|
};
|
|
|
|
|
|
|
|
const UserInputOption = struct {
|
|
|
|
name: []const u8,
|
|
|
|
value: UserValue,
|
|
|
|
used: bool,
|
|
|
|
};
|
|
|
|
|
|
|
|
const UserValue = enum {
|
|
|
|
Flag,
|
|
|
|
Scalar: []const u8,
|
2017-05-04 11:05:06 -07:00
|
|
|
List: ArrayList([]const u8),
|
2017-04-06 02:34:04 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
const TypeId = enum {
|
|
|
|
Bool,
|
|
|
|
Int,
|
|
|
|
Float,
|
|
|
|
String,
|
|
|
|
List,
|
|
|
|
};
|
2017-03-31 02:48:15 -07:00
|
|
|
|
2017-04-13 14:21:00 -07:00
|
|
|
const TopLevelStep = struct {
|
|
|
|
step: Step,
|
|
|
|
description: []const u8,
|
|
|
|
};
|
|
|
|
|
2017-04-27 23:22:12 -07:00
|
|
|
pub fn init(allocator: &Allocator, zig_exe: []const u8, build_root: []const u8,
|
|
|
|
cache_root: []const u8) -> Builder
|
|
|
|
{
|
2017-04-03 22:52:20 -07:00
|
|
|
var self = Builder {
|
2017-04-18 22:13:15 -07:00
|
|
|
.zig_exe = zig_exe,
|
|
|
|
.build_root = build_root,
|
2017-05-03 13:00:51 -07:00
|
|
|
.cache_root = %%os.path.relative(allocator, build_root, cache_root),
|
2017-04-06 02:34:04 -07:00
|
|
|
.verbose = false,
|
|
|
|
.invalid_user_input = false,
|
2017-03-31 02:48:15 -07:00
|
|
|
.allocator = allocator,
|
2017-05-04 11:05:06 -07:00
|
|
|
.lib_paths = ArrayList([]const u8).init(allocator),
|
|
|
|
.include_paths = ArrayList([]const u8).init(allocator),
|
|
|
|
.rpaths = ArrayList([]const u8).init(allocator),
|
2017-04-06 02:34:04 -07:00
|
|
|
.user_input_options = UserInputOptionsMap.init(allocator),
|
|
|
|
.available_options_map = AvailableOptionsMap.init(allocator),
|
2017-05-04 11:05:06 -07:00
|
|
|
.available_options_list = ArrayList(AvailableOption).init(allocator),
|
|
|
|
.top_level_steps = ArrayList(&TopLevelStep).init(allocator),
|
2017-04-13 14:21:00 -07:00
|
|
|
.default_step = undefined,
|
|
|
|
.env_map = %%os.getEnvMap(allocator),
|
|
|
|
.prefix = undefined,
|
2017-04-17 03:45:44 -07:00
|
|
|
.lib_dir = undefined,
|
2017-04-30 18:03:23 -07:00
|
|
|
.exe_dir = undefined,
|
2017-05-04 11:05:06 -07:00
|
|
|
.installed_files = ArrayList([]const u8).init(allocator),
|
2017-04-17 03:45:44 -07:00
|
|
|
.uninstall_tls = TopLevelStep {
|
|
|
|
.step = Step.init("uninstall", allocator, makeUninstall),
|
|
|
|
.description = "Remove build artifacts from prefix path",
|
|
|
|
},
|
|
|
|
.have_uninstall_step = false,
|
2017-04-30 18:03:23 -07:00
|
|
|
.install_tls = TopLevelStep {
|
|
|
|
.step = Step.initNoOp("install", allocator),
|
|
|
|
.description = "Copy build artifacts to prefix path",
|
|
|
|
},
|
|
|
|
.have_install_step = false,
|
2017-05-09 18:20:09 -07:00
|
|
|
.release_mode = null,
|
2017-04-03 22:52:20 -07:00
|
|
|
};
|
|
|
|
self.processNixOSEnvVars();
|
2017-04-13 14:21:00 -07:00
|
|
|
self.default_step = self.step("default", "Build the project");
|
2017-04-03 22:52:20 -07:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn deinit(self: &Builder) {
|
|
|
|
self.lib_paths.deinit();
|
|
|
|
self.include_paths.deinit();
|
|
|
|
self.rpaths.deinit();
|
2017-04-13 14:21:00 -07:00
|
|
|
self.env_map.deinit();
|
|
|
|
self.top_level_steps.deinit();
|
2017-03-31 02:48:15 -07:00
|
|
|
}
|
|
|
|
|
2017-04-13 14:21:00 -07:00
|
|
|
pub fn setInstallPrefix(self: &Builder, maybe_prefix: ?[]const u8) {
|
2017-04-17 03:45:44 -07:00
|
|
|
self.prefix = maybe_prefix ?? "/usr/local"; // TODO better default
|
|
|
|
self.lib_dir = %%os.path.join(self.allocator, self.prefix, "lib");
|
2017-04-30 18:03:23 -07:00
|
|
|
self.exe_dir = %%os.path.join(self.allocator, self.prefix, "bin");
|
2017-03-31 02:48:15 -07:00
|
|
|
}
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
pub fn addExecutable(self: &Builder, name: []const u8, root_src: ?[]const u8) -> &LibExeObjStep {
|
|
|
|
return LibExeObjStep.createExecutable(self, name, root_src);
|
2017-03-31 02:48:15 -07:00
|
|
|
}
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
pub fn addObject(self: &Builder, name: []const u8, root_src: []const u8) -> &LibExeObjStep {
|
|
|
|
return LibExeObjStep.createObject(self, name, root_src);
|
2017-04-20 22:56:12 -07:00
|
|
|
}
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
pub fn addSharedLibrary(self: &Builder, name: []const u8, root_src: ?[]const u8,
|
|
|
|
ver: &const Version) -> &LibExeObjStep
|
|
|
|
{
|
|
|
|
return LibExeObjStep.createSharedLibrary(self, name, root_src, ver);
|
2017-04-20 22:56:12 -07:00
|
|
|
}
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
pub fn addStaticLibrary(self: &Builder, name: []const u8, root_src: ?[]const u8) -> &LibExeObjStep {
|
|
|
|
return LibExeObjStep.createStaticLibrary(self, name, root_src);
|
2017-04-20 22:56:12 -07:00
|
|
|
}
|
|
|
|
|
2017-04-18 22:13:15 -07:00
|
|
|
pub fn addTest(self: &Builder, root_src: []const u8) -> &TestStep {
|
|
|
|
const test_step = %%self.allocator.create(TestStep);
|
|
|
|
*test_step = TestStep.init(self, root_src);
|
|
|
|
return test_step;
|
|
|
|
}
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
pub fn addAssemble(self: &Builder, name: []const u8, src: []const u8) -> &LibExeObjStep {
|
|
|
|
const obj_step = LibExeObjStep.createObject(self, name, null);
|
|
|
|
obj_step.addAssemblyFile(src);
|
|
|
|
return obj_step;
|
2017-04-19 11:00:12 -07:00
|
|
|
}
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
pub fn addCStaticLibrary(self: &Builder, name: []const u8) -> &LibExeObjStep {
|
|
|
|
return LibExeObjStep.createCStaticLibrary(self, name);
|
2017-04-13 14:21:00 -07:00
|
|
|
}
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
pub fn addCSharedLibrary(self: &Builder, name: []const u8, ver: &const Version) -> &LibExeObjStep {
|
|
|
|
return LibExeObjStep.createCSharedLibrary(self, name, ver);
|
2017-04-13 14:21:00 -07:00
|
|
|
}
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
pub fn addCExecutable(self: &Builder, name: []const u8) -> &LibExeObjStep {
|
|
|
|
return LibExeObjStep.createCExecutable(self, name);
|
2017-04-30 16:48:45 -07:00
|
|
|
}
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
pub fn addCObject(self: &Builder, name: []const u8, src: []const u8) -> &LibExeObjStep {
|
|
|
|
return LibExeObjStep.createCObject(self, name, src);
|
2017-04-13 14:21:00 -07:00
|
|
|
}
|
|
|
|
|
2017-05-02 15:22:08 -07:00
|
|
|
/// ::args are copied.
|
2017-04-30 15:56:24 -07:00
|
|
|
pub fn addCommand(self: &Builder, cwd: ?[]const u8, env_map: &const BufMap,
|
2017-04-13 14:21:00 -07:00
|
|
|
path: []const u8, args: []const []const u8) -> &CommandStep
|
|
|
|
{
|
2017-04-30 15:56:24 -07:00
|
|
|
return CommandStep.create(self, cwd, env_map, path, args);
|
2017-04-13 14:21:00 -07:00
|
|
|
}
|
|
|
|
|
2017-04-18 22:13:15 -07:00
|
|
|
pub fn addWriteFile(self: &Builder, file_path: []const u8, data: []const u8) -> &WriteFileStep {
|
|
|
|
const write_file_step = %%self.allocator.create(WriteFileStep);
|
|
|
|
*write_file_step = WriteFileStep.init(self, file_path, data);
|
|
|
|
return write_file_step;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn addLog(self: &Builder, comptime format: []const u8, args: ...) -> &LogStep {
|
2017-04-19 12:38:12 -07:00
|
|
|
const data = self.fmt(format, args);
|
2017-04-18 22:13:15 -07:00
|
|
|
const log_step = %%self.allocator.create(LogStep);
|
|
|
|
*log_step = LogStep.init(self, data);
|
|
|
|
return log_step;
|
|
|
|
}
|
|
|
|
|
2017-04-19 23:26:36 -07:00
|
|
|
pub fn addRemoveDirTree(self: &Builder, dir_path: []const u8) -> &RemoveDirStep {
|
|
|
|
const remove_dir_step = %%self.allocator.create(RemoveDirStep);
|
|
|
|
*remove_dir_step = RemoveDirStep.init(self, dir_path);
|
|
|
|
return remove_dir_step;
|
|
|
|
}
|
|
|
|
|
2017-04-13 14:21:00 -07:00
|
|
|
pub fn version(self: &const Builder, major: u32, minor: u32, patch: u32) -> Version {
|
|
|
|
Version {
|
|
|
|
.major = major,
|
|
|
|
.minor = minor,
|
|
|
|
.patch = patch,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-03 22:52:20 -07:00
|
|
|
pub fn addCIncludePath(self: &Builder, path: []const u8) {
|
|
|
|
%%self.include_paths.append(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn addRPath(self: &Builder, path: []const u8) {
|
|
|
|
%%self.rpaths.append(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn addLibPath(self: &Builder, path: []const u8) {
|
|
|
|
%%self.lib_paths.append(path);
|
|
|
|
}
|
|
|
|
|
2017-04-13 14:21:00 -07:00
|
|
|
pub fn make(self: &Builder, step_names: []const []const u8) -> %void {
|
2017-05-04 11:05:06 -07:00
|
|
|
var wanted_steps = ArrayList(&Step).init(self.allocator);
|
2017-04-13 14:21:00 -07:00
|
|
|
defer wanted_steps.deinit();
|
2017-04-03 01:58:19 -07:00
|
|
|
|
2017-04-13 14:21:00 -07:00
|
|
|
if (step_names.len == 0) {
|
|
|
|
%%wanted_steps.append(&self.default_step);
|
|
|
|
} else {
|
|
|
|
for (step_names) |step_name| {
|
|
|
|
const s = %return self.getTopLevelStepByName(step_name);
|
|
|
|
%%wanted_steps.append(s);
|
2017-04-06 02:34:04 -07:00
|
|
|
}
|
2017-04-13 14:21:00 -07:00
|
|
|
}
|
2017-04-06 02:34:04 -07:00
|
|
|
|
2017-04-13 14:21:00 -07:00
|
|
|
for (wanted_steps.toSliceConst()) |s| {
|
|
|
|
%return self.makeOneStep(s);
|
|
|
|
}
|
|
|
|
}
|
2017-04-03 01:58:19 -07:00
|
|
|
|
2017-04-30 18:03:23 -07:00
|
|
|
pub fn getInstallStep(self: &Builder) -> &Step {
|
|
|
|
if (self.have_install_step)
|
|
|
|
return &self.install_tls.step;
|
|
|
|
|
|
|
|
%%self.top_level_steps.append(&self.install_tls);
|
|
|
|
self.have_install_step = true;
|
|
|
|
return &self.install_tls.step;
|
|
|
|
}
|
|
|
|
|
2017-04-17 03:45:44 -07:00
|
|
|
pub fn getUninstallStep(self: &Builder) -> &Step {
|
|
|
|
if (self.have_uninstall_step)
|
|
|
|
return &self.uninstall_tls.step;
|
|
|
|
|
|
|
|
%%self.top_level_steps.append(&self.uninstall_tls);
|
|
|
|
self.have_uninstall_step = true;
|
|
|
|
return &self.uninstall_tls.step;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn makeUninstall(uninstall_step: &Step) -> %void {
|
2017-04-18 22:13:15 -07:00
|
|
|
const uninstall_tls = @fieldParentPtr(TopLevelStep, "step", uninstall_step);
|
|
|
|
const self = @fieldParentPtr(Builder, "uninstall_tls", uninstall_tls);
|
2017-04-17 03:45:44 -07:00
|
|
|
|
|
|
|
for (self.installed_files.toSliceConst()) |installed_file| {
|
2017-04-30 18:03:23 -07:00
|
|
|
if (self.verbose) {
|
|
|
|
%%io.stderr.printf("rm {}\n", installed_file);
|
|
|
|
}
|
2017-04-17 03:45:44 -07:00
|
|
|
_ = os.deleteFile(self.allocator, installed_file);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO remove empty directories
|
|
|
|
}
|
|
|
|
|
2017-04-13 14:21:00 -07:00
|
|
|
fn makeOneStep(self: &Builder, s: &Step) -> %void {
|
|
|
|
if (s.loop_flag) {
|
|
|
|
%%io.stderr.printf("Dependency loop detected:\n {}\n", s.name);
|
|
|
|
return error.DependencyLoopDetected;
|
|
|
|
}
|
|
|
|
s.loop_flag = true;
|
2017-04-03 01:58:19 -07:00
|
|
|
|
2017-04-13 14:21:00 -07:00
|
|
|
for (s.dependencies.toSlice()) |dep| {
|
|
|
|
self.makeOneStep(dep) %% |err| {
|
|
|
|
if (err == error.DependencyLoopDetected) {
|
|
|
|
%%io.stderr.printf(" {}\n", s.name);
|
2017-04-03 22:52:20 -07:00
|
|
|
}
|
2017-04-13 14:21:00 -07:00
|
|
|
return err;
|
|
|
|
};
|
|
|
|
}
|
2017-04-03 22:52:20 -07:00
|
|
|
|
2017-04-13 14:21:00 -07:00
|
|
|
s.loop_flag = false;
|
2017-04-03 22:52:20 -07:00
|
|
|
|
2017-04-13 14:21:00 -07:00
|
|
|
%return s.make();
|
|
|
|
}
|
2017-04-03 22:52:20 -07:00
|
|
|
|
2017-04-13 14:21:00 -07:00
|
|
|
fn getTopLevelStepByName(self: &Builder, name: []const u8) -> %&Step {
|
|
|
|
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 02:34:04 -07:00
|
|
|
}
|
2017-04-03 22:52:20 -07:00
|
|
|
}
|
2017-04-30 10:01:35 -07:00
|
|
|
%%io.stderr.printf("Cannot run step '{}' because it does not exist\n", name);
|
2017-04-13 14:21:00 -07:00
|
|
|
return error.InvalidStepName;
|
2017-04-03 22:52:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn processNixOSEnvVars(self: &Builder) {
|
2017-05-03 14:23:11 -07:00
|
|
|
if (os.getEnv("NIX_CFLAGS_COMPILE")) |nix_cflags_compile| {
|
2017-04-03 22:52:20 -07:00
|
|
|
var it = mem.split(nix_cflags_compile, ' ');
|
|
|
|
while (true) {
|
|
|
|
const word = it.next() ?? break;
|
|
|
|
if (mem.eql(u8, word, "-isystem")) {
|
|
|
|
const include_path = it.next() ?? {
|
|
|
|
%%io.stderr.printf("Expected argument after -isystem in NIX_CFLAGS_COMPILE\n");
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
self.addCIncludePath(include_path);
|
|
|
|
} else {
|
|
|
|
%%io.stderr.printf("Unrecognized C flag from NIX_CFLAGS_COMPILE: {}\n", word);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-05-03 14:23:11 -07:00
|
|
|
if (os.getEnv("NIX_LDFLAGS")) |nix_ldflags| {
|
2017-04-03 22:52:20 -07:00
|
|
|
var it = mem.split(nix_ldflags, ' ');
|
|
|
|
while (true) {
|
|
|
|
const word = it.next() ?? break;
|
|
|
|
if (mem.eql(u8, word, "-rpath")) {
|
|
|
|
const rpath = it.next() ?? {
|
|
|
|
%%io.stderr.printf("Expected argument after -rpath in NIX_LDFLAGS\n");
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
self.addRPath(rpath);
|
|
|
|
} else if (word.len > 2 and word[0] == '-' and word[1] == 'L') {
|
2017-05-19 07:39:59 -07:00
|
|
|
const lib_path = word[2..];
|
2017-04-03 22:52:20 -07:00
|
|
|
self.addLibPath(lib_path);
|
|
|
|
} else {
|
|
|
|
%%io.stderr.printf("Unrecognized C flag from NIX_LDFLAGS: {}\n", word);
|
|
|
|
break;
|
|
|
|
}
|
2017-04-02 15:19:59 -07:00
|
|
|
}
|
2017-03-31 02:48:15 -07:00
|
|
|
}
|
|
|
|
}
|
2017-04-06 02:34:04 -07:00
|
|
|
|
|
|
|
pub fn option(self: &Builder, comptime T: type, name: []const u8, description: []const u8) -> ?T {
|
2017-04-18 22:13:15 -07:00
|
|
|
const type_id = comptime typeToEnum(T);
|
2017-04-06 02:34:04 -07:00
|
|
|
const available_option = AvailableOption {
|
|
|
|
.name = name,
|
|
|
|
.type_id = type_id,
|
|
|
|
.description = description,
|
|
|
|
};
|
2017-05-03 14:23:11 -07:00
|
|
|
if (%%self.available_options_map.put(name, available_option) != null) {
|
2017-04-06 02:34:04 -07:00
|
|
|
debug.panic("Option '{}' declared twice", name);
|
|
|
|
}
|
|
|
|
%%self.available_options_list.append(available_option);
|
|
|
|
|
|
|
|
const entry = self.user_input_options.get(name) ?? return null;
|
|
|
|
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-04-06 10:59:11 -07:00
|
|
|
%%io.stderr.printf("Expected -D{} to be a boolean, but received '{}'\n", name, s);
|
2017-04-06 02:34:04 -07:00
|
|
|
self.markInvalidUserInput();
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
UserValue.List => {
|
2017-04-06 10:59:11 -07:00
|
|
|
%%io.stderr.printf("Expected -D{} to be a boolean, but received a list.\n", name);
|
2017-04-06 02:34:04 -07: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-18 22:13:15 -07:00
|
|
|
TypeId.String => switch (entry.value.value) {
|
|
|
|
UserValue.Flag => {
|
|
|
|
%%io.stderr.printf("Expected -D{} to be a string, but received a boolean.\n", name);
|
|
|
|
self.markInvalidUserInput();
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
UserValue.List => {
|
|
|
|
%%io.stderr.printf("Expected -D{} to be a string, but received a list.\n", name);
|
|
|
|
self.markInvalidUserInput();
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
UserValue.Scalar => |s| return s,
|
|
|
|
},
|
2017-04-06 02:34:04 -07:00
|
|
|
TypeId.List => debug.panic("TODO list options to build script"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-13 14:21:00 -07:00
|
|
|
pub fn step(self: &Builder, name: []const u8, description: []const u8) -> &Step {
|
|
|
|
const step_info = %%self.allocator.create(TopLevelStep);
|
|
|
|
*step_info = TopLevelStep {
|
|
|
|
.step = Step.initNoOp(name, self.allocator),
|
|
|
|
.description = description,
|
|
|
|
};
|
|
|
|
%%self.top_level_steps.append(step_info);
|
|
|
|
return &step_info.step;
|
|
|
|
}
|
|
|
|
|
2017-05-02 14:34:21 -07:00
|
|
|
pub fn standardReleaseOptions(self: &Builder) -> builtin.Mode {
|
2017-05-09 18:20:09 -07:00
|
|
|
if (self.release_mode) |mode| return mode;
|
|
|
|
|
2017-05-02 14:34:21 -07:00
|
|
|
const release_safe = self.option(bool, "release-safe", "optimizations on and safety on") ?? false;
|
|
|
|
const release_fast = self.option(bool, "release-fast", "optimizations on and safety off") ?? false;
|
|
|
|
|
2017-05-09 18:20:09 -07:00
|
|
|
const mode = if (release_safe and !release_fast) {
|
|
|
|
builtin.Mode.ReleaseSafe
|
2017-05-02 14:34:21 -07:00
|
|
|
} else if (release_fast and !release_safe) {
|
2017-05-09 18:20:09 -07:00
|
|
|
builtin.Mode.ReleaseFast
|
2017-05-02 14:34:21 -07:00
|
|
|
} else if (!release_fast and !release_safe) {
|
2017-05-09 18:20:09 -07:00
|
|
|
builtin.Mode.Debug
|
2017-05-02 14:34:21 -07:00
|
|
|
} else {
|
|
|
|
%%io.stderr.printf("Both -Drelease-safe and -Drelease-fast specified");
|
|
|
|
self.markInvalidUserInput();
|
2017-05-09 18:20:09 -07:00
|
|
|
builtin.Mode.Debug
|
|
|
|
};
|
|
|
|
self.release_mode = mode;
|
|
|
|
return mode;
|
2017-05-02 14:34:21 -07:00
|
|
|
}
|
|
|
|
|
2017-04-06 02:34:04 -07:00
|
|
|
pub fn addUserInputOption(self: &Builder, name: []const u8, value: []const u8) -> bool {
|
2017-05-03 14:23:11 -07:00
|
|
|
if (%%self.user_input_options.put(name, UserInputOption {
|
2017-04-06 02:34:04 -07:00
|
|
|
.name = name,
|
|
|
|
.value = UserValue.Scalar { value },
|
|
|
|
.used = false,
|
2017-04-21 13:46:33 -07:00
|
|
|
})) |*prev_value| {
|
2017-04-23 16:59:55 -07:00
|
|
|
// option already exists
|
2017-04-06 02:34:04 -07:00
|
|
|
switch (prev_value.value) {
|
|
|
|
UserValue.Scalar => |s| {
|
2017-04-23 16:59:55 -07:00
|
|
|
// turn it into a list
|
2017-05-04 11:05:06 -07:00
|
|
|
var list = ArrayList([]const u8).init(self.allocator);
|
2017-04-06 02:34:04 -07:00
|
|
|
%%list.append(s);
|
|
|
|
%%list.append(value);
|
2017-04-23 16:59:55 -07:00
|
|
|
_ = %%self.user_input_options.put(name, UserInputOption {
|
2017-04-06 02:34:04 -07:00
|
|
|
.name = name,
|
|
|
|
.value = UserValue.List { list },
|
|
|
|
.used = false,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
UserValue.List => |*list| {
|
2017-04-23 16:59:55 -07:00
|
|
|
// append to the list
|
2017-04-06 02:34:04 -07:00
|
|
|
%%list.append(value);
|
2017-04-23 16:59:55 -07:00
|
|
|
_ = %%self.user_input_options.put(name, UserInputOption {
|
2017-04-06 02:34:04 -07:00
|
|
|
.name = name,
|
|
|
|
.value = UserValue.List { *list },
|
|
|
|
.used = false,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
UserValue.Flag => {
|
2017-04-06 10:59:11 -07:00
|
|
|
%%io.stderr.printf("Option '-D{}={}' conflicts with flag '-D{}'.\n", name, value, name);
|
2017-04-06 02:34:04 -07:00
|
|
|
return true;
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn addUserInputFlag(self: &Builder, name: []const u8) -> bool {
|
2017-05-03 14:23:11 -07:00
|
|
|
if (%%self.user_input_options.put(name, UserInputOption {
|
2017-04-06 02:34:04 -07:00
|
|
|
.name = name,
|
|
|
|
.value = UserValue.Flag,
|
|
|
|
.used = false,
|
2017-04-21 13:46:33 -07:00
|
|
|
})) |*prev_value| {
|
2017-04-06 02:34:04 -07:00
|
|
|
switch (prev_value.value) {
|
|
|
|
UserValue.Scalar => |s| {
|
2017-04-06 10:59:11 -07:00
|
|
|
%%io.stderr.printf("Flag '-D{}' conflicts with option '-D{}={}'.\n", name, name, s);
|
2017-04-06 02:34:04 -07:00
|
|
|
return true;
|
|
|
|
},
|
|
|
|
UserValue.List => {
|
2017-04-06 10:59:11 -07:00
|
|
|
%%io.stderr.printf("Flag '-D{}' conflicts with multiple options of the same name.\n", name);
|
2017-04-06 02:34:04 -07:00
|
|
|
return true;
|
|
|
|
},
|
|
|
|
UserValue.Flag => {},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn typeToEnum(comptime T: type) -> TypeId {
|
2017-05-17 09:26:35 -07:00
|
|
|
switch (@typeId(T)) {
|
|
|
|
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-04-06 02:34:04 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn markInvalidUserInput(self: &Builder) {
|
|
|
|
self.invalid_user_input = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn typeIdName(id: TypeId) -> []const u8 {
|
|
|
|
return switch (id) {
|
2017-04-06 15:07:38 -07:00
|
|
|
TypeId.Bool => "bool",
|
|
|
|
TypeId.Int => "int",
|
|
|
|
TypeId.Float => "float",
|
|
|
|
TypeId.String => "string",
|
|
|
|
TypeId.List => "list",
|
2017-04-06 02:34:04 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn validateUserInputDidItFail(self: &Builder) -> bool {
|
|
|
|
// make sure all args are used
|
|
|
|
var it = self.user_input_options.iterator();
|
|
|
|
while (true) {
|
|
|
|
const entry = it.next() ?? break;
|
|
|
|
if (!entry.value.used) {
|
2017-04-06 10:59:11 -07:00
|
|
|
%%io.stderr.printf("Invalid option: -D{}\n\n", entry.key);
|
2017-04-06 02:34:04 -07:00
|
|
|
self.markInvalidUserInput();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return self.invalid_user_input;
|
|
|
|
}
|
2017-04-16 23:58:42 -07:00
|
|
|
|
2017-04-20 22:56:12 -07:00
|
|
|
fn spawnChild(self: &Builder, exe_path: []const u8, args: []const []const u8) -> %void {
|
2017-04-30 15:56:24 -07:00
|
|
|
return self.spawnChildEnvMap(null, &self.env_map, exe_path, args);
|
2017-04-17 00:20:56 -07:00
|
|
|
}
|
|
|
|
|
2017-04-30 15:56:24 -07:00
|
|
|
fn spawnChildEnvMap(self: &Builder, cwd: ?[]const u8, env_map: &const BufMap,
|
|
|
|
exe_path: []const u8, args: []const []const u8) -> %void
|
2017-04-20 22:56:12 -07:00
|
|
|
{
|
2017-04-16 23:58:42 -07:00
|
|
|
if (self.verbose) {
|
2017-05-03 14:23:11 -07:00
|
|
|
if (cwd) |yes_cwd| %%io.stderr.print("cd {}; ", yes_cwd);
|
2017-04-30 15:56:24 -07:00
|
|
|
%%io.stderr.print("{}", exe_path);
|
2017-04-16 23:58:42 -07:00
|
|
|
for (args) |arg| {
|
2017-04-30 15:56:24 -07:00
|
|
|
%%io.stderr.print(" {}", arg);
|
2017-04-16 23:58:42 -07:00
|
|
|
}
|
|
|
|
%%io.stderr.printf("\n");
|
|
|
|
}
|
|
|
|
|
2017-04-30 15:56:24 -07:00
|
|
|
var child = os.ChildProcess.spawn(exe_path, args, cwd, env_map,
|
2017-09-07 20:10:23 -07:00
|
|
|
StdIo.Inherit, StdIo.Inherit, StdIo.Inherit, null, self.allocator) %% |err|
|
2017-04-20 22:56:12 -07:00
|
|
|
{
|
|
|
|
%%io.stderr.printf("Unable to spawn {}: {}\n", exe_path, @errorName(err));
|
|
|
|
return err;
|
|
|
|
};
|
2017-04-16 23:58:42 -07:00
|
|
|
|
2017-04-20 22:56:12 -07:00
|
|
|
const term = child.wait() %% |err| {
|
|
|
|
%%io.stderr.printf("Unable to spawn {}: {}\n", exe_path, @errorName(err));
|
|
|
|
return err;
|
|
|
|
};
|
2017-04-16 23:58:42 -07:00
|
|
|
switch (term) {
|
2017-09-07 20:10:23 -07:00
|
|
|
Term.Exited => |code| {
|
2017-04-16 23:58:42 -07:00
|
|
|
if (code != 0) {
|
2017-04-20 22:56:12 -07:00
|
|
|
%%io.stderr.printf("Process {} exited with error code {}\n", exe_path, code);
|
|
|
|
return error.UncleanExit;
|
2017-04-16 23:58:42 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
else => {
|
2017-04-20 22:56:12 -07:00
|
|
|
%%io.stderr.printf("Process {} terminated unexpectedly\n", exe_path);
|
|
|
|
return error.UncleanExit;
|
2017-04-16 23:58:42 -07:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2017-04-17 03:45:44 -07:00
|
|
|
|
2017-04-30 10:01:35 -07:00
|
|
|
pub fn makePath(self: &Builder, path: []const u8) -> %void {
|
2017-05-03 13:00:51 -07:00
|
|
|
os.makePath(self.allocator, self.pathFromRoot(path)) %% |err| {
|
2017-04-30 10:01:35 -07:00
|
|
|
%%io.stderr.printf("Unable to create path {}: {}\n", path, @errorName(err));
|
|
|
|
return err;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-04-30 19:09:44 -07:00
|
|
|
pub fn installArtifact(self: &Builder, artifact: &LibExeObjStep) {
|
|
|
|
self.getInstallStep().dependOn(&self.addInstallArtifact(artifact).step);
|
2017-04-17 03:45:44 -07:00
|
|
|
}
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
pub fn addInstallArtifact(self: &Builder, artifact: &LibExeObjStep) -> &InstallArtifactStep {
|
|
|
|
return InstallArtifactStep.create(self, artifact);
|
2017-04-30 18:03:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
///::dest_rel_path is relative to prefix path or it can be an absolute path
|
|
|
|
pub fn installFile(self: &Builder, src_path: []const u8, dest_rel_path: []const u8) {
|
|
|
|
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
|
|
|
|
pub fn addInstallFile(self: &Builder, src_path: []const u8, dest_rel_path: []const u8) -> &InstallFileStep {
|
|
|
|
const full_dest_path = %%os.path.resolve(self.allocator, self.prefix, dest_rel_path);
|
|
|
|
self.pushInstalledFile(full_dest_path);
|
2017-04-17 03:45:44 -07:00
|
|
|
|
|
|
|
const install_step = %%self.allocator.create(InstallFileStep);
|
|
|
|
*install_step = InstallFileStep.init(self, src_path, full_dest_path);
|
|
|
|
return install_step;
|
|
|
|
}
|
|
|
|
|
2017-04-30 18:03:23 -07:00
|
|
|
pub fn pushInstalledFile(self: &Builder, full_path: []const u8) {
|
2017-04-17 03:45:44 -07:00
|
|
|
_ = self.getUninstallStep();
|
|
|
|
%%self.installed_files.append(full_path);
|
|
|
|
}
|
|
|
|
|
2017-04-30 19:09:44 -07:00
|
|
|
fn copyFile(self: &Builder, source_path: []const u8, dest_path: []const u8) -> %void {
|
|
|
|
return self.copyFileMode(source_path, dest_path, 0o666);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn copyFileMode(self: &Builder, source_path: []const u8, dest_path: []const u8, mode: usize) -> %void {
|
|
|
|
if (self.verbose) {
|
|
|
|
%%io.stderr.printf("cp {} {}\n", source_path, dest_path);
|
|
|
|
}
|
|
|
|
|
2017-04-23 08:09:26 -07:00
|
|
|
const dirname = os.path.dirname(dest_path);
|
2017-04-30 15:56:24 -07:00
|
|
|
const abs_source_path = self.pathFromRoot(source_path);
|
2017-04-23 08:09:26 -07:00
|
|
|
os.makePath(self.allocator, dirname) %% |err| {
|
2017-04-30 19:09:44 -07:00
|
|
|
%%io.stderr.printf("Unable to create path {}: {}\n", dirname, @errorName(err));
|
|
|
|
return err;
|
2017-04-23 08:09:26 -07:00
|
|
|
};
|
2017-04-30 19:09:44 -07:00
|
|
|
os.copyFileMode(self.allocator, abs_source_path, dest_path, mode) %% |err| {
|
|
|
|
%%io.stderr.printf("Unable to copy {} to {}: {}\n", abs_source_path, dest_path, @errorName(err));
|
|
|
|
return err;
|
2017-04-17 03:45:44 -07:00
|
|
|
};
|
|
|
|
}
|
2017-04-18 22:13:15 -07:00
|
|
|
|
|
|
|
fn pathFromRoot(self: &Builder, rel_path: []const u8) -> []u8 {
|
2017-04-20 22:56:12 -07:00
|
|
|
return %%os.path.resolve(self.allocator, self.build_root, rel_path);
|
2017-04-18 22:13:15 -07:00
|
|
|
}
|
2017-04-19 12:38:12 -07:00
|
|
|
|
|
|
|
pub fn fmt(self: &Builder, comptime format: []const u8, args: ...) -> []u8 {
|
|
|
|
return %%fmt_lib.allocPrint(self.allocator, format, args);
|
|
|
|
}
|
2017-04-13 14:21:00 -07:00
|
|
|
};
|
2017-04-06 02:34:04 -07:00
|
|
|
|
2017-04-13 14:21:00 -07:00
|
|
|
const Version = struct {
|
|
|
|
major: u32,
|
|
|
|
minor: u32,
|
|
|
|
patch: u32,
|
2017-03-31 02:48:15 -07:00
|
|
|
};
|
|
|
|
|
2017-04-03 01:58:19 -07:00
|
|
|
const CrossTarget = struct {
|
2017-05-01 10:12:38 -07:00
|
|
|
arch: builtin.Arch,
|
|
|
|
os: builtin.Os,
|
|
|
|
environ: builtin.Environ,
|
2017-04-03 01:58:19 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
const Target = enum {
|
|
|
|
Native,
|
|
|
|
Cross: CrossTarget,
|
2017-04-16 11:14:11 -07:00
|
|
|
|
|
|
|
pub fn oFileExt(self: &const Target) -> []const u8 {
|
|
|
|
const environ = switch (*self) {
|
2017-05-01 10:12:38 -07:00
|
|
|
Target.Native => builtin.environ,
|
2017-04-16 11:14:11 -07:00
|
|
|
Target.Cross => |t| t.environ,
|
|
|
|
};
|
|
|
|
return switch (environ) {
|
2017-05-01 10:12:38 -07:00
|
|
|
builtin.Environ.msvc => ".obj",
|
2017-04-16 11:14:11 -07:00
|
|
|
else => ".o",
|
|
|
|
};
|
|
|
|
}
|
2017-04-19 11:00:12 -07:00
|
|
|
|
|
|
|
pub fn exeFileExt(self: &const Target) -> []const u8 {
|
|
|
|
const target_os = switch (*self) {
|
2017-05-01 10:12:38 -07:00
|
|
|
Target.Native => builtin.os,
|
2017-04-19 11:00:12 -07:00
|
|
|
Target.Cross => |t| t.os,
|
|
|
|
};
|
|
|
|
return switch (target_os) {
|
2017-05-01 10:12:38 -07:00
|
|
|
builtin.Os.windows => ".exe",
|
2017-04-19 11:00:12 -07:00
|
|
|
else => "",
|
|
|
|
};
|
|
|
|
}
|
2017-04-03 01:58:19 -07:00
|
|
|
};
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
pub const LibExeObjStep = struct {
|
2017-04-13 14:21:00 -07:00
|
|
|
step: Step,
|
|
|
|
builder: &Builder,
|
2017-03-31 02:48:15 -07:00
|
|
|
name: []const u8,
|
2017-04-03 01:58:19 -07:00
|
|
|
target: Target,
|
2017-04-03 22:52:20 -07:00
|
|
|
link_libs: BufSet,
|
2017-09-17 23:50:51 -07:00
|
|
|
linker_script: ?[]const u8,
|
|
|
|
out_filename: []const u8,
|
2017-04-18 22:13:15 -07:00
|
|
|
output_path: ?[]const u8,
|
2017-09-17 23:50:51 -07:00
|
|
|
static: bool,
|
2017-04-20 22:56:12 -07:00
|
|
|
version: Version,
|
2017-09-17 23:50:51 -07:00
|
|
|
object_files: ArrayList([]const u8),
|
|
|
|
build_mode: builtin.Mode,
|
|
|
|
kind: Kind,
|
2017-04-30 19:09:44 -07:00
|
|
|
major_only_filename: []const u8,
|
|
|
|
name_only_filename: []const u8,
|
2017-09-17 23:50:51 -07:00
|
|
|
strip: bool,
|
|
|
|
full_path_libs: ArrayList([]const u8),
|
|
|
|
need_flat_namespace_hack: bool,
|
|
|
|
is_zig: bool,
|
|
|
|
cflags: ArrayList([]const u8),
|
|
|
|
include_dirs: ArrayList([]const u8),
|
|
|
|
disable_libc: bool,
|
|
|
|
|
|
|
|
// zig only stuff
|
|
|
|
root_src: ?[]const u8,
|
|
|
|
verbose: bool,
|
|
|
|
output_h_path: ?[]const u8,
|
|
|
|
out_h_filename: []const u8,
|
2017-05-04 11:05:06 -07:00
|
|
|
assembly_files: ArrayList([]const u8),
|
|
|
|
packages: ArrayList(Pkg),
|
2017-05-01 13:35:10 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
// C only stuff
|
|
|
|
source_files: ArrayList([]const u8),
|
|
|
|
object_src: []const u8,
|
|
|
|
|
2017-05-01 13:35:10 -07:00
|
|
|
const Pkg = struct {
|
|
|
|
name: []const u8,
|
|
|
|
path: []const u8,
|
|
|
|
};
|
2017-04-20 22:56:12 -07:00
|
|
|
|
|
|
|
const Kind = enum {
|
|
|
|
Exe,
|
|
|
|
Lib,
|
2017-04-26 16:17:05 -07:00
|
|
|
Obj,
|
2017-04-20 22:56:12 -07:00
|
|
|
};
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
pub fn createSharedLibrary(builder: &Builder, name: []const u8, root_src: ?[]const u8,
|
|
|
|
ver: &const Version) -> &LibExeObjStep
|
|
|
|
{
|
|
|
|
const self = %%builder.allocator.create(LibExeObjStep);
|
|
|
|
*self = initExtraArgs(builder, name, root_src, Kind.Lib, false, ver);
|
|
|
|
return self;
|
2017-04-20 22:56:12 -07:00
|
|
|
}
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
pub fn createCSharedLibrary(builder: &Builder, name: []const u8, version: &const Version) -> &LibExeObjStep {
|
|
|
|
const self = %%builder.allocator.create(LibExeObjStep);
|
|
|
|
*self = initC(builder, name, Kind.Lib, version, false);
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
pub fn createStaticLibrary(builder: &Builder, name: []const u8, root_src: ?[]const u8) -> &LibExeObjStep {
|
|
|
|
const self = %%builder.allocator.create(LibExeObjStep);
|
|
|
|
*self = initExtraArgs(builder, name, root_src, Kind.Lib, true, builder.version(0, 0, 0));
|
|
|
|
return self;
|
2017-04-20 22:56:12 -07:00
|
|
|
}
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
pub fn createCStaticLibrary(builder: &Builder, name: []const u8) -> &LibExeObjStep {
|
|
|
|
const self = %%builder.allocator.create(LibExeObjStep);
|
|
|
|
*self = initC(builder, name, Kind.Lib, builder.version(0, 0, 0), true);
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
pub fn createObject(builder: &Builder, name: []const u8, root_src: []const u8) -> &LibExeObjStep {
|
|
|
|
const self = %%builder.allocator.create(LibExeObjStep);
|
|
|
|
*self = initExtraArgs(builder, name, root_src, Kind.Obj, false, builder.version(0, 0, 0));
|
|
|
|
return self;
|
2017-04-20 22:56:12 -07:00
|
|
|
}
|
2017-04-03 22:52:20 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
pub fn createCObject(builder: &Builder, name: []const u8, src: []const u8) -> &LibExeObjStep {
|
|
|
|
const self = %%builder.allocator.create(LibExeObjStep);
|
|
|
|
*self = initC(builder, name, Kind.Obj, builder.version(0, 0, 0), false);
|
|
|
|
self.object_src = src;
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
pub fn createExecutable(builder: &Builder, name: []const u8, root_src: ?[]const u8) -> &LibExeObjStep {
|
|
|
|
const self = %%builder.allocator.create(LibExeObjStep);
|
|
|
|
*self = initExtraArgs(builder, name, root_src, Kind.Exe, false, builder.version(0, 0, 0));
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
pub fn createCExecutable(builder: &Builder, name: []const u8) -> &LibExeObjStep {
|
|
|
|
const self = %%builder.allocator.create(LibExeObjStep);
|
|
|
|
*self = initC(builder, name, Kind.Exe, builder.version(0, 0, 0), false);
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
fn initExtraArgs(builder: &Builder, name: []const u8, root_src: ?[]const u8, kind: Kind,
|
|
|
|
static: bool, ver: &const Version) -> LibExeObjStep
|
2017-04-20 22:56:12 -07:00
|
|
|
{
|
2017-04-26 16:17:05 -07:00
|
|
|
var self = LibExeObjStep {
|
2017-09-17 23:50:51 -07:00
|
|
|
.strip = false,
|
2017-04-13 14:21:00 -07:00
|
|
|
.builder = builder,
|
|
|
|
.verbose = false,
|
2017-05-02 14:34:21 -07:00
|
|
|
.build_mode = builtin.Mode.Debug,
|
2017-04-20 22:56:12 -07:00
|
|
|
.static = static,
|
|
|
|
.kind = kind,
|
2017-04-13 14:21:00 -07:00
|
|
|
.root_src = root_src,
|
|
|
|
.name = name,
|
|
|
|
.target = Target.Native,
|
2017-04-28 07:46:01 -07:00
|
|
|
.linker_script = null,
|
2017-04-13 14:21:00 -07:00
|
|
|
.link_libs = BufSet.init(builder.allocator),
|
|
|
|
.step = Step.init(name, builder.allocator, make),
|
2017-04-18 22:13:15 -07:00
|
|
|
.output_path = null,
|
2017-04-30 15:56:24 -07:00
|
|
|
.output_h_path = null,
|
2017-04-20 22:56:12 -07:00
|
|
|
.version = *ver,
|
|
|
|
.out_filename = undefined,
|
2017-04-30 15:56:24 -07:00
|
|
|
.out_h_filename = builder.fmt("{}.h", name),
|
2017-04-30 19:09:44 -07:00
|
|
|
.major_only_filename = undefined,
|
|
|
|
.name_only_filename = undefined,
|
2017-05-04 11:05:06 -07: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-17 23:50:51 -07:00
|
|
|
.is_zig = true,
|
|
|
|
.full_path_libs = ArrayList([]const u8).init(builder.allocator),
|
|
|
|
.need_flat_namespace_hack = false,
|
|
|
|
.cflags = ArrayList([]const u8).init(builder.allocator),
|
|
|
|
.source_files = undefined,
|
|
|
|
.include_dirs = ArrayList([]const u8).init(builder.allocator),
|
|
|
|
.object_src = undefined,
|
|
|
|
.disable_libc = true,
|
|
|
|
};
|
|
|
|
self.computeOutFileNames();
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn initC(builder: &Builder, name: []const u8, kind: Kind, version: &const Version, static: bool) -> LibExeObjStep {
|
|
|
|
var self = LibExeObjStep {
|
|
|
|
.builder = builder,
|
|
|
|
.name = name,
|
|
|
|
.kind = kind,
|
|
|
|
.version = *version,
|
|
|
|
.static = static,
|
|
|
|
.target = Target.Native,
|
|
|
|
.cflags = ArrayList([]const u8).init(builder.allocator),
|
|
|
|
.source_files = ArrayList([]const u8).init(builder.allocator),
|
|
|
|
.object_files = ArrayList([]const u8).init(builder.allocator),
|
|
|
|
.step = Step.init(name, builder.allocator, make),
|
|
|
|
.link_libs = BufSet.init(builder.allocator),
|
|
|
|
.full_path_libs = ArrayList([]const u8).init(builder.allocator),
|
|
|
|
.include_dirs = ArrayList([]const u8).init(builder.allocator),
|
|
|
|
.output_path = null,
|
|
|
|
.out_filename = undefined,
|
|
|
|
.major_only_filename = undefined,
|
|
|
|
.name_only_filename = undefined,
|
|
|
|
.object_src = undefined,
|
|
|
|
.build_mode = builtin.Mode.Debug,
|
|
|
|
.strip = false,
|
|
|
|
.need_flat_namespace_hack = false,
|
|
|
|
.disable_libc = false,
|
|
|
|
.is_zig = false,
|
|
|
|
.linker_script = null,
|
|
|
|
|
|
|
|
.root_src = undefined,
|
|
|
|
.verbose = undefined,
|
|
|
|
.output_h_path = undefined,
|
|
|
|
.out_h_filename = undefined,
|
|
|
|
.assembly_files = undefined,
|
|
|
|
.packages = undefined,
|
2017-04-20 22:56:12 -07:00
|
|
|
};
|
|
|
|
self.computeOutFileNames();
|
|
|
|
return self;
|
2017-04-13 14:21:00 -07:00
|
|
|
}
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
fn computeOutFileNames(self: &LibExeObjStep) {
|
2017-04-20 22:56:12 -07:00
|
|
|
switch (self.kind) {
|
2017-04-26 16:17:05 -07:00
|
|
|
Kind.Obj => {
|
|
|
|
self.out_filename = self.builder.fmt("{}{}", self.name, self.target.oFileExt());
|
|
|
|
},
|
2017-04-20 22:56:12 -07:00
|
|
|
Kind.Exe => {
|
|
|
|
self.out_filename = self.builder.fmt("{}{}", self.name, self.target.exeFileExt());
|
|
|
|
},
|
|
|
|
Kind.Lib => {
|
|
|
|
if (self.static) {
|
|
|
|
self.out_filename = self.builder.fmt("lib{}.a", self.name);
|
|
|
|
} else {
|
2017-08-27 14:16:42 -07:00
|
|
|
const target_os = switch (self.target) {
|
|
|
|
Target.Native => builtin.os,
|
|
|
|
Target.Cross => |t| t.os,
|
|
|
|
};
|
|
|
|
switch (target_os) {
|
|
|
|
builtin.Os.darwin, builtin.Os.ios, builtin.Os.macosx => {
|
2017-09-23 10:27:36 -07:00
|
|
|
self.out_filename = self.builder.fmt("lib{}.{d}.{d}.{d}.dylib",
|
2017-08-27 14:16:42 -07:00
|
|
|
self.name, self.version.major, self.version.minor, self.version.patch);
|
2017-09-23 10:27:36 -07:00
|
|
|
self.major_only_filename = self.builder.fmt("lib{}.{d}.dylib", self.name, self.version.major);
|
2017-08-27 14:16:42 -07:00
|
|
|
self.name_only_filename = self.builder.fmt("lib{}.dylib", self.name);
|
|
|
|
},
|
|
|
|
builtin.Os.windows => {
|
|
|
|
self.out_filename = self.builder.fmt("lib{}.dll", self.name);
|
|
|
|
},
|
|
|
|
else => {
|
|
|
|
self.out_filename = self.builder.fmt("lib{}.so.{d}.{d}.{d}",
|
|
|
|
self.name, self.version.major, self.version.minor, self.version.patch);
|
|
|
|
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);
|
|
|
|
},
|
|
|
|
}
|
2017-04-20 22:56:12 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
2017-04-03 22:52:20 -07:00
|
|
|
}
|
2017-04-03 01:58:19 -07:00
|
|
|
|
2017-05-01 10:12:38 -07:00
|
|
|
pub fn setTarget(self: &LibExeObjStep, target_arch: builtin.Arch, target_os: builtin.Os,
|
|
|
|
target_environ: builtin.Environ)
|
|
|
|
{
|
2017-04-03 01:58:19 -07:00
|
|
|
self.target = Target.Cross {
|
|
|
|
CrossTarget {
|
|
|
|
.arch = target_arch,
|
|
|
|
.os = target_os,
|
|
|
|
.environ = target_environ,
|
|
|
|
}
|
|
|
|
};
|
2017-04-26 16:17:05 -07:00
|
|
|
self.computeOutFileNames();
|
2017-04-03 01:58:19 -07:00
|
|
|
}
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
// TODO respect this in the C args
|
2017-04-26 16:17:05 -07:00
|
|
|
pub fn setLinkerScriptPath(self: &LibExeObjStep, path: []const u8) {
|
2017-04-28 07:46:01 -07:00
|
|
|
self.linker_script = path;
|
2017-04-03 01:58:19 -07:00
|
|
|
}
|
2017-04-03 22:52:20 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
pub fn linkLibrary(self: &LibExeObjStep, lib: &LibExeObjStep) {
|
|
|
|
assert(self.kind != Kind.Obj);
|
|
|
|
assert(lib.kind == Kind.Lib);
|
|
|
|
|
|
|
|
self.step.dependOn(&lib.step);
|
|
|
|
|
|
|
|
%%self.full_path_libs.append(lib.getOutputPath());
|
|
|
|
|
|
|
|
// TODO should be some kind of isolated directory that only has this header in it
|
|
|
|
%%self.include_dirs.append(self.builder.cache_root);
|
|
|
|
self.need_flat_namespace_hack = true;
|
|
|
|
}
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
pub fn linkSystemLibrary(self: &LibExeObjStep, name: []const u8) {
|
2017-09-17 23:50:51 -07:00
|
|
|
assert(self.kind != Kind.Obj);
|
2017-04-03 22:52:20 -07:00
|
|
|
%%self.link_libs.put(name);
|
|
|
|
}
|
2017-04-06 02:34:04 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
pub fn addSourceFile(self: &LibExeObjStep, file: []const u8) {
|
|
|
|
assert(self.kind != Kind.Obj);
|
|
|
|
assert(!self.is_zig);
|
|
|
|
%%self.source_files.append(file);
|
|
|
|
}
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
pub fn setVerbose(self: &LibExeObjStep, value: bool) {
|
2017-04-19 11:00:12 -07:00
|
|
|
self.verbose = value;
|
|
|
|
}
|
|
|
|
|
2017-05-02 14:34:21 -07:00
|
|
|
pub fn setBuildMode(self: &LibExeObjStep, mode: builtin.Mode) {
|
|
|
|
self.build_mode = mode;
|
2017-04-19 11:00:12 -07:00
|
|
|
}
|
|
|
|
|
2017-09-18 15:01:58 -07:00
|
|
|
pub fn setOutputPath(self: &LibExeObjStep, file_path: []const u8) {
|
|
|
|
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 11:00:12 -07:00
|
|
|
}
|
|
|
|
|
2017-04-30 15:56:24 -07:00
|
|
|
pub fn getOutputPath(self: &LibExeObjStep) -> []const u8 {
|
2017-05-03 14:23:11 -07:00
|
|
|
if (self.output_path) |output_path| {
|
2017-04-30 15:56:24 -07:00
|
|
|
output_path
|
|
|
|
} else {
|
2017-05-03 13:00:51 -07:00
|
|
|
%%os.path.join(self.builder.allocator, self.builder.cache_root, self.out_filename)
|
2017-04-30 15:56:24 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-18 15:01:58 -07:00
|
|
|
pub fn setOutputHPath(self: &LibExeObjStep, file_path: []const u8) {
|
|
|
|
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 15:56:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn getOutputHPath(self: &LibExeObjStep) -> []const u8 {
|
2017-05-03 14:23:11 -07:00
|
|
|
if (self.output_h_path) |output_h_path| {
|
2017-04-30 15:56:24 -07:00
|
|
|
output_h_path
|
|
|
|
} else {
|
|
|
|
%%os.path.join(self.builder.allocator, self.builder.cache_root, self.out_h_filename)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
pub fn addAssemblyFile(self: &LibExeObjStep, path: []const u8) {
|
|
|
|
%%self.assembly_files.append(path);
|
2017-04-19 11:00:12 -07:00
|
|
|
}
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
pub fn addObjectFile(self: &LibExeObjStep, path: []const u8) {
|
|
|
|
assert(self.kind != Kind.Obj);
|
2017-04-19 11:00:12 -07:00
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
%%self.object_files.append(path);
|
2017-04-19 11:00:12 -07:00
|
|
|
}
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
pub fn addObject(self: &LibExeObjStep, obj: &LibExeObjStep) {
|
|
|
|
assert(obj.kind == Kind.Obj);
|
|
|
|
assert(self.kind != Kind.Obj);
|
2017-04-19 11:00:12 -07:00
|
|
|
|
2017-04-26 09:56:10 -07:00
|
|
|
self.step.dependOn(&obj.step);
|
|
|
|
|
2017-04-30 15:56:24 -07:00
|
|
|
%%self.object_files.append(obj.getOutputPath());
|
2017-09-17 23:50:51 -07:00
|
|
|
|
|
|
|
// TODO make this lazy instead of stateful
|
|
|
|
if (!obj.disable_libc) {
|
|
|
|
self.disable_libc = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO should be some kind of isolated directory that only has this header in it
|
|
|
|
%%self.include_dirs.append(self.builder.cache_root);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO put include_dirs in zig command line
|
|
|
|
pub fn addIncludeDir(self: &LibExeObjStep, path: []const u8) {
|
|
|
|
%%self.include_dirs.append(path);
|
2017-04-26 09:56:10 -07:00
|
|
|
}
|
|
|
|
|
2017-05-01 13:35:10 -07:00
|
|
|
pub fn addPackagePath(self: &LibExeObjStep, name: []const u8, pkg_index_path: []const u8) {
|
2017-09-17 23:50:51 -07:00
|
|
|
assert(self.is_zig);
|
|
|
|
|
2017-05-01 13:35:10 -07:00
|
|
|
%%self.packages.append(Pkg {
|
|
|
|
.name = name,
|
|
|
|
.path = pkg_index_path,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
pub fn addCompileFlags(self: &LibExeObjStep, flags: []const []const u8) {
|
|
|
|
for (flags) |flag| {
|
|
|
|
%%self.cflags.append(flag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn setNoStdLib(self: &LibExeObjStep, disable: bool) {
|
|
|
|
assert(!self.is_zig);
|
|
|
|
self.disable_libc = disable;
|
|
|
|
}
|
|
|
|
|
2017-04-19 11:00:12 -07:00
|
|
|
fn make(step: &Step) -> %void {
|
2017-04-26 16:17:05 -07:00
|
|
|
const self = @fieldParentPtr(LibExeObjStep, "step", step);
|
2017-09-17 23:50:51 -07:00
|
|
|
return if (self.is_zig) self.makeZig() else self.makeC();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn makeZig(self: &LibExeObjStep) -> %void {
|
2017-04-19 11:00:12 -07:00
|
|
|
const builder = self.builder;
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
assert(self.is_zig);
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
if (self.root_src == null and self.object_files.len == 0 and self.assembly_files.len == 0) {
|
2017-09-17 23:50:51 -07:00
|
|
|
%%io.stderr.printf("{}: linker needs 1 or more objects to link\n", self.step.name);
|
2017-04-19 11:00:12 -07:00
|
|
|
return error.NeedAnObject;
|
|
|
|
}
|
|
|
|
|
2017-05-04 11:05:06 -07:00
|
|
|
var zig_args = ArrayList([]const u8).init(builder.allocator);
|
2017-04-19 11:00:12 -07:00
|
|
|
defer zig_args.deinit();
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
const cmd = switch (self.kind) {
|
2017-09-15 22:00:59 -07:00
|
|
|
Kind.Lib => "build-lib",
|
|
|
|
Kind.Exe => "build-exe",
|
|
|
|
Kind.Obj => "build-obj",
|
2017-04-19 11:00:12 -07:00
|
|
|
};
|
|
|
|
%%zig_args.append(cmd);
|
|
|
|
|
2017-05-03 14:23:11 -07:00
|
|
|
if (self.root_src) |root_src| {
|
2017-04-26 16:17:05 -07:00
|
|
|
%%zig_args.append(builder.pathFromRoot(root_src));
|
|
|
|
}
|
|
|
|
|
2017-04-19 11:00:12 -07:00
|
|
|
for (self.object_files.toSliceConst()) |object_file| {
|
2017-04-26 16:17:05 -07:00
|
|
|
%%zig_args.append("--object");
|
2017-04-19 11:00:12 -07:00
|
|
|
%%zig_args.append(builder.pathFromRoot(object_file));
|
|
|
|
}
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
for (self.assembly_files.toSliceConst()) |asm_file| {
|
|
|
|
%%zig_args.append("--assembly");
|
|
|
|
%%zig_args.append(builder.pathFromRoot(asm_file));
|
|
|
|
}
|
|
|
|
|
2017-04-19 11:00:12 -07:00
|
|
|
if (self.verbose) {
|
|
|
|
%%zig_args.append("--verbose");
|
|
|
|
}
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
if (self.strip) {
|
|
|
|
%%zig_args.append("--strip");
|
|
|
|
}
|
|
|
|
|
2017-05-02 14:34:21 -07:00
|
|
|
switch (self.build_mode) {
|
|
|
|
builtin.Mode.Debug => {},
|
|
|
|
builtin.Mode.ReleaseSafe => %%zig_args.append("--release-safe"),
|
|
|
|
builtin.Mode.ReleaseFast => %%zig_args.append("--release-fast"),
|
2017-04-19 11:00:12 -07:00
|
|
|
}
|
|
|
|
|
2017-04-30 15:56:24 -07:00
|
|
|
%%zig_args.append("--cache-dir");
|
2017-05-03 13:00:51 -07:00
|
|
|
%%zig_args.append(builder.pathFromRoot(builder.cache_root));
|
2017-04-30 15:56:24 -07:00
|
|
|
|
|
|
|
const output_path = builder.pathFromRoot(self.getOutputPath());
|
|
|
|
%%zig_args.append("--output");
|
|
|
|
%%zig_args.append(output_path);
|
|
|
|
|
2017-05-01 13:35:10 -07:00
|
|
|
if (self.kind != Kind.Exe) {
|
|
|
|
const output_h_path = self.getOutputHPath();
|
|
|
|
%%zig_args.append("--output-h");
|
|
|
|
%%zig_args.append(builder.pathFromRoot(output_h_path));
|
|
|
|
}
|
2017-04-19 11:00:12 -07:00
|
|
|
|
|
|
|
%%zig_args.append("--name");
|
|
|
|
%%zig_args.append(self.name);
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
if (self.kind == Kind.Lib and !self.static) {
|
|
|
|
%%zig_args.append("--ver-major");
|
|
|
|
%%zig_args.append(builder.fmt("{}", self.version.major));
|
|
|
|
|
|
|
|
%%zig_args.append("--ver-minor");
|
|
|
|
%%zig_args.append(builder.fmt("{}", self.version.minor));
|
|
|
|
|
|
|
|
%%zig_args.append("--ver-patch");
|
|
|
|
%%zig_args.append(builder.fmt("{}", self.version.patch));
|
|
|
|
}
|
|
|
|
|
2017-04-19 11:00:12 -07:00
|
|
|
switch (self.target) {
|
|
|
|
Target.Native => {},
|
|
|
|
Target.Cross => |cross_target| {
|
|
|
|
%%zig_args.append("--target-arch");
|
|
|
|
%%zig_args.append(@enumTagName(cross_target.arch));
|
|
|
|
|
|
|
|
%%zig_args.append("--target-os");
|
|
|
|
%%zig_args.append(@enumTagName(cross_target.os));
|
|
|
|
|
|
|
|
%%zig_args.append("--target-environ");
|
|
|
|
%%zig_args.append(@enumTagName(cross_target.environ));
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-05-03 14:23:11 -07:00
|
|
|
if (self.linker_script) |linker_script| {
|
2017-04-28 07:46:01 -07:00
|
|
|
%%zig_args.append("--linker-script");
|
|
|
|
%%zig_args.append(linker_script);
|
2017-04-19 11:00:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
var it = self.link_libs.iterator();
|
|
|
|
while (true) {
|
|
|
|
const entry = it.next() ?? break;
|
|
|
|
%%zig_args.append("--library");
|
|
|
|
%%zig_args.append(entry.key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
if (!self.disable_libc) {
|
|
|
|
%%zig_args.append("--library");
|
|
|
|
%%zig_args.append("c");
|
|
|
|
}
|
|
|
|
|
2017-05-01 13:35:10 -07:00
|
|
|
for (self.packages.toSliceConst()) |pkg| {
|
|
|
|
%%zig_args.append("--pkg-begin");
|
|
|
|
%%zig_args.append(pkg.name);
|
|
|
|
%%zig_args.append(builder.pathFromRoot(pkg.path));
|
|
|
|
%%zig_args.append("--pkg-end");
|
|
|
|
}
|
|
|
|
|
2017-04-26 16:17:05 -07:00
|
|
|
for (builder.include_paths.toSliceConst()) |include_path| {
|
|
|
|
%%zig_args.append("-isystem");
|
2017-08-20 01:03:36 -07:00
|
|
|
%%zig_args.append(builder.pathFromRoot(include_path));
|
2017-04-26 16:17:05 -07:00
|
|
|
}
|
|
|
|
|
2017-04-19 11:00:12 -07:00
|
|
|
for (builder.rpaths.toSliceConst()) |rpath| {
|
|
|
|
%%zig_args.append("-rpath");
|
|
|
|
%%zig_args.append(rpath);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (builder.lib_paths.toSliceConst()) |lib_path| {
|
|
|
|
%%zig_args.append("--library-path");
|
|
|
|
%%zig_args.append(lib_path);
|
|
|
|
}
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
for (self.full_path_libs.toSliceConst()) |full_path_lib| {
|
|
|
|
%%zig_args.append("--library");
|
|
|
|
%%zig_args.append(builder.pathFromRoot(full_path_lib));
|
|
|
|
}
|
|
|
|
|
2017-04-27 16:40:35 -07:00
|
|
|
%return builder.spawnChild(builder.zig_exe, zig_args.toSliceConst());
|
2017-04-26 16:17:05 -07:00
|
|
|
|
|
|
|
if (self.kind == Kind.Lib and !self.static) {
|
2017-04-30 19:09:44 -07:00
|
|
|
%return doAtomicSymLinks(builder.allocator, output_path, self.major_only_filename,
|
|
|
|
self.name_only_filename);
|
2017-04-26 16:17:05 -07:00
|
|
|
}
|
2017-04-19 11:00:12 -07:00
|
|
|
}
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
fn appendCompileFlags(self: &LibExeObjStep, args: &ArrayList([]const u8)) {
|
|
|
|
if (!self.strip) {
|
|
|
|
%%args.append("-g");
|
|
|
|
}
|
|
|
|
switch (self.build_mode) {
|
|
|
|
builtin.Mode.Debug => {
|
2017-09-18 12:30:07 -07:00
|
|
|
if (self.disable_libc) {
|
|
|
|
%%args.append("-fno-stack-protector");
|
|
|
|
} else {
|
2017-09-17 23:50:51 -07:00
|
|
|
%%args.append("-fstack-protector-strong");
|
|
|
|
%%args.append("--param");
|
|
|
|
%%args.append("ssp-buffer-size=4");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
builtin.Mode.ReleaseSafe => {
|
|
|
|
%%args.append("-O2");
|
2017-09-18 12:30:07 -07:00
|
|
|
if (self.disable_libc) {
|
|
|
|
%%args.append("-fno-stack-protector");
|
|
|
|
} else {
|
2017-09-17 23:50:51 -07:00
|
|
|
%%args.append("-D_FORTIFY_SOURCE=2");
|
|
|
|
%%args.append("-fstack-protector-strong");
|
|
|
|
%%args.append("--param");
|
|
|
|
%%args.append("ssp-buffer-size=4");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
builtin.Mode.ReleaseFast => {
|
|
|
|
%%args.append("-O2");
|
2017-09-18 12:30:07 -07:00
|
|
|
%%args.append("-fno-stack-protector");
|
2017-09-17 23:50:51 -07:00
|
|
|
},
|
|
|
|
}
|
2017-04-18 22:13:15 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
for (self.include_dirs.toSliceConst()) |dir| {
|
|
|
|
%%args.append("-I");
|
|
|
|
%%args.append(self.builder.pathFromRoot(dir));
|
2017-04-18 22:13:15 -07:00
|
|
|
}
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
for (self.cflags.toSliceConst()) |cflag| {
|
|
|
|
%%args.append(cflag);
|
|
|
|
}
|
2017-04-18 22:13:15 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
if (self.disable_libc) {
|
|
|
|
%%args.append("-nostdlib");
|
|
|
|
}
|
2017-04-18 22:13:15 -07:00
|
|
|
}
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
fn makeC(self: &LibExeObjStep) -> %void {
|
|
|
|
const cc = os.getEnv("CC") ?? "cc";
|
|
|
|
const builder = self.builder;
|
2017-04-18 22:13:15 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
assert(!self.is_zig);
|
2017-04-19 12:38:12 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
var cc_args = ArrayList([]const u8).init(builder.allocator);
|
|
|
|
defer cc_args.deinit();
|
2017-04-19 12:38:12 -07:00
|
|
|
|
2017-09-23 10:27:36 -07:00
|
|
|
const target_os = switch (self.target) {
|
|
|
|
Target.Native => builtin.os,
|
|
|
|
Target.Cross => |t| t.os,
|
|
|
|
};
|
|
|
|
const is_darwin = switch (target_os) {
|
|
|
|
builtin.Os.darwin, builtin.Os.ios, builtin.Os.macosx => true,
|
|
|
|
else => false,
|
|
|
|
};
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
switch (self.kind) {
|
|
|
|
Kind.Obj => {
|
|
|
|
%%cc_args.append("-c");
|
|
|
|
%%cc_args.append(builder.pathFromRoot(self.object_src));
|
2017-08-30 11:55:26 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
const output_path = builder.pathFromRoot(self.getOutputPath());
|
|
|
|
%%cc_args.append("-o");
|
|
|
|
%%cc_args.append(output_path);
|
2017-09-17 11:43:51 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
self.appendCompileFlags(&cc_args);
|
2017-04-18 22:13:15 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
%return builder.spawnChild(cc, cc_args.toSliceConst());
|
|
|
|
},
|
|
|
|
Kind.Lib => {
|
|
|
|
for (self.source_files.toSliceConst()) |source_file| {
|
|
|
|
%%cc_args.resize(0);
|
2017-04-18 22:13:15 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
if (!self.static) {
|
|
|
|
%%cc_args.append("-fPIC");
|
|
|
|
}
|
2017-04-18 22:13:15 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
const abs_source_file = builder.pathFromRoot(source_file);
|
|
|
|
%%cc_args.append("-c");
|
|
|
|
%%cc_args.append(abs_source_file);
|
2017-04-18 22:13:15 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
const cache_o_src = %%os.path.join(builder.allocator, builder.cache_root, source_file);
|
|
|
|
const cache_o_dir = os.path.dirname(cache_o_src);
|
|
|
|
%return builder.makePath(cache_o_dir);
|
|
|
|
const cache_o_file = builder.fmt("{}{}", cache_o_src, self.target.oFileExt());
|
|
|
|
%%cc_args.append("-o");
|
|
|
|
%%cc_args.append(builder.pathFromRoot(cache_o_file));
|
2017-04-18 22:13:15 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
self.appendCompileFlags(&cc_args);
|
2017-08-30 11:55:26 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
%return builder.spawnChild(cc, cc_args.toSliceConst());
|
2017-04-20 23:26:48 -07:00
|
|
|
|
2017-04-30 16:48:45 -07:00
|
|
|
%%self.object_files.append(cache_o_file);
|
|
|
|
}
|
2017-04-13 14:21:00 -07:00
|
|
|
|
2017-04-30 16:48:45 -07:00
|
|
|
if (self.static) {
|
2017-04-30 17:29:33 -07:00
|
|
|
// ar
|
|
|
|
%%cc_args.resize(0);
|
|
|
|
%%cc_args.append("qc");
|
|
|
|
|
|
|
|
const output_path = builder.pathFromRoot(self.getOutputPath());
|
|
|
|
%%cc_args.append(output_path);
|
|
|
|
|
|
|
|
for (self.object_files.toSliceConst()) |object_file| {
|
|
|
|
%%cc_args.append(builder.pathFromRoot(object_file));
|
|
|
|
}
|
|
|
|
|
|
|
|
%return builder.spawnChild("ar", cc_args.toSliceConst());
|
|
|
|
|
|
|
|
// ranlib
|
|
|
|
%%cc_args.resize(0);
|
|
|
|
%%cc_args.append(output_path);
|
|
|
|
|
|
|
|
%return builder.spawnChild("ranlib", cc_args.toSliceConst());
|
2017-04-30 16:48:45 -07:00
|
|
|
} else {
|
|
|
|
%%cc_args.resize(0);
|
2017-04-16 11:14:11 -07:00
|
|
|
|
2017-09-23 10:27:36 -07:00
|
|
|
if (is_darwin) {
|
|
|
|
%%cc_args.append("-dynamiclib");
|
|
|
|
|
|
|
|
%%cc_args.append("-Wl,-headerpad_max_install_names");
|
|
|
|
|
|
|
|
%%cc_args.append("-compatibility_version");
|
|
|
|
%%cc_args.append(builder.fmt("{}.0.0", self.version.major));
|
2017-04-16 11:14:11 -07:00
|
|
|
|
2017-09-23 10:27:36 -07:00
|
|
|
%%cc_args.append("-current_version");
|
|
|
|
%%cc_args.append(builder.fmt("{}.{}.{}", self.version.major, self.version.minor, self.version.patch));
|
|
|
|
|
|
|
|
%%cc_args.append("-install_name");
|
|
|
|
%%cc_args.append(builder.pathFromRoot(self.major_only_filename));
|
|
|
|
} else {
|
|
|
|
%%cc_args.append("-fPIC");
|
|
|
|
%%cc_args.append("-shared");
|
|
|
|
|
|
|
|
const soname_arg = builder.fmt("-Wl,-soname,lib{}.so.{d}", self.name, self.version.major);
|
|
|
|
defer builder.allocator.free(soname_arg);
|
|
|
|
%%cc_args.append(soname_arg);
|
|
|
|
}
|
2017-04-13 14:21:00 -07:00
|
|
|
|
2017-04-30 16:48:45 -07:00
|
|
|
const output_path = builder.pathFromRoot(self.getOutputPath());
|
|
|
|
%%cc_args.append("-o");
|
|
|
|
%%cc_args.append(output_path);
|
2017-04-13 14:21:00 -07:00
|
|
|
|
2017-04-30 16:48:45 -07:00
|
|
|
for (self.object_files.toSliceConst()) |object_file| {
|
|
|
|
%%cc_args.append(builder.pathFromRoot(object_file));
|
|
|
|
}
|
2017-04-16 11:14:11 -07:00
|
|
|
|
2017-09-23 10:27:36 -07:00
|
|
|
if (!is_darwin) {
|
|
|
|
const rpath_arg = builder.fmt("-Wl,-rpath,{}",
|
|
|
|
%%os.path.real(builder.allocator, builder.pathFromRoot(builder.cache_root)));
|
|
|
|
defer builder.allocator.free(rpath_arg);
|
|
|
|
%%cc_args.append(rpath_arg);
|
2017-04-16 11:14:11 -07:00
|
|
|
|
2017-09-23 10:27:36 -07:00
|
|
|
%%cc_args.append("-rdynamic");
|
|
|
|
}
|
2017-04-16 11:14:11 -07:00
|
|
|
|
2017-04-30 16:48:45 -07:00
|
|
|
for (self.full_path_libs.toSliceConst()) |full_path_lib| {
|
|
|
|
%%cc_args.append(builder.pathFromRoot(full_path_lib));
|
|
|
|
}
|
2017-04-16 11:14:11 -07:00
|
|
|
|
2017-04-30 16:48:45 -07:00
|
|
|
%return builder.spawnChild(cc, cc_args.toSliceConst());
|
2017-04-16 11:14:11 -07:00
|
|
|
|
2017-04-30 16:48:45 -07:00
|
|
|
%return doAtomicSymLinks(builder.allocator, output_path, self.major_only_filename,
|
|
|
|
self.name_only_filename);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Kind.Exe => {
|
|
|
|
for (self.source_files.toSliceConst()) |source_file| {
|
|
|
|
%%cc_args.resize(0);
|
|
|
|
|
2017-04-30 17:11:35 -07:00
|
|
|
const abs_source_file = builder.pathFromRoot(source_file);
|
2017-04-30 16:48:45 -07:00
|
|
|
%%cc_args.append("-c");
|
2017-04-30 17:11:35 -07:00
|
|
|
%%cc_args.append(abs_source_file);
|
2017-04-30 16:48:45 -07:00
|
|
|
|
2017-04-30 17:11:35 -07:00
|
|
|
const cache_o_src = %%os.path.join(builder.allocator, builder.cache_root, source_file);
|
2017-04-30 16:48:45 -07:00
|
|
|
const cache_o_dir = os.path.dirname(cache_o_src);
|
|
|
|
%return builder.makePath(cache_o_dir);
|
|
|
|
const cache_o_file = builder.fmt("{}{}", cache_o_src, self.target.oFileExt());
|
|
|
|
%%cc_args.append("-o");
|
2017-05-03 13:00:51 -07:00
|
|
|
%%cc_args.append(builder.pathFromRoot(cache_o_file));
|
2017-04-30 16:48:45 -07:00
|
|
|
|
|
|
|
for (self.cflags.toSliceConst()) |cflag| {
|
|
|
|
%%cc_args.append(cflag);
|
|
|
|
}
|
2017-04-16 11:14:11 -07:00
|
|
|
|
2017-04-30 16:48:45 -07:00
|
|
|
for (self.include_dirs.toSliceConst()) |dir| {
|
|
|
|
%%cc_args.append("-I");
|
|
|
|
%%cc_args.append(builder.pathFromRoot(dir));
|
|
|
|
}
|
2017-04-16 11:14:11 -07:00
|
|
|
|
2017-04-30 16:48:45 -07:00
|
|
|
%return builder.spawnChild(cc, cc_args.toSliceConst());
|
2017-04-16 11:14:11 -07:00
|
|
|
|
2017-05-03 13:00:51 -07:00
|
|
|
%%self.object_files.append(cache_o_file);
|
2017-04-30 16:48:45 -07:00
|
|
|
}
|
2017-04-16 11:14:11 -07:00
|
|
|
|
2017-04-30 16:48:45 -07:00
|
|
|
%%cc_args.resize(0);
|
2017-04-13 14:21:00 -07:00
|
|
|
|
2017-04-30 16:48:45 -07:00
|
|
|
for (self.object_files.toSliceConst()) |object_file| {
|
|
|
|
%%cc_args.append(builder.pathFromRoot(object_file));
|
|
|
|
}
|
2017-04-16 11:14:11 -07:00
|
|
|
|
2017-04-30 16:48:45 -07:00
|
|
|
const output_path = builder.pathFromRoot(self.getOutputPath());
|
|
|
|
%%cc_args.append("-o");
|
|
|
|
%%cc_args.append(output_path);
|
2017-04-16 11:14:11 -07:00
|
|
|
|
2017-04-30 16:48:45 -07:00
|
|
|
const rpath_arg = builder.fmt("-Wl,-rpath,{}",
|
2017-05-03 13:00:51 -07:00
|
|
|
%%os.path.real(builder.allocator, builder.pathFromRoot(builder.cache_root)));
|
2017-04-30 16:48:45 -07:00
|
|
|
defer builder.allocator.free(rpath_arg);
|
|
|
|
%%cc_args.append(rpath_arg);
|
2017-04-16 11:14:11 -07:00
|
|
|
|
2017-04-30 16:48:45 -07:00
|
|
|
%%cc_args.append("-rdynamic");
|
2017-04-16 11:14:11 -07:00
|
|
|
|
2017-08-27 14:16:42 -07:00
|
|
|
switch (target_os) {
|
|
|
|
builtin.Os.darwin, builtin.Os.ios, builtin.Os.macosx => {
|
|
|
|
if (self.need_flat_namespace_hack) {
|
|
|
|
%%cc_args.append("-Wl,-flat_namespace");
|
|
|
|
}
|
|
|
|
%%cc_args.append("-Wl,-search_paths_first");
|
|
|
|
},
|
|
|
|
else => {}
|
|
|
|
}
|
|
|
|
|
2017-04-30 16:48:45 -07:00
|
|
|
for (self.full_path_libs.toSliceConst()) |full_path_lib| {
|
|
|
|
%%cc_args.append(builder.pathFromRoot(full_path_lib));
|
|
|
|
}
|
2017-04-30 17:11:35 -07:00
|
|
|
|
|
|
|
%return builder.spawnChild(cc, cc_args.toSliceConst());
|
2017-04-30 16:48:45 -07:00
|
|
|
},
|
2017-04-16 11:14:11 -07:00
|
|
|
}
|
|
|
|
}
|
2017-09-17 23:50:51 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
pub const TestStep = struct {
|
|
|
|
step: Step,
|
|
|
|
builder: &Builder,
|
|
|
|
root_src: []const u8,
|
|
|
|
build_mode: builtin.Mode,
|
|
|
|
verbose: bool,
|
|
|
|
link_libs: BufSet,
|
|
|
|
name_prefix: []const u8,
|
|
|
|
filter: ?[]const u8,
|
|
|
|
target: Target,
|
|
|
|
exec_cmd_args: ?[]const ?[]const u8,
|
|
|
|
|
|
|
|
pub fn init(builder: &Builder, root_src: []const u8) -> TestStep {
|
|
|
|
const step_name = builder.fmt("test {}", root_src);
|
|
|
|
TestStep {
|
|
|
|
.step = Step.init(step_name, builder.allocator, make),
|
|
|
|
.builder = builder,
|
|
|
|
.root_src = root_src,
|
|
|
|
.build_mode = builtin.Mode.Debug,
|
|
|
|
.verbose = false,
|
|
|
|
.name_prefix = "",
|
|
|
|
.filter = null,
|
|
|
|
.link_libs = BufSet.init(builder.allocator),
|
|
|
|
.target = Target.Native,
|
|
|
|
.exec_cmd_args = null,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn setVerbose(self: &TestStep, value: bool) {
|
|
|
|
self.verbose = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn setBuildMode(self: &TestStep, mode: builtin.Mode) {
|
|
|
|
self.build_mode = mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn linkSystemLibrary(self: &TestStep, name: []const u8) {
|
|
|
|
%%self.link_libs.put(name);
|
|
|
|
}
|
2017-04-16 11:14:11 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
pub fn setNamePrefix(self: &TestStep, text: []const u8) {
|
|
|
|
self.name_prefix = text;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn setFilter(self: &TestStep, text: ?[]const u8) {
|
|
|
|
self.filter = text;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn setTarget(self: &TestStep, target_arch: builtin.Arch, target_os: builtin.Os,
|
2017-05-01 10:12:38 -07:00
|
|
|
target_environ: builtin.Environ)
|
|
|
|
{
|
2017-04-16 11:14:11 -07:00
|
|
|
self.target = Target.Cross {
|
|
|
|
CrossTarget {
|
|
|
|
.arch = target_arch,
|
|
|
|
.os = target_os,
|
|
|
|
.environ = target_environ,
|
|
|
|
}
|
|
|
|
};
|
2017-04-13 14:21:00 -07:00
|
|
|
}
|
2017-09-17 23:50:51 -07:00
|
|
|
|
|
|
|
pub fn setExecCmd(self: &TestStep, args: []const ?[]const u8) {
|
|
|
|
self.exec_cmd_args = args;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn make(step: &Step) -> %void {
|
|
|
|
const self = @fieldParentPtr(TestStep, "step", step);
|
|
|
|
const builder = self.builder;
|
|
|
|
|
|
|
|
var zig_args = ArrayList([]const u8).init(builder.allocator);
|
|
|
|
defer zig_args.deinit();
|
|
|
|
|
|
|
|
%%zig_args.append("test");
|
|
|
|
%%zig_args.append(builder.pathFromRoot(self.root_src));
|
|
|
|
|
|
|
|
if (self.verbose) {
|
|
|
|
%%zig_args.append("--verbose");
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (self.build_mode) {
|
|
|
|
builtin.Mode.Debug => {},
|
|
|
|
builtin.Mode.ReleaseSafe => %%zig_args.append("--release-safe"),
|
|
|
|
builtin.Mode.ReleaseFast => %%zig_args.append("--release-fast"),
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (self.target) {
|
|
|
|
Target.Native => {},
|
|
|
|
Target.Cross => |cross_target| {
|
|
|
|
%%zig_args.append("--target-arch");
|
|
|
|
%%zig_args.append(@enumTagName(cross_target.arch));
|
|
|
|
|
|
|
|
%%zig_args.append("--target-os");
|
|
|
|
%%zig_args.append(@enumTagName(cross_target.os));
|
|
|
|
|
|
|
|
%%zig_args.append("--target-environ");
|
|
|
|
%%zig_args.append(@enumTagName(cross_target.environ));
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self.filter) |filter| {
|
|
|
|
%%zig_args.append("--test-filter");
|
|
|
|
%%zig_args.append(filter);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self.name_prefix.len != 0) {
|
|
|
|
%%zig_args.append("--test-name-prefix");
|
|
|
|
%%zig_args.append(self.name_prefix);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
var it = self.link_libs.iterator();
|
|
|
|
while (true) {
|
|
|
|
const entry = it.next() ?? break;
|
|
|
|
%%zig_args.append("--library");
|
|
|
|
%%zig_args.append(entry.key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self.exec_cmd_args) |exec_cmd_args| {
|
|
|
|
for (exec_cmd_args) |cmd_arg| {
|
|
|
|
if (cmd_arg) |arg| {
|
|
|
|
%%zig_args.append("--test-cmd");
|
|
|
|
%%zig_args.append(arg);
|
|
|
|
} else {
|
|
|
|
%%zig_args.append("--test-cmd-bin");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (builder.include_paths.toSliceConst()) |include_path| {
|
|
|
|
%%zig_args.append("-isystem");
|
|
|
|
%%zig_args.append(builder.pathFromRoot(include_path));
|
|
|
|
}
|
|
|
|
|
|
|
|
for (builder.rpaths.toSliceConst()) |rpath| {
|
|
|
|
%%zig_args.append("-rpath");
|
|
|
|
%%zig_args.append(rpath);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (builder.lib_paths.toSliceConst()) |lib_path| {
|
|
|
|
%%zig_args.append("--library-path");
|
|
|
|
%%zig_args.append(lib_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
%return builder.spawnChild(builder.zig_exe, zig_args.toSliceConst());
|
|
|
|
}
|
2017-04-13 14:21:00 -07:00
|
|
|
};
|
|
|
|
|
2017-04-18 22:13:15 -07:00
|
|
|
pub const CommandStep = struct {
|
2017-04-13 14:21:00 -07:00
|
|
|
step: Step,
|
2017-04-17 00:20:56 -07:00
|
|
|
builder: &Builder,
|
|
|
|
exe_path: []const u8,
|
2017-05-02 15:22:08 -07:00
|
|
|
args: [][]const u8,
|
2017-04-30 15:56:24 -07:00
|
|
|
cwd: ?[]const u8,
|
2017-04-13 14:21:00 -07:00
|
|
|
env_map: &const BufMap,
|
|
|
|
|
2017-05-02 15:22:08 -07:00
|
|
|
/// ::args are copied.
|
2017-04-30 15:56:24 -07:00
|
|
|
pub fn create(builder: &Builder, cwd: ?[]const u8, env_map: &const BufMap,
|
|
|
|
exe_path: []const u8, args: []const []const u8) -> &CommandStep
|
2017-04-13 14:21:00 -07:00
|
|
|
{
|
2017-04-30 15:56:24 -07:00
|
|
|
const self = %%builder.allocator.create(CommandStep);
|
|
|
|
*self = CommandStep {
|
2017-04-17 00:20:56 -07:00
|
|
|
.builder = builder,
|
|
|
|
.step = Step.init(exe_path, builder.allocator, make),
|
|
|
|
.exe_path = exe_path,
|
2017-05-02 15:22:08 -07:00
|
|
|
.args = %%builder.allocator.alloc([]u8, args.len),
|
2017-04-13 14:21:00 -07:00
|
|
|
.cwd = cwd,
|
|
|
|
.env_map = env_map,
|
2017-04-30 15:56:24 -07:00
|
|
|
};
|
2017-05-02 15:22:08 -07:00
|
|
|
mem.copy([]const u8, self.args, args);
|
2017-04-30 15:56:24 -07:00
|
|
|
return self;
|
2017-04-13 14:21:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn make(step: &Step) -> %void {
|
2017-04-17 23:28:05 -07:00
|
|
|
const self = @fieldParentPtr(CommandStep, "step", step);
|
2017-04-13 14:21:00 -07:00
|
|
|
|
2017-05-03 14:23:11 -07:00
|
|
|
const cwd = if (self.cwd) |cwd| self.builder.pathFromRoot(cwd) else null;
|
2017-04-30 15:56:24 -07:00
|
|
|
return self.builder.spawnChildEnvMap(cwd, self.env_map, self.exe_path, self.args);
|
2017-04-13 14:21:00 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
const InstallArtifactStep = struct {
|
|
|
|
step: Step,
|
|
|
|
builder: &Builder,
|
|
|
|
artifact: &LibExeObjStep,
|
|
|
|
dest_file: []const u8,
|
|
|
|
|
|
|
|
const Self = this;
|
|
|
|
|
|
|
|
pub fn create(builder: &Builder, artifact: &LibExeObjStep) -> &Self {
|
|
|
|
const self = %%builder.allocator.create(Self);
|
|
|
|
const dest_dir = switch (artifact.kind) {
|
|
|
|
LibExeObjStep.Kind.Obj => unreachable,
|
|
|
|
LibExeObjStep.Kind.Exe => builder.exe_dir,
|
|
|
|
LibExeObjStep.Kind.Lib => builder.lib_dir,
|
|
|
|
};
|
|
|
|
*self = Self {
|
|
|
|
.builder = builder,
|
|
|
|
.step = Step.init(builder.fmt("install {}", artifact.step.name), builder.allocator, make),
|
|
|
|
.artifact = artifact,
|
|
|
|
.dest_file = %%os.path.join(builder.allocator, dest_dir, artifact.out_filename),
|
|
|
|
};
|
|
|
|
self.step.dependOn(&artifact.step);
|
|
|
|
builder.pushInstalledFile(self.dest_file);
|
|
|
|
if (self.artifact.kind == LibExeObjStep.Kind.Lib and !self.artifact.static) {
|
|
|
|
builder.pushInstalledFile(%%os.path.join(builder.allocator, builder.lib_dir,
|
|
|
|
artifact.major_only_filename));
|
|
|
|
builder.pushInstalledFile(%%os.path.join(builder.allocator, builder.lib_dir,
|
|
|
|
artifact.name_only_filename));
|
2017-04-17 03:45:44 -07:00
|
|
|
}
|
2017-09-17 23:50:51 -07:00
|
|
|
return self;
|
|
|
|
}
|
2017-04-17 03:45:44 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
fn make(step: &Step) -> %void {
|
|
|
|
const self = @fieldParentPtr(Self, "step", step);
|
|
|
|
const builder = self.builder;
|
2017-04-17 03:45:44 -07:00
|
|
|
|
2017-09-17 23:50:51 -07:00
|
|
|
const mode = switch (self.artifact.kind) {
|
|
|
|
LibExeObjStep.Kind.Obj => unreachable,
|
|
|
|
LibExeObjStep.Kind.Exe => usize(0o755),
|
|
|
|
LibExeObjStep.Kind.Lib => if (self.artifact.static) usize(0o666) else usize(0o755),
|
|
|
|
};
|
|
|
|
%return builder.copyFileMode(self.artifact.getOutputPath(), self.dest_file, mode);
|
|
|
|
if (self.artifact.kind == LibExeObjStep.Kind.Lib and !self.artifact.static) {
|
|
|
|
%return doAtomicSymLinks(builder.allocator, self.dest_file,
|
|
|
|
self.artifact.major_only_filename, self.artifact.name_only_filename);
|
2017-04-17 03:45:44 -07:00
|
|
|
}
|
|
|
|
}
|
2017-09-17 23:50:51 -07:00
|
|
|
};
|
2017-04-17 03:45:44 -07:00
|
|
|
|
2017-04-18 22:13:15 -07:00
|
|
|
pub const InstallFileStep = struct {
|
2017-04-17 03:45:44 -07:00
|
|
|
step: Step,
|
|
|
|
builder: &Builder,
|
|
|
|
src_path: []const u8,
|
|
|
|
dest_path: []const u8,
|
|
|
|
|
|
|
|
pub fn init(builder: &Builder, src_path: []const u8, dest_path: []const u8) -> InstallFileStep {
|
|
|
|
return InstallFileStep {
|
|
|
|
.builder = builder,
|
2017-04-19 12:38:12 -07:00
|
|
|
.step = Step.init(builder.fmt("install {}", src_path), builder.allocator, make),
|
2017-04-17 03:45:44 -07:00
|
|
|
.src_path = src_path,
|
|
|
|
.dest_path = dest_path,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn make(step: &Step) -> %void {
|
2017-04-17 23:28:05 -07:00
|
|
|
const self = @fieldParentPtr(InstallFileStep, "step", step);
|
2017-04-30 19:09:44 -07:00
|
|
|
%return self.builder.copyFile(self.src_path, self.dest_path);
|
2017-04-17 03:45:44 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-04-18 22:13:15 -07:00
|
|
|
pub const WriteFileStep = struct {
|
|
|
|
step: Step,
|
|
|
|
builder: &Builder,
|
|
|
|
file_path: []const u8,
|
|
|
|
data: []const u8,
|
|
|
|
|
|
|
|
pub fn init(builder: &Builder, file_path: []const u8, data: []const u8) -> WriteFileStep {
|
|
|
|
return WriteFileStep {
|
|
|
|
.builder = builder,
|
2017-04-19 12:38:12 -07:00
|
|
|
.step = Step.init(builder.fmt("writefile {}", file_path), builder.allocator, make),
|
2017-04-18 22:13:15 -07:00
|
|
|
.file_path = file_path,
|
|
|
|
.data = data,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn make(step: &Step) -> %void {
|
|
|
|
const self = @fieldParentPtr(WriteFileStep, "step", step);
|
|
|
|
const full_path = self.builder.pathFromRoot(self.file_path);
|
2017-04-20 22:56:12 -07:00
|
|
|
const full_path_dir = os.path.dirname(full_path);
|
2017-04-18 22:13:15 -07:00
|
|
|
os.makePath(self.builder.allocator, full_path_dir) %% |err| {
|
2017-04-19 23:26:36 -07:00
|
|
|
%%io.stderr.printf("unable to make path {}: {}\n", full_path_dir, @errorName(err));
|
|
|
|
return err;
|
2017-04-18 22:13:15 -07:00
|
|
|
};
|
|
|
|
io.writeFile(full_path, self.data, self.builder.allocator) %% |err| {
|
2017-04-19 23:26:36 -07:00
|
|
|
%%io.stderr.printf("unable to write {}: {}\n", full_path, @errorName(err));
|
|
|
|
return err;
|
2017-04-18 22:13:15 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const LogStep = struct {
|
|
|
|
step: Step,
|
|
|
|
builder: &Builder,
|
|
|
|
data: []const u8,
|
|
|
|
|
|
|
|
pub fn init(builder: &Builder, data: []const u8) -> LogStep {
|
|
|
|
return LogStep {
|
|
|
|
.builder = builder,
|
2017-04-19 12:38:12 -07:00
|
|
|
.step = Step.init(builder.fmt("log {}", data), builder.allocator, make),
|
2017-04-18 22:13:15 -07:00
|
|
|
.data = data,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn make(step: &Step) -> %void {
|
|
|
|
const self = @fieldParentPtr(LogStep, "step", step);
|
|
|
|
%%io.stderr.write(self.data);
|
|
|
|
%%io.stderr.flush();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-04-19 23:26:36 -07:00
|
|
|
pub const RemoveDirStep = struct {
|
|
|
|
step: Step,
|
|
|
|
builder: &Builder,
|
|
|
|
dir_path: []const u8,
|
|
|
|
|
|
|
|
pub fn init(builder: &Builder, dir_path: []const u8) -> RemoveDirStep {
|
|
|
|
return RemoveDirStep {
|
|
|
|
.builder = builder,
|
|
|
|
.step = Step.init(builder.fmt("RemoveDir {}", dir_path), builder.allocator, make),
|
|
|
|
.dir_path = dir_path,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn make(step: &Step) -> %void {
|
|
|
|
const self = @fieldParentPtr(RemoveDirStep, "step", step);
|
|
|
|
|
|
|
|
const full_path = self.builder.pathFromRoot(self.dir_path);
|
|
|
|
os.deleteTree(self.builder.allocator, full_path) %% |err| {
|
|
|
|
%%io.stderr.printf("Unable to remove {}: {}\n", full_path, @errorName(err));
|
|
|
|
return err;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-04-18 22:13:15 -07:00
|
|
|
pub const Step = struct {
|
2017-04-13 14:21:00 -07:00
|
|
|
name: []const u8,
|
|
|
|
makeFn: fn(self: &Step) -> %void,
|
2017-05-04 11:05:06 -07:00
|
|
|
dependencies: ArrayList(&Step),
|
2017-04-13 14:21:00 -07:00
|
|
|
loop_flag: bool,
|
|
|
|
done_flag: bool,
|
|
|
|
|
|
|
|
pub fn init(name: []const u8, allocator: &Allocator, makeFn: fn (&Step)->%void) -> Step {
|
|
|
|
Step {
|
|
|
|
.name = name,
|
|
|
|
.makeFn = makeFn,
|
2017-05-04 11:05:06 -07:00
|
|
|
.dependencies = ArrayList(&Step).init(allocator),
|
2017-04-13 14:21:00 -07:00
|
|
|
.loop_flag = false,
|
|
|
|
.done_flag = false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pub fn initNoOp(name: []const u8, allocator: &Allocator) -> Step {
|
|
|
|
init(name, allocator, makeNoOp)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn make(self: &Step) -> %void {
|
|
|
|
if (self.done_flag)
|
|
|
|
return;
|
|
|
|
|
|
|
|
%return self.makeFn(self);
|
|
|
|
self.done_flag = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn dependOn(self: &Step, other: &Step) {
|
|
|
|
%%self.dependencies.append(other);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn makeNoOp(self: &Step) -> %void {}
|
|
|
|
};
|
2017-04-30 15:56:24 -07:00
|
|
|
|
|
|
|
fn doAtomicSymLinks(allocator: &Allocator, output_path: []const u8, filename_major_only: []const u8,
|
|
|
|
filename_name_only: []const u8) -> %void
|
|
|
|
{
|
|
|
|
const out_dir = os.path.dirname(output_path);
|
|
|
|
const out_basename = os.path.basename(output_path);
|
|
|
|
// sym link for libfoo.so.1 to libfoo.so.1.2.3
|
|
|
|
const major_only_path = %%os.path.join(allocator, out_dir, filename_major_only);
|
|
|
|
os.atomicSymLink(allocator, out_basename, major_only_path) %% |err| {
|
|
|
|
%%io.stderr.printf("Unable to symlink {} -> {}\n", major_only_path, out_basename);
|
|
|
|
return err;
|
|
|
|
};
|
|
|
|
// sym link for libfoo.so to libfoo.so.1
|
|
|
|
const name_only_path = %%os.path.join(allocator, out_dir, filename_name_only);
|
|
|
|
os.atomicSymLink(allocator, filename_major_only, name_only_path) %% |err| {
|
|
|
|
%%io.stderr.printf("Unable to symlink {} -> {}\n", name_only_path, filename_major_only);
|
|
|
|
return err;
|
|
|
|
};
|
|
|
|
}
|