From 16109709ad42548057e45fbbea791e91456f2e21 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Tue, 15 Feb 2022 21:13:11 -0600 Subject: [PATCH] Cleanup: Minor updates to cygwin documentation. --- documents/cygwin.txt | 4 ++-- level_0/f_type/c/type.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/documents/cygwin.txt b/documents/cygwin.txt index f834b58..c2ebf5c 100644 --- a/documents/cygwin.txt +++ b/documents/cygwin.txt @@ -8,10 +8,10 @@ Cygwin: The resulting binary could be transfered to another machine and runs if the cygwin.dll is copied with it (placed along the byte_dump.exe). To compile the FLL, some functionality needs to be disabled. - Fortunately, FLL is specifically designed to be hackable so the process is easier that it might otherwise be. + Fortunately, FLL is specifically designed to be hackable so the process is easier than it might otherwise be. For a monolithic build, compiled statically, add the following to "defines" in the "data/build/settings" file (of the packaged source). - "-D_di_libcap_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_unsupported_ -D_di_f_attribute_visibility_ -Df_attribute_visibility_hidden -Df_attribute_visibility_internal -Df_attribute_visibility_protected -Df_attribute_visibility_public" + "-D_di_libcap_ -D_pthread_attr_unsupported_ -D_pthread_sigqueue_unsupported_ -D_di_compiler_attributes_ -DF_attribute_visibility_hidden_d -DF_attribute_visibility_internal_d -DF_attribute_visibility_protected_d -DF_attribute_visibility_public_d -DF_attribute_weak_d" Before packaging "data/build/settings", the build settings files are either found inside the individual projects or under the build directory at the root of the source repository. diff --git a/level_0/f_type/c/type.h b/level_0/f_type/c/type.h index 1deda33..453fdc9 100644 --- a/level_0/f_type/c/type.h +++ b/level_0/f_type/c/type.h @@ -10,7 +10,7 @@ #ifndef _F_type_h #define _F_type_h -// include pre-requirements +// Include pre-requirements. #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif // _GNU_SOURCE -- 1.8.3.1