summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2026-01-21 22:40:25 +0200
committerDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2026-01-22 16:30:10 +0200
commit86ad8d63e82bbf4d5c11feccf128b813fecd0f88 (patch)
tree7f012fae4bea2b14fca45e85aa000c7a51ceddc4 /Makefile
parentf95d60c5694e9f0fef46126f42f48f3289c4d1cc (diff)
guile: deprecate; instead use scm
Deprecate the long-deprecated guile support in the build-system too. Needs explicit -Dguile=enabled
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 3159282..c16ecda 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-## Copyright (C) 2008-2025 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
+## Copyright (C) 2008-2026 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
@@ -33,13 +33,13 @@ ifneq ($(V),0)
VERBOSE=--verbose
endif
-# when MU_HACKER is set, do a debug build
-# MU_HACKER is for djcb & compatible developers
-# note that mu uses C++17, we only pass C++23 here
-# for the better error messages (esp. for fmt).
+# when MU_HACKER is set, do a debug build MU_HACKER is for djcb & compatible
+# developers note that mu requires C++20, we only pass C++23 here for the better
+# error messages (esp. for fmt).
ifneq (${MU_HACKER},)
MESON_FLAGS:=$(MESON_FLAGS) '-Dbuildtype=debug' \
'-Dreadline=enabled' \
+ '-Dguile=enabled' \
'-Dcpp_std=c++23'
endif