Skip to content

Commit

Permalink
Merge pull request #2654 from Sonicadvance1/move_unaligned_handler
Browse files Browse the repository at this point in the history
FEXCore: Moves SIGBUS handler to FEXCore/Utils
  • Loading branch information
lioncash authored May 6, 2023
2 parents 542aeed + 2d4bf97 commit 86af1f6
Show file tree
Hide file tree
Showing 14 changed files with 259 additions and 257 deletions.
6 changes: 6 additions & 0 deletions External/FEXCore/Source/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,12 @@ set (SRCS
Utils/Profiler.cpp
)

if (_M_ARM_64)
list(APPEND SRCS Utils/ArchHelpers/Arm64.cpp)
else()
list(APPEND SRCS Utils/ArchHelpers/Arm64_stubs.cpp)
endif()

if (ENABLE_GLIBC_ALLOCATOR_HOOK_FAULT)
list(APPEND FEXCORE_BASE_SRCS
Utils/AllocatorOverride.cpp)
Expand Down
Loading

0 comments on commit 86af1f6

Please sign in to comment.