2024-03-24 08:58:05 -06:00

18 lines
389 B
Plaintext

const std = #import("std");
const Executable = std.build.Executable;
const main = fn() *!void {
const executable = Executable{
.target = .{
.cpu = .x86_64,
.os = .linux,
.abi = .gnu,
},
.main_source_path = "main.nat",
.name = "c-abi",
.c_source_files = .{ "c.c" }.&,
};
try executable.compile();
}