Skip to content

Commit

Permalink
libunwind: add support for loongarch64
Browse files Browse the repository at this point in the history
Modify package depends to allow building for loongarch64.
Also fix for building with musl.

Signed-off-by: Weijie Gao <[email protected]>
  • Loading branch information
hackpascal authored and 981213 committed May 4, 2024
1 parent 33cd870 commit 3f28c42
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package/libs/libunwind/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ define Package/libunwind
CATEGORY:=Libraries
TITLE:=The libunwind project
URL:=http://www.nongnu.org/libunwind/
DEPENDS:=@((mips||mipsel||mips64||powerpc64||x86_64||arm||aarch64)||(USE_GLIBC&&(powerpc||i386))) +zlib
DEPENDS:=@((mips||mipsel||mips64||powerpc64||x86_64||arm||aarch64||loongarch64)||(USE_GLIBC&&(powerpc||i386))) +zlib
ABI_VERSION:=8
endef

Expand Down
12 changes: 12 additions & 0 deletions package/libs/libunwind/patches/005-loongarch64-musl.pattch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
--- a/src/loongarch64/getcontext.S
+++ b/src/loongarch64/getcontext.S
@@ -25,7 +25,9 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */

#include "offsets.h"
+#ifdef __GLIBC__
#include <endian.h>
+#endif
.text

#define SREG(X) st.d $r##X, $r4, (LINUX_UC_MCONTEXT_GREGS + 8 * X)

0 comments on commit 3f28c42

Please sign in to comment.