Fixed recompiler error when the cpp filename is too long#85
Closed
roby65 wants to merge 7 commits intoran-j:mainfrom
Closed
Fixed recompiler error when the cpp filename is too long#85roby65 wants to merge 7 commits intoran-j:mainfrom
roby65 wants to merge 7 commits intoran-j:mainfrom
Conversation
* feat: small fixes on code gen * feat: added code gen test * feat: rename IOP * fix: fix special case on JR feat: added code generator test * feat: ps2 logs now need special macros * feat: a lot of regressions test feat: use test to fix bugs on runtime fix: fix incorrect instructions on code generator feat: added missing decode on r5900 decoder feat: added scissor on rasterizer * feat: better ghidra plugin analyzer fix: fix real bug on function finding on elf analyzer * feat: some logs on GS feat: added more syscalls stubs feat: added more ps2 stubs * feat: added missing stub
Owner
|
please add a test to it |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes errors like:
Failed to open file for writing: ./output/Insert__H1ZPC22AptFileSavedInputState_Q32EA6Stringt11BasicString2Zt22StringAsVectorEncoding1Z22AptFileSavedInputStateZ20StringAsVectorPolicyRCX00T1RCQ42EA6Stringt11BasicString2Zt22StringAsVectorEncoding1Z22AptFileSavedInputStateZ20StringAsVectorPolicy11DbgIterator_v_0x3d0768.cppNow filename is truncated to a max of 100 characters, like this:
Insert__H1ZPC22AptFileSavedInputState_Q32EA6Stringt11BasicString2Zt22StringAsVectorEnco_0x3d0768.cppI decided 100 as max filename length, with 200 characters I was getting unspecified compiler errors. Under 100 characters looks like the sweet spot.