Skip to content

Commit

Permalink
Add support for R_ARM_TLS_IE32
Browse files Browse the repository at this point in the history
  • Loading branch information
fincs committed Jul 17, 2020
1 parent daee833 commit 64a9e64
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.61)
AC_INIT([3dstools],[1.1.4],[https://github.com/devkitPro/3dstools/issues])
AC_INIT([3dstools],[1.1.5],[https://github.com/devkitPro/3dstools/issues])
AC_CONFIG_SRCDIR([src/3dsxtool.cpp])

AM_INIT_AUTOMAKE([subdir-objects])
Expand Down
1 change: 1 addition & 0 deletions src/3dsxtool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ int ElfConvert::ScanRelocSection(u32 vsect, u32 vsectend, byte_t* sectData, Elf3
case R_ARM_REL32:
case R_ARM_TARGET2:
case R_ARM_PREL31:
case R_ARM_TLS_IE32:
{
int relocOff = relSrc;

Expand Down
3 changes: 2 additions & 1 deletion src/elf.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,8 @@ enum
R_ARM_TARGET2 = 41,
R_ARM_PREL31 = 42,
R_ARM_THM_JUMP11 = 102,
R_ARM_THM_JUMP8 = 103
R_ARM_THM_JUMP8 = 103,
R_ARM_TLS_IE32 = 107,
};

// Symbol scope
Expand Down

0 comments on commit 64a9e64

Please sign in to comment.