From 6de875edead12e12389af0b8b2374e3e953cf18f Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Sat, 1 Feb 2025 13:38:52 -0500 Subject: [PATCH] build: Print some configuration that is confusing me. --- GNUmakefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/GNUmakefile b/GNUmakefile index 086cdd99..8ea668cf 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -70,6 +70,14 @@ else $(error Unexpected host platform $(UNAME_S).) endif +# Everything is set above. +$(info VERSION_NUMBER = $(VERSION_NUMBER)) +$(info HAVE_ANDROID = $(HAVE_ANDROID)) +$(info HAVE_WIN = $(HAVE_WIN)) +$(info HAVE_CROSS_AARCH64 = $(HAVE_CROSS_AARCH64)) +$(info HAVE_LINUX_IOS = $(HAVE_LINUX_IOS)) +$(info USE_SYSTEM_SSL = $(USE_SYSTEM_SSL)) + CFLAGS += \ -std=gnu11 \ -Wall \