mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-23 15:32:33 +00:00
libbsd: Fix compilation under ARC
The 8 year old file does not have any ARC definitions. Signed-off-by: Rosen Penev <rosenp@gmail.com> [updated content of the patch with version sent to upstream] Signed-off-by: Petr Štetiar <ynezz@true.cz>
This commit is contained in:
parent
250bbaf360
commit
395bef4bba
@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=libbsd
|
PKG_NAME:=libbsd
|
||||||
PKG_VERSION:=0.8.7
|
PKG_VERSION:=0.8.7
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
||||||
PKG_HASH:=f548f10e5af5a08b1e22889ce84315b1ebe41505b015c9596bad03fd13a12b31
|
PKG_HASH:=f548f10e5af5a08b1e22889ce84315b1ebe41505b015c9596bad03fd13a12b31
|
||||||
|
30
package/libs/libbsd/patches/010-fix-arc.patch
Normal file
30
package/libs/libbsd/patches/010-fix-arc.patch
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
From f60b6777cc2047f9845de2c88cf092b045c160c0 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Rosen Penev <rosenp@gmail.com>
|
||||||
|
Date: Fri, 17 May 2019 01:44:56 +0000
|
||||||
|
Subject: [PATCH] local-elf: Add ARC support
|
||||||
|
|
||||||
|
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
||||||
|
---
|
||||||
|
src/local-elf.h | 6 ++++++
|
||||||
|
1 file changed, 6 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/src/local-elf.h b/src/local-elf.h
|
||||||
|
index 83ca253..b90baf3 100644
|
||||||
|
--- a/src/local-elf.h
|
||||||
|
+++ b/src/local-elf.h
|
||||||
|
@@ -53,6 +53,12 @@
|
||||||
|
#endif
|
||||||
|
#define ELF_TARG_DATA ELFDATA2LSB
|
||||||
|
|
||||||
|
+#elif defined (__arc__)
|
||||||
|
+
|
||||||
|
+#define ELF_TARG_MACH EM_ARC
|
||||||
|
+#define ELF_TARG_CLASS ELFCLASS32
|
||||||
|
+#define ELF_TARG_DATA ELFDATA2LSB
|
||||||
|
+
|
||||||
|
#elif defined(__arm__)
|
||||||
|
|
||||||
|
#define ELF_TARG_MACH EM_ARM
|
||||||
|
--
|
||||||
|
2.18.1
|
||||||
|
|
Loading…
Reference in New Issue
Block a user