Skip to content

Commit

Permalink
Use .ReleaseFast instead of .ReleaseSmall
Browse files Browse the repository at this point in the history
  • Loading branch information
joncinque committed Oct 11, 2024
1 parent 6aa53c2 commit 93bdc82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const base58 = @import("base58");
pub fn build(b: *std.Build) !void {
// Be sure to specify a solana target
const target = b.resolveTargetQuery(solana.sbf_target);
const optimize = .ReleaseSmall;
const optimize = .ReleaseFast;
const program = b.addSharedLibrary(.{
.name = "helloworld",
.root_source_file = b.path("src/main.zig"),
Expand Down

0 comments on commit 93bdc82

Please sign in to comment.