From 81a0a4fc41010bf2f002a7416990d83df167d62f Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sun, 29 Jan 2023 08:26:46 +0200 Subject: [PATCH] build: enable readline in MU_HACKER build --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a1b638f3..a972a3a6 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -## Copyright (C) 2008-2022 Dirk-Jan C. Binnema +## Copyright (C) 2008-2023 Dirk-Jan C. Binnema ## ## 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 @@ -27,8 +27,11 @@ ifneq ($(V),0) endif # when MU_HACKER is set, do a debug build +# MU_HACKER is for djcb & compatible developers ifneq (${MU_HACKER},) -MESON_FLAGS:=$(MESON_FLAGS) '-Dbuildtype=debug' '-Db_sanitize=address' +MESON_FLAGS:=$(MESON_FLAGS) '-Dbuildtype=debug' \ + '-Db_sanitize=address' \ + '-Dreadline=enabled' endif .PHONY: all