Don't specify preferred optimize (#111)

wch-ch32v003
Matt Knight 1 year ago
parent 6920852f53
commit 1bfba96a8a

@ -10,6 +10,7 @@ jobs:
strategy:
matrix:
os: [
ubuntu-latest,
windows-latest,
macos-latest,
]

@ -6,9 +6,7 @@ const GeneratedFile = std.build.GeneratedFile;
pub fn build(b: *std.build.Builder) !void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{
.preferred_optimize_mode = .ReleaseSafe,
});
const optimize = b.standardOptimizeOption(.{});
const libxml2_dep = b.dependency("libxml2", .{
.target = target,

Loading…
Cancel
Save