From 52fbd8c9accfc6244a8c2443b46dd5cb73d0e3eb Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Sat, 12 Aug 2023 02:53:53 +0200 Subject: add missing include directories --- SCons/Platform/mingw.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SCons/Platform/mingw.py b/SCons/Platform/mingw.py index 1d38a9b..55dd3b8 100644 --- a/SCons/Platform/mingw.py +++ b/SCons/Platform/mingw.py @@ -29,5 +29,7 @@ MINGW_DEFAULT_PATHS = [] if sys.platform == 'win32': MINGW_DEFAULT_PATHS = [ r'C:\msys64', - r'C:\msys' + r'C:\msys64\usr\bin', + r'C:\msys', + r'C:\msys\usr\bin' ] -- cgit v0.12 From 78d27feb199a04713373660bd62167dad6f4a6e7 Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Sat, 12 Aug 2023 11:52:12 +0200 Subject: add changelog entry --- CHANGES.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index db96df0..dabeee7 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -136,6 +136,8 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER - Fix another instance of `int main()` in CheckLib() causing failures when using -Wstrict-prototypes. + From Max Bachmann: + - Add missing directories to searched paths for mingw installs RELEASE 4.5.2 - Sun, 21 Mar 2023 14:08:29 -0700 -- cgit v0.12 From e98715057f2f95fd5713b023de2090a5960e81c6 Mon Sep 17 00:00:00 2001 From: William Deegan Date: Thu, 24 Aug 2023 11:00:17 -0700 Subject: [ci skip] added blurb to RELEASE.txt. Reordered items in CHANGES.txt be alphbetical by last name --- CHANGES.txt | 18 +++++++++--------- RELEASE.txt | 1 + 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index dabeee7..126651a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -9,12 +9,8 @@ NOTE: 4.3.0 now requires Python 3.6.0 and above. Python 3.5.x is no longer suppo RELEASE VERSION/DATE TO BE FILLED IN LATER - From William Deegan: - - The --debug flag now has a 'json' option which will write information - generated by --debug={count, memory, time, action-timestamps} and about - the build. - - Obsoleted YACCVCGFILESUFFIX, being replaced by YACC_GRAPH_FILE_SUFFIX. - If YACC_GRAPH_FILE_SUFFIX is not set, it will respect YACCVCGFILESUFFIX. + From Max Bachmann: + - Add missing directories to searched paths for mingw installs From Joseph Brill: - Fix issue #4312: the cached installed msvc list had an indirect dependency @@ -43,6 +39,13 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER - Add arm64 to the MSVS supported architectures list for VS2017 and later to be consistent with the current documentation of MSVS_ARCH. + From William Deegan: + - The --debug flag now has a 'json' option which will write information + generated by --debug={count, memory, time, action-timestamps} and about + the build. + - Obsoleted YACCVCGFILESUFFIX, being replaced by YACC_GRAPH_FILE_SUFFIX. + If YACC_GRAPH_FILE_SUFFIX is not set, it will respect YACCVCGFILESUFFIX. + From Mats Wichmann - C scanner's dictifyCPPDEFINES routine did not understand the possible combinations of CPPDEFINES - not aware of a "name=value" string either @@ -136,9 +139,6 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER - Fix another instance of `int main()` in CheckLib() causing failures when using -Wstrict-prototypes. - From Max Bachmann: - - Add missing directories to searched paths for mingw installs - RELEASE 4.5.2 - Sun, 21 Mar 2023 14:08:29 -0700 From Michał Górny: diff --git a/RELEASE.txt b/RELEASE.txt index f72a2a6..42199c1 100644 --- a/RELEASE.txt +++ b/RELEASE.txt @@ -60,6 +60,7 @@ CHANGED/ENHANCED EXISTING FUNCTIONALITY architecture combination. For example, when using VS2022 on arm64, the arm64 native tools are only installed for the 14.3x toolsets. - Extend range of recognized Java versions to 20. +- Add missing directories to searched paths for mingw installs FIXES ----- -- cgit v0.12