|
From: darcagn <da...@us...> - 2024-08-16 00:45:02
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "A pseudo Operating System for the Dreamcast.".
The branch, master has been updated
via 41528fef656ffbbdfe16663e895c01c912f71b43 (commit)
via 5f3e39dc6f69aeac2a29abe59a924137a4a0f12a (commit)
via a85d2f28840b6b1e95c6d6d472305535d6e52697 (commit)
from 2751f20f40083c856e767b90eff4c64206987b68 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 41528fef656ffbbdfe16663e895c01c912f71b43
Merge: a85d2f28 5f3e39dc
Author: darcagn <da...@pr...>
Date: Thu Aug 15 19:44:47 2024 -0500
Merge pull request #712 from Tchan0/gitignore_add_vscode
gitignore: add .vscode folders
commit 5f3e39dc6f69aeac2a29abe59a924137a4a0f12a
Author: Tchan0 <617...@us...>
Date: Thu Aug 15 19:50:42 2024 +0200
gitignore: add .vscode folders
Add .vscode folders that could be added in the examples by the users, when using Visual Studio Code
commit a85d2f28840b6b1e95c6d6d472305535d6e52697
Author: darcagn <da...@pr...>
Date: Mon Aug 12 07:17:13 2024 -0500
dc-chain: Fix ARM toolchain build error when JIT is enabled for SH toolchain (#709)
-----------------------------------------------------------------------
Summary of changes:
.gitignore | 1 +
utils/dc-chain/doc/CHANGELOG.md | 6 ++++++
utils/dc-chain/scripts/gcc-pass1.mk | 4 +++-
3 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/.gitignore b/.gitignore
index 02d16d33..107e5e4f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,6 +6,7 @@
*~
.*.swp
.DS_Store
+.vscode/
doc/reference/
environ.sh
romdisk.img
diff --git a/utils/dc-chain/doc/CHANGELOG.md b/utils/dc-chain/doc/CHANGELOG.md
index 75c15e5d..498ee2c9 100644
--- a/utils/dc-chain/doc/CHANGELOG.md
+++ b/utils/dc-chain/doc/CHANGELOG.md
@@ -2,6 +2,12 @@
| Date<br/>_____________ | Author(s)<br/>_____________ | Changes<br/>_____________ |
|:-----------------------|:----------------------------|---------------------------|
+| 2024-08-11 | Eric Fradella | Fix ARM toolchain build error when JIT is enabled for SH toolchain. |
+| 2024-08-07 | Eric Fradella | Updated binutils to 2.43. Updated GCC 11 profile with support for GCC 11.5.0. |
+| 2024-08-01 | Eric Fradella | Updated GCC 14 profile with support for GCC 14.2.0. |
+| 2024-07-15 | Eric Fradella | Updated profiles for GDB 15.1. |
+| 2024-06-26 | Eric Fradella | Updated GCC 12 profile with support for GCC 12.4.0. |
+| 2024-05-24 | Eric Fradella | Added support for GCC 13.3.0. |
| 2024-05-08 | Falco Girgis | Added configuration option for libstdc++'s timezone database. |
| 2024-05-02 | Eric Fradella | Deprecated GCC 4.7.4 profile. Revamped configuration system into separate profiles and Makefile.cfg. Revised configuration options and documentation. |
| 2024-05-01 | Falco Girgis | Added config option for enabling the Ada langauge. |
diff --git a/utils/dc-chain/scripts/gcc-pass1.mk b/utils/dc-chain/scripts/gcc-pass1.mk
index 5958a858..4cfbf87c 100644
--- a/utils/dc-chain/scripts/gcc-pass1.mk
+++ b/utils/dc-chain/scripts/gcc-pass1.mk
@@ -2,7 +2,9 @@
# This file is part of KallistiOS.
build-sh4-gcc-pass1: build = build-gcc-$(target)-$(gcc_ver)-pass1
+build-sh4-gcc-pass1: enabled_languages = $(pass1_languages)
build-arm-gcc-pass1: build = build-gcc-$(target)-$(gcc_ver)
+build-arm-gcc-pass1: enabled_languages = c
$(build_gcc_pass1) $(build_gcc_pass2): src_dir = gcc-$(gcc_ver)
$(build_gcc_pass1) $(build_gcc_pass2): log = $(logdir)/$(build).log
$(build_gcc_pass1): logdir
@@ -17,7 +19,7 @@ $(build_gcc_pass1): logdir
--with-gnu-ld \
--without-headers \
--with-newlib \
- --enable-languages=$(pass1_languages) \
+ --enable-languages=$(enabled_languages) \
--disable-libssp \
--enable-checking=release \
$(cpu_configure_args) \
hooks/post-receive
--
A pseudo Operating System for the Dreamcast.
|