-
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.
* add eabi to the makefile * eabi support * Fix -Wexpansion-to-defined * Add eabi builds to CI * changelog * fix abi guard
- Loading branch information
1 parent
b970687
commit 1b07dbc
Showing
11 changed files
with
109 additions
and
15 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
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#ifndef GCC_VR4300_ABI_H | ||
#define GCC_VR4300_ABI_H | ||
|
||
#if (defined(_MIPS_SIM) && (_MIPS_SIM == _ABIO32)) | ||
#define ABI_O32 1 | ||
#else | ||
#define ABI_O32 0 | ||
#endif | ||
|
||
#if (defined(_MIPS_SIM) && (_MIPS_SIM == _ABIN32)) | ||
#define ABI_N32 1 | ||
#else | ||
#define ABI_N32 0 | ||
#endif | ||
|
||
#if (defined(_MIPS_SIM) && (_MIPS_SIM == _ABIO64)) | ||
#define ABI_O64 1 | ||
#else | ||
#define ABI_O64 0 | ||
#endif | ||
|
||
#if (defined(_MIPS_SIM) && (_MIPS_SIM == _ABI64)) | ||
#define ABI_N64 1 | ||
#else | ||
#define ABI_N64 0 | ||
#endif | ||
|
||
#if (defined(__mips_eabi) && __mips_eabi && !defined(__mips64)) | ||
#define ABI_EABI32 1 | ||
#else | ||
#define ABI_EABI32 0 | ||
#endif | ||
|
||
#if (defined(__mips_eabi) && __mips_eabi && defined(__mips64) && __mips64) | ||
#define ABI_EABI64 1 | ||
#else | ||
#define ABI_EABI64 0 | ||
#endif | ||
|
||
#endif |
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
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