forked from GaloisInc/pate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump elf-edit, macaw submodules to support PPC relocations
This bumps: * The `elf-edit` submodule to bring in the changes from GaloisInc/elf-edit#41. * The `macaw` submodule to bring in the changes from GaloisInc/macaw#348. After this, `pate` is able to load PPC binaries that contain certain relocation types.
- Loading branch information
1 parent
0bc0125
commit 30377fc
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule elf-edit
updated
26 files
+7 −4 | .github/update-freeze | |
+8 −6 | .github/workflows/ci.yaml | |
+3 −0 | ChangeLog.md | |
+0 −96 | cabal.project.freeze.ghc-8.10.4 | |
+0 −97 | cabal.project.freeze.ghc-8.8.4 | |
+0 −96 | cabal.project.freeze.ghc-9.0.1 | |
+95 −0 | cabal.project.freeze.ghc-9.2.8 | |
+94 −0 | cabal.project.freeze.ghc-9.4.5 | |
+92 −0 | cabal.project.freeze.ghc-9.6.2 | |
+3 −1 | elf-edit.cabal | |
+17 −6 | src/Data/ElfEdit/Dynamic.hs | |
+4 −2 | src/Data/ElfEdit/HighLevel/Layout.hs | |
+6 −0 | src/Data/ElfEdit/Prim.hs | |
+54 −23 | src/Data/ElfEdit/Prim/HeaderInfo.hs | |
+13 −5 | src/Data/ElfEdit/Prim/SymbolTable.hs | |
+4 −2 | src/Data/ElfEdit/Relocations/Android.hs | |
+279 −0 | src/Data/ElfEdit/Relocations/PPC32.hs | |
+615 −0 | src/Data/ElfEdit/Relocations/PPC64.hs | |
+10 −1 | tests/Makefile | |
+173 −4 | tests/Test.hs | |
+11 −0 | tests/fmax.c | |
+ − | tests/fmax.elf | |
+3 −0 | tests/ppc32-relocs.c | |
+ − | tests/ppc32-relocs.elf | |
+3 −0 | tests/ppc64-relocs.c | |
+ − | tests/ppc64-relocs.elf |
Submodule macaw
updated
15 files