-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libunwind: add support for loongarch64
Modify package depends to allow building for loongarch64. Also fix for building with musl. Signed-off-by: Weijie Gao <[email protected]>
- Loading branch information
1 parent
33cd870
commit 3f28c42
Showing
2 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
package/libs/libunwind/patches/005-loongarch64-musl.pattch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |