From: falcovorbis <fal...@us...> - 2023-03-13 04:03:05
|
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, warnings_fixes has been updated via c9c5b6cf4fb7d82951c63d03c54d763bec04296e (commit) via 0c66c5671d810a841a8357d7b2528ef6bb31f60f (commit) from ab924cb0e850aecf2eb46a758025504201def49f (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 c9c5b6cf4fb7d82951c63d03c54d763bec04296e Author: falco <gyr...@gm...> Date: Mon Mar 13 00:02:33 2023 -0400 Bumped down pragma for pack version check to GCC9 commit 0c66c5671d810a841a8357d7b2528ef6bb31f60f Author: falco <gyr...@gm...> Date: Sun Mar 12 23:59:57 2023 -0400 Updated changelog ----------------------------------------------------------------------- Summary of changes: addons/libkosfat/directory.c | 4 ++-- doc/CHANGELOG | 1 + kernel/net/net_icmp6.c | 4 ++-- kernel/net/net_ipv6.c | 4 ++-- kernel/net/net_udp.c | 4 ++-- 5 files changed, 9 insertions(+), 8 deletions(-) diff --git a/addons/libkosfat/directory.c b/addons/libkosfat/directory.c index 66ee61c..0c45e09 100644 --- a/addons/libkosfat/directory.c +++ b/addons/libkosfat/directory.c @@ -18,7 +18,7 @@ #include "directory.h" #include "fatinternal.h" -#if __GNUC__ >= 12 +#if __GNUC__ >= 9 #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Waddress-of-packed-member" #endif @@ -1397,6 +1397,6 @@ void fat_dentry_print(const fat_dentry_t *ent) { } #endif -#if __GNUC__ >= 12 +#if __GNUC__ >= 9 #pragma GCC diagnostic pop #endif \ No newline at end of file diff --git a/doc/CHANGELOG b/doc/CHANGELOG index 2dbec9a..47bae20 100644 --- a/doc/CHANGELOG +++ b/doc/CHANGELOG @@ -156,6 +156,7 @@ KallistiOS version 2.1.0 ----------------------------------------------- - DC Fixed wildly out of range start for pvrmark benchmark [Falco Girgis == FG] - DC Removed "navi" subarch, moved code to addons/libnavi [LS] - *** Removed (completely unsupported) support for GCC 3.x and older [LS] +- *** Cleaned up all compiler warnings for all toolchains for KOS [FG] KallistiOS version 2.0.0 ----------------------------------------------- - DC Broadband Adapter driver fixes [Dan Potter == DP] diff --git a/kernel/net/net_icmp6.c b/kernel/net/net_icmp6.c index 30d9cd7..20e8850 100644 --- a/kernel/net/net_icmp6.c +++ b/kernel/net/net_icmp6.c @@ -16,7 +16,7 @@ #include "net_ipv6.h" #include "net_ipv4.h" /* For net_ipv4_checksum() */ -#if __GNUC__ >= 12 +#if __GNUC__ >= 9 #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Waddress-of-packed-member" #endif @@ -808,6 +808,6 @@ int net_icmp6_send_param_prob(netif_t *net, uint8 code, uint32 ptr, mc_allow); } -#if __GNUC__ >= 12 +#if __GNUC__ >= 9 #pragma GCC diagnostic pop #endif \ No newline at end of file diff --git a/kernel/net/net_ipv6.c b/kernel/net/net_ipv6.c index b0260b5..58b92c0 100644 --- a/kernel/net/net_ipv6.c +++ b/kernel/net/net_ipv6.c @@ -15,7 +15,7 @@ #include "net_icmp6.h" #include "net_ipv4.h" -#if __GNUC__ >= 12 +#if __GNUC__ >= 9 #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Waddress-of-packed-member" #endif @@ -308,6 +308,6 @@ void net_ipv6_shutdown(void) { net_multicast_del(mac); } -#if __GNUC__ >= 12 +#if __GNUC__ >= 9 #pragma GCC diagnostic pop #endif \ No newline at end of file diff --git a/kernel/net/net_udp.c b/kernel/net/net_udp.c index 5d68e37..1e05caf 100644 --- a/kernel/net/net_udp.c +++ b/kernel/net/net_udp.c @@ -23,7 +23,7 @@ #include "net_ipv4.h" #include "net_ipv6.h" -#if __GNUC__ >= 12 +#if __GNUC__ >= 9 #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Waddress-of-packed-member" #endif @@ -1548,6 +1548,6 @@ void net_udp_shutdown(void) { fs_socket_proto_remove(&proto_lite); } -#if __GNUC__ >= 12 +#if __GNUC__ >= 9 #pragma GCC diagnostic pop #endif \ No newline at end of file hooks/post-receive -- A pseudo Operating System for the Dreamcast. |