From 442e5e4898c1d8a9c249a0496fff3b94913d9ed8 Mon Sep 17 00:00:00 2001 From: Siddhartha Date: Wed, 4 Dec 2024 17:36:44 -0700 Subject: [PATCH] Faster way to recompile `qi-lib` (thanks @Bogdanp!) --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 35ff9cfdb..9b1173efc 100644 --- a/Makefile +++ b/Makefile @@ -75,8 +75,12 @@ remove-sdk: # Primarily for day-to-day dev. # Build libraries from source. +# Note that `raco setup --pkgs qi-lib` ends up building +# the entire `qi` collection and takes a long time, so we +# use `raco make -l ` here instead. +# See https://github.com/racket/racket/issues/5129 build: - raco setup --no-docs --pkgs $(PACKAGE-NAME)-lib + raco make -l qi -v # Primarily for day-to-day dev. # Build docs (if any).