From 2d979d2f42e30322695a333373b35b5908196df5 Mon Sep 17 00:00:00 2001 From: --global Date: Wed, 5 Apr 2023 15:25:59 -0400 Subject: [PATCH 1/2] Removed release flag from turborepo-ffi build --- cli/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/Makefile b/cli/Makefile index 3d663f2e3fd24..d618501e240e1 100644 --- a/cli/Makefile +++ b/cli/Makefile @@ -42,7 +42,7 @@ turborepo-ffi-install: turborepo-ffi turborepo-ffi-copy-bindings .PHONY: turborepo-ffi turborepo-ffi: - cd ../crates/turborepo-ffi && cargo build --release --target-dir ./target + cd ../crates/turborepo-ffi && cargo build --target-dir ./target .PHONY: turborepo-ffi-copy-bindings turborepo-ffi-copy-bindings: From 4809cc8829ef4e99cce4056bd9739cd8db952437 Mon Sep 17 00:00:00 2001 From: --global Date: Thu, 6 Apr 2023 12:24:03 -0400 Subject: [PATCH 2/2] Fix --- cli/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/Makefile b/cli/Makefile index d618501e240e1..09bf57a7546cc 100644 --- a/cli/Makefile +++ b/cli/Makefile @@ -38,7 +38,7 @@ go-turbo$(EXT): $(GENERATED_FILES) $(SRC_FILES) go.mod turborepo-ffi-install .PHONY: turborepo-ffi-install turborepo-ffi-install: turborepo-ffi turborepo-ffi-copy-bindings - cp ../crates/turborepo-ffi/target/release/libturborepo_ffi.a ./internal/ffi/libturborepo_ffi_$(GOOS)_$(GOARCH).a + cp ../crates/turborepo-ffi/target/debug/libturborepo_ffi.a ./internal/ffi/libturborepo_ffi_$(GOOS)_$(GOARCH).a .PHONY: turborepo-ffi turborepo-ffi: