Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

treewide: Ubuntu jammy build fixes #18652

Merged
merged 4 commits into from
Sep 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cpu/atxmega/include/periph_cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ typedef enum {
/* for compatibility between different versions of AVR libc: Legacy versions
* occasionally use ASPACE instead of ASIZE for some MCUs, while new AVR libc
* uses ASIZE as name consistently */
#ifdef EBI_CS_ASPACE_gm
#ifndef EBI_CS_ASIZE_gm
typedef EBI_CS_ASPACE_t EBI_CS_ASIZE_t;
#define EBI_CS_ASIZE_256B_gc EBI_CS_ASPACE_256B_gc
#define EBI_CS_ASIZE_512B_gc EBI_CS_ASPACE_512B_gc
Expand Down
3 changes: 3 additions & 0 deletions examples/micropython/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,7 @@ FEATURES_OPTIONAL += periph_spi
# a terminal is opened to synchronize.
TESTRUNNER_RESET_AFTER_TERM ?= 1

# failing on native with floating point exception (#15870)
TEST_ON_CI_BLACKLIST = all
Copy link
Contributor

@benpicco benpicco Sep 27, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Then why not?

Suggested change
TEST_ON_CI_BLACKLIST = all
TEST_ON_CI_BLACKLIST = native

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ups, that was a copy&pasta

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


include $(RIOTBASE)/Makefile.include
3 changes: 3 additions & 0 deletions pkg/libhydrogen/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@ include $(RIOTBASE)/pkg/pkg.mk
CFLAGS += -Wno-type-limits
CFLAGS += -Wno-cast-align

# Silence warning popping up since `gcc version 11.2.0 (Ubuntu 11.2.0-19ubuntu1)`
CFLAGS += -Wno-stringop-overflow

all:
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR) -f $(RIOTBASE)/Makefile.base
2 changes: 1 addition & 1 deletion sys/shell/cmds/dfplayer.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ static void _print_equalizer(dfplayer_t *dev)

static void _print_mode(dfplayer_t *dev)
{
dfplayer_mode_t mode;
dfplayer_mode_t mode = {0};
int retval = dfplayer_get_mode(dev, &mode);
if (retval) {
_print_error(retval);
Expand Down