From 4bdec871a5c9f7c0a70bab5fca35e60bdabd483f Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sat, 3 Aug 2024 00:32:02 -0500 Subject: [PATCH] Update: The stand alone builds to include the new clock f_time functions. --- data/build/stand_alone/config.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/data/build/stand_alone/config.h b/data/build/stand_alone/config.h index a3839e5..beeb0a2 100644 --- a/data/build/stand_alone/config.h +++ b/data/build/stand_alone/config.h @@ -8,7 +8,7 @@ // // Example: // echo > /tmp/all.txt -// for i in f_type f_status f_memory f_type_array f_string f_utf f_account f_capability f_color f_compare f_console f_control_group f_conversion f_directory f_environment f_execute f_file f_fss f_iki f_limit f_parse f_path f_pipe f_print f_rip f_signal f_socket f_time f_thread ; do grep -horP '\b_di_f_\w*\b' level_0/$i/c >> /tmp/all.txt ; grep -horP '\b_di_macro_\w*\b' level_0/$i/c >> /tmp/all.txt ; done +// for i in f_type f_status f_memory f_type_array f_string f_utf f_account f_capability f_color f_compare f_console f_control_group f_conversion f_directory f_environment f_execute f_file f_fss f_iki f_limit f_parse f_path f_pipe f_print f_rip f_signal f_socket f_thread f_time ; do grep -horP '\b_di_f_\w*\b' level_0/$i/c >> /tmp/all.txt ; grep -horP '\b_di_macro_\w*\b' level_0/$i/c >> /tmp/all.txt ; done // for i in fl_control_group fl_conversion fl_directory fl_environment fl_execute fl_fss fl_iki fl_path fl_print ; do grep -horP '\b_di_fl_\w*\b' level_1/$i/c >> /tmp/all.txt ; grep -horP '\b_di_macro_\w*\b' level_1/$i/c >> /tmp/all.txt ; done // for i in fll_control_group fll_error fll_execute fll_fss fll_print fll_program ; do grep -horP '\b_di_fll_\w*\b' level_2/$i/c >> /tmp/all.txt ; grep -horP '\b_di_macro_\w*\b' level_2/$i/c >> /tmp/all.txt ; done // sort /tmp/all.txt | uniq | sed -e 's|^_|#define &|g' > /tmp/sorted.txt @@ -1940,6 +1940,9 @@ //#define _di_f_thread_unlock_ #define _di_f_time_calendar_string_ #define _di_f_time_calendar_string_part_ +#define _di_f_time_clock_get_ +#define _di_f_time_clock_precision_ +#define _di_f_time_clock_set_ #define _di_f_time_d_ #define _di_f_time_epoch_get_ #define _di_f_time_local_get_ -- 1.8.3.1