-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #242 from illusion0001/patch-2
Fix build for llvm 14+
- Loading branch information
Showing
10 changed files
with
139 additions
and
49 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
2 changes: 1 addition & 1 deletion
2
src/modules/libSceFios2/libSceFios2/lib.cpp → src/modules/libSceFios2/libSceFios2/lib.c
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
int __dummy__sce_fios2_func() | ||
{ | ||
return 0; | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
int __dummy__libc_func() | ||
{ | ||
return 0; | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
sceGameRight { | ||
global: sceGameRight*; | ||
local: *; | ||
}; | ||
}; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,6 @@ | ||
#ifndef __string_data__ | ||
#define __string_data__ | ||
|
||
static const size_t size_string_data = 108; | ||
static uint8_t string_data[] __attribute__((aligned(16))) = | ||
{ | ||
0x48, 0x6F, 0x6D, 0x65, 0x62, 0x72, 0x65, 0x77, 0x20, 0x77, 0x61, 0x73, 0x20, 0x62, 0x75, 0x69, | ||
0x6C, 0x74, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x4F, 0x70, 0x65, 0x6E, | ||
0x4F, 0x72, 0x62, 0x69, 0x73, 0x20, 0x50, 0x53, 0x34, 0x20, 0x54, 0x6F, 0x6F, 0x6C, 0x63, 0x68, | ||
0x61, 0x69, 0x6E, 0x2E, 0x0D, 0x0A, 0x0D, 0x0A, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3A, 0x2F, 0x2F, | ||
0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2E, 0x63, 0x6F, 0x6D, 0x2F, 0x4F, 0x70, 0x65, 0x6E, 0x4F, | ||
0x72, 0x62, 0x69, 0x73, 0x2F, 0x4F, 0x70, 0x65, 0x6E, 0x4F, 0x72, 0x62, 0x69, 0x73, 0x2D, 0x50, | ||
0x53, 0x34, 0x2D, 0x54, 0x6F, 0x6F, 0x6C, 0x63, 0x68, 0x61, 0x69, 0x6E, | ||
}; | ||
static const char string_data[] __attribute__((aligned(16))) = "Homebrew was built with the OpenOrbis PS4 Toolchain.\n\nhttps://github.com/OpenOrbis/OpenOrbis-PS4-Toolchain"; | ||
|
||
#endif |