Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
Don't specify preferred optimize (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattnite authored Aug 6, 2023
1 parent 20b7444 commit b0ded63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
strategy:
matrix:
os: [
ubuntu-latest,
windows-latest,
macos-latest,
]
Expand Down
4 changes: 1 addition & 3 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit b0ded63

Please sign in to comment.