diff options
author | Chris Packham <judge.packham@gmail.com> | 2023-05-28 15:29:03 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2023-06-04 10:04:33 +1200 |
commit | 227d99d7f3115f3a078595a580d2b307dcd23e93 (patch) | |
tree | 71aa5ec27ff438f002e881ad4cc2440a1d0aa8a5 /packages/newlib/4.3.0.20230120/0001-fix-mt-cflags.patch | |
parent | 0160064f00b158a0a672a04f25fbb0968ac59cdf (diff) | |
download | crosstool-ng-227d99d7f3115f3a078595a580d2b307dcd23e93.tar.gz crosstool-ng-227d99d7f3115f3a078595a580d2b307dcd23e93.tar.bz2 crosstool-ng-227d99d7f3115f3a078595a580d2b307dcd23e93.zip |
newlib: add 4.3.0.20230120
Add the 4.3.0.20230120 and update the required patches. As of this
release the newlib-global-atexit is mandatory so set this to default y.
Included is an upstream patch to support older GCC versions.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'packages/newlib/4.3.0.20230120/0001-fix-mt-cflags.patch')
-rw-r--r-- | packages/newlib/4.3.0.20230120/0001-fix-mt-cflags.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/newlib/4.3.0.20230120/0001-fix-mt-cflags.patch b/packages/newlib/4.3.0.20230120/0001-fix-mt-cflags.patch new file mode 100644 index 00000000..24a9215d --- /dev/null +++ b/packages/newlib/4.3.0.20230120/0001-fix-mt-cflags.patch @@ -0,0 +1,13 @@ +--- + config/mt-d30v | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +--- a/config/mt-d30v ++++ b/config/mt-d30v +@@ -1,4 +1,4 @@ + # Build libraries optimizing for space, not speed. + # Turn off warnings about symbols named the same as registers +- CFLAGS_FOR_TARGET = -g -Os -Wa,-C +- CXXFLAGS_FOR_TARGET = -g -Os -Wa,-C ++ CFLAGS_FOR_TARGET += -g -Os -Wa,-C ++ CXXFLAGS_FOR_TARGET += -g -Os -Wa,-C |