> That was it. Thanks. I do have to keep running:
> 
> find /software/ -name \*.egg-info -empty -delete -print
> 
> as check-errors.egg-info seems to be a pervasive problem. Maybe it would be
> worth it to add a defence against this?
> 

Attached is a patch that catches at least this case.


felix

From 5a8cef35941109e5c5ee5d9596f855274185db30 Mon Sep 17 00:00:00 2001
From: felix <fe...@call-with-current-continuation.org>
Date: Mon, 30 Oct 2023 13:27:12 +0100
Subject: [PATCH] on *BSD, default C++ compiler to "c++"

---
 Makefile.bsd | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Makefile.bsd b/Makefile.bsd
index 690ce8d2..d66d1f06 100644
--- a/Makefile.bsd
+++ b/Makefile.bsd
@@ -31,6 +31,7 @@ SRCDIR ?= ./
 ARCH ?= $(shell sh $(SRCDIR)/config-arch.sh)
 
 C_COMPILER ?= cc
+CXX_COMPILER ?= c++
 
 # options
 C_COMPILER_OPTIONS ?= -fno-strict-aliasing -fwrapv -DHAVE_CHICKEN_CONFIG_H
-- 
2.40.0

Reply via email to