From 8956f524c9a279730cd5d962ea9ab417eaacbbdc Mon Sep 17 00:00:00 2001 From: Veikko Sariola Date: Wed, 27 May 2020 16:04:52 +0300 Subject: [PATCH] Only compile introspection.asm when SU_USE_INTROSPECTION is defined. --- src/introspection.asm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/introspection.asm b/src/introspection.asm index 79f545d..a7a17ff 100644 --- a/src/introspection.asm +++ b/src/introspection.asm @@ -1,3 +1,5 @@ +%ifdef SU_USE_INTROSPECTION + ; Various compile time definitions exported SECT_DATA(introscn) @@ -10,3 +12,5 @@ SECT_DATA(introscn) %ifdef MAX_SAMPLES EXPORT MANGLE_DATA(su_max_samples) dd MAX_SAMPLES %endif + +%endif ; SU_USE_INTROSPECTION