[PR #82] [CLOSED] Add support for Hexagon target with linux-user #149

Open
opened 2026-01-31 21:29:59 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/qemu/qemu/pull/82
Author: @taylorsimpson
Created: 10/18/2019
Status: Closed

Base: masterHead: hexagon


📝 Commits (1)

  • a01dfa7 Add support for Hexagon target with linux-user

📊 Changes

93 files changed (+132114 additions, -1 deletions)

View changed files

📝 configure (+9 -0)
default-configs/hexagon-linux-user.mak (+1 -0)
📝 disas/Makefile.objs (+1 -0)
disas/hexagon.c (+14 -0)
📝 include/disas/dis-asm.h (+1 -0)
📝 include/elf.h (+2 -0)
📝 include/exec/helper-gen.h (+13 -0)
📝 include/exec/helper-head.h (+2 -0)
📝 include/exec/helper-proto.h (+6 -0)
📝 include/exec/helper-tcg.h (+7 -0)
📝 linux-user/elfload.c (+15 -0)
linux-user/hexagon/cpu_loop.c (+206 -0)
linux-user/hexagon/signal.c (+282 -0)
linux-user/hexagon/sockbits.h (+3 -0)
linux-user/hexagon/syscall_nr.h (+331 -0)
linux-user/hexagon/target_cpu.h (+30 -0)
linux-user/hexagon/target_elf.h (+24 -0)
linux-user/hexagon/target_fcntl.h (+3 -0)
linux-user/hexagon/target_signal.h (+20 -0)
linux-user/hexagon/target_structs.h (+31 -0)

...and 73 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/qemu/qemu/pull/82 **Author:** [@taylorsimpson](https://github.com/taylorsimpson) **Created:** 10/18/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `hexagon` --- ### 📝 Commits (1) - [`a01dfa7`](https://github.com/qemu/qemu/commit/a01dfa792509115bb85d5c32a3cfa12479a4ca3f) Add support for Hexagon target with linux-user ### 📊 Changes **93 files changed** (+132114 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `configure` (+9 -0) ➕ `default-configs/hexagon-linux-user.mak` (+1 -0) 📝 `disas/Makefile.objs` (+1 -0) ➕ `disas/hexagon.c` (+14 -0) 📝 `include/disas/dis-asm.h` (+1 -0) 📝 `include/elf.h` (+2 -0) 📝 `include/exec/helper-gen.h` (+13 -0) 📝 `include/exec/helper-head.h` (+2 -0) 📝 `include/exec/helper-proto.h` (+6 -0) 📝 `include/exec/helper-tcg.h` (+7 -0) 📝 `linux-user/elfload.c` (+15 -0) ➕ `linux-user/hexagon/cpu_loop.c` (+206 -0) ➕ `linux-user/hexagon/signal.c` (+282 -0) ➕ `linux-user/hexagon/sockbits.h` (+3 -0) ➕ `linux-user/hexagon/syscall_nr.h` (+331 -0) ➕ `linux-user/hexagon/target_cpu.h` (+30 -0) ➕ `linux-user/hexagon/target_elf.h` (+24 -0) ➕ `linux-user/hexagon/target_fcntl.h` (+3 -0) ➕ `linux-user/hexagon/target_signal.h` (+20 -0) ➕ `linux-user/hexagon/target_structs.h` (+31 -0) _...and 73 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-31 21:29:59 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/qemu#149