From 4ce461dfc119123ea32b310c53ca2f893a974656 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 b8a0565..bde9891 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_by_id_ #define _di_f_account_by_name_ diff --git a/build/stand_alone/utf8.config.h b/build/stand_alone/utf8.config.h index ce6efbe..9e3fb69 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