Skip to content

Commit a4e68fd

Browse files
authored
Fix incorrect binary name in Makefile (#1084)
No functional change. Bench: 3204302
1 parent 1fca2d0 commit a4e68fd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ endif
2424
.PHONY: all no-syzygy pgo wasm x64-check checkdeps clean help
2525

2626
all: ## Build the engine
27-
cargo rustc --release --bin $(EXE) -- --emit link=$(NAME)
27+
cargo rustc --release --bin reckless -- --emit link=$(NAME)
2828

2929
no-syzygy: ## Build without syzygy support
30-
cargo rustc --release --bin $(EXE) --no-default-features -- --emit link=$(NAME)
30+
cargo rustc --release --bin reckless --no-default-features -- --emit link=$(NAME)
3131

3232
pgo: ## Build with profile-guided optimization
3333
cargo pgo instrument

0 commit comments

Comments
 (0)