From b1c4a784e3019a6cf3d98a8e37481becf724a8c4 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Tue, 6 Dec 2022 21:25:27 -0600 Subject: [PATCH] Cleanup: Update stand alone config.h files and add an additional comment. --- build/stand_alone/fake.config.h | 3 ++- build/stand_alone/utf8.config.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/build/stand_alone/fake.config.h b/build/stand_alone/fake.config.h index 671d702..78b781b 100644 --- a/build/stand_alone/fake.config.h +++ b/build/stand_alone/fake.config.h @@ -1,5 +1,6 @@ // A config.h file for defining all code being disabled for compiling the stand alone Featureless Make. -// To assist in building this file use: nm --defined-only -f p programs/shared/fake | grep -oP '^(f|fl|fll)_[^\s]+ +// To assist in building this file use (may need to omit --defined-only): "nm --defined-only -f p programs/shared/fake | grep -oP '^(f|fl|fll)_[^\s]+'". +// To get the list of all possible functions, use something like: "grep -hor '#ifndef _di_f_.*\>' level_0/f_color/" | sed -e 's|^#ifndef |#define |g' | sort | uniq. #define _di_f_account_adjust_ #define _di_f_account_by_id_ diff --git a/build/stand_alone/utf8.config.h b/build/stand_alone/utf8.config.h index 0492539..66713c3 100644 --- a/build/stand_alone/utf8.config.h +++ b/build/stand_alone/utf8.config.h @@ -1,5 +1,6 @@ // A config.h file for defining all code being disabled for compiling the stand alone UTF8. -// To assist in building this file use: nm --defined-only -f p programs/shared/utf8 | grep -oP '^(f|fl|fll)_[^\s]+ +// To assist in building this file use (may need to omit --defined-only): "nm --defined-only -f p programs/shared/utf8 | grep -oP '^(f|fl|fll)_[^\s]+'". +// To get the list of all possible functions, use something like: "grep -hor '#ifndef _di_f_.*\>' level_0/f_color/" | sed -e 's|^#ifndef |#define |g' | sort | uniq. #define _di_f_array_lengths_adjust_ #define _di_f_array_lengths_append_ -- 1.8.3.1