Skip to content

Commit

Permalink
build rm profile
Browse files Browse the repository at this point in the history
  • Loading branch information
StringNick committed Jun 16, 2024
1 parent bfa79e0 commit 9d285e4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
5 changes: 3 additions & 2 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,10 @@ pub fn build(b: *std.Build) void {
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,

.link_libc = true,
.omit_frame_pointer = if (optimize == .ReleaseFast) true else false,
.strip = true,
.omit_frame_pointer = if (optimize == .ReleaseFast) null else false,
.strip = if (optimize == .ReleaseFast) true else null,
});
exe.root_module.addOptions("cfg", options);

Expand Down
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
.starknet = .{
.url = "https://github.com/StringNick/starknet-zig/archive/refs/heads/main.tar.gz",
.hash = "12207ee57a9f6483e9a226e55f3c3b7895f077d6685c2fe33f0ff978864cb1cc0545",
.hash = "1220cdaeebac5aaae4e2047af7920d5b8b850e162100a17ba668ba84845016a119c5",
},
},
}
1 change: 0 additions & 1 deletion profile.json

This file was deleted.

0 comments on commit 9d285e4

Please sign in to comment.