diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2025-03-10 12:00:51 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2025-03-10 12:03:27 +0100 |
commit | b996cd610ed56da9c267a9c72356d7638648ed69 (patch) | |
tree | 2024864d7191b2f91e97ca8af1f8b59dc1919312 /Rules.mak | |
parent | e921185d316af9e4a6b44ebac3a17874e461e9ec (diff) |
bfin: fix compile and linking errors with gcc 14.2.0
ld.so must be compiled with -ffreestanding to avoid emits of
memset/memcpy from gcc.
Disable some extra warnings for Blackfin to avoid a compile
error.
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -668,6 +668,9 @@ endif ifeq ($(TARGET_ARCH),i386) CFLAGS += -fno-omit-frame-pointer endif +ifeq ($(TARGET_ARCH),bfin) +CFLAGS += -Wno-implicit-function-declaration +endif ifneq ($(strip $(UCLIBC_EXTRA_LDFLAGS)),"") LDFLAGS += $(call qstrip,$(UCLIBC_EXTRA_LDFLAGS)) endif |