mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-04-26 00:05:58 +03:00
[PR #3540] [MERGED] Core: Remove checks for symbol version_major and version_minor #3555
Labels
No labels
Bloodborne
bug
contributor wanted
documentation
enhancement
frontend
good first issue
help wanted
linux
pull-request
question
release
verification progress
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/shadPS4#3555
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/shadps4-emu/shadPS4/pull/3540
Author: @StevenMiller123
Created: 9/6/2025
Status: ✅ Merged
Merged: 9/9/2025
Merged by: @squidbus
Base:
main← Head:remove-lib-version-checks📝 Commits (6)
3de310bRemove checks for module version_major and version_minor028c56aClang0798aa8Merge remote-tracking branch 'upstream/main' into remove-lib-version-checks6359c3dFix rebase9cf3805Disable libSceSsl HLEad9ee93Merge remote-tracking branch 'upstream/main' into remove-lib-version-checks📊 Changes
96 files changed (+4215 additions, -5001 deletions)
View changed files
📝
src/core/libraries/ajm/ajm.cpp(+22 -22)📝
src/core/libraries/app_content/app_content.cpp(+38 -38)📝
src/core/libraries/audio/audioin.cpp(+42 -53)📝
src/core/libraries/audio/audioout.cpp(+71 -94)📝
src/core/libraries/audio3d/audio3d.cpp(+37 -48)📝
src/core/libraries/avplayer/avplayer.cpp(+27 -40)📝
src/core/libraries/camera/camera.cpp(+76 -94)📝
src/core/libraries/companion/companion_httpd.cpp(+17 -17)📝
src/core/libraries/companion/companion_util.cpp(+5 -5)📝
src/core/libraries/disc_map/disc_map.cpp(+5 -7)📝
src/core/libraries/fiber/fiber.cpp(+15 -17)📝
src/core/libraries/game_live_streaming/gamelivestreaming.cpp(+51 -51)📝
src/core/libraries/gnmdriver/gnmdriver.cpp(+254 -365)📝
src/core/libraries/hmd/hmd.cpp(+137 -169)📝
src/core/libraries/hmd/hmd_distortion.cpp(+16 -20)📝
src/core/libraries/hmd/hmd_reprojection.cpp(+35 -54)📝
src/core/libraries/hmd/hmd_setup_dialog.cpp(+7 -7)📝
src/core/libraries/ime/error_dialog.cpp(+8 -10)📝
src/core/libraries/ime/ime.cpp(+54 -55)📝
src/core/libraries/ime/ime_dialog.cpp(+15 -22)...and 76 more files
📄 Description
On top of the added complexity of needing to specify these numbers every time we generated a library, we've also run into multiple cases where homebrew that work on real hardware won't work on here because their imports use different versions over what actual firmware libraries may specify.
This PR fixes problems like this by removing the checks entirely, and removing the versions from the LIB_FUNCTION and LIB_OBJ macros. I've also removed the duplicate exports in libSceVrTracker and libSceVideoOut, since those won't be necessary if this is merged.
Based on my local tests, this shouldn't cause any regressions, and should fix the issue with libScePigletv2VSH.sprx that @kalaposfos13 ran into on the Discord server.
This will likely cause merge conflicts with #3476, #3290, #3259, #3231, and #2761
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.