Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

src/print_env: print the native target #11741

Merged
merged 1 commit into from
Sep 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/print_env.zig
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ pub fn cmdEnv(gpa: Allocator, args: []const []const u8, stdout: std.fs.File.Writ
const global_cache_dir = try introspect.resolveGlobalCacheDir(gpa);
defer gpa.free(global_cache_dir);

const info = try std.zig.system.NativeTargetInfo.detect(gpa, .{});

This comment was marked as resolved.

const triple = try info.target.zigTriple(gpa);
defer gpa.free(triple);

var bw = std.io.bufferedWriter(stdout);
const w = bw.writer();

Expand All @@ -42,6 +46,9 @@ pub fn cmdEnv(gpa: Allocator, args: []const []const u8, stdout: std.fs.File.Writ
try jws.objectField("version");
try jws.emitString(build_options.version);

try jws.objectField("target");
try jws.emitString(triple);

try jws.endObject();
try w.writeByte('\n');
try bw.flush();
Expand Down