const std = @import("std");
pub const zig_version = std.SemanticVersion.parse(zig_version_string) catch unreachable;
pub const zig_version_string = "0.11.0";
pub const zig_backend = std.builtin.CompilerBackend.stage2_llvm;
pub const output_mode = std.builtin.OutputMode.Exe;
pub const link_mode = std.builtin.LinkMode.Static;
pub const is_test = true;
pub const single_threaded = false;
pub const abi = std.Target.Abi.musleabihf;
pub const cpu: std.Target.Cpu = .{
.arch = .arm,
.model = &std.Target.arm.cpu.generic,
.features = std.Target.arm.featureSet(&[_]std.Target.arm.Feature{
.aclass,
.d32,
.db,
.dsp,
.fp64,
.fpregs,
.fpregs64,
.has_v4t,
.has_v5t,
.has_v5te,
.has_v6,
.has_v6k,
.has_v6m,
.has_v6t2,
.has_v7,
.has_v7clrex,
.has_v8m,
.neon,
.perfmon,
.thumb2,
.v7a,
.vfp2,
.vfp2sp,
.vfp3,
.vfp3d16,
.vfp3d16sp,
.vfp3sp,
}),
};
pub const os = std.Target.Os{
.tag = .linux,
.version_range = .{ .linux = .{
.range = .{
.min = .{
.major = 3,
.minor = 16,
.patch = 0,
},
.max = .{
.major = 5,
.minor = 10,
.patch = 81,
},
},
.glibc = .{
.major = 2,
.minor = 19,
.patch = 0,
},
}},
};
pub const target = std.Target{
.cpu = cpu,
.os = os,
.abi = abi,
.ofmt = object_format,
};
pub const object_format = std.Target.ObjectFormat.elf;
pub const mode = std.builtin.Mode.Debug;
pub const link_libc = false;
pub const link_libcpp = false;
pub const have_error_return_tracing = true;
pub const valgrind_support = false;
pub const sanitize_thread = false;
pub const position_independent_code = false;
pub const position_independent_executable = false;
pub const strip_debug_info = false;
pub const code_model = std.builtin.CodeModel.default;
pub const omit_frame_pointer = false;
pub var test_functions: []const std.builtin.TestFn = undefined;
pub const test_io_mode = .blocking;