-
Notifications
You must be signed in to change notification settings - Fork 15
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 #8 from Decompollaborate/develop
1.2.1: Static library building in the Makefile
- Loading branch information
Showing
7 changed files
with
79 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* SPDX-FileCopyrightText: © 2022 Decompollaborate */ | ||
/* SPDX-License-Identifier: MIT */ | ||
|
||
#ifndef RABBITIZER_VERSION_H | ||
#define RABBITIZER_VERSION_H | ||
|
||
#include "Utils.h" | ||
|
||
// Header version | ||
#define RAB_VERSION_MAJOR 1 | ||
#define RAB_VERSION_MINOR 2 | ||
#define RAB_VERSION_PATCH 1 | ||
|
||
#define RAB_VERSION_STR RAB_STRINGIFY(RAB_VERSION_MAJOR) "." RAB_STRINGIFY(RAB_VERSION_MINOR) "." RAB_STRINGIFY(RAB_VERSION_PATCH) | ||
|
||
// Compiled library version | ||
extern const int RabVersion_Major; | ||
extern const int RabVersion_Minor; | ||
extern const int RabVersion_Patch; | ||
|
||
extern const char RabVersion_Str[]; | ||
|
||
#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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* SPDX-FileCopyrightText: © 2022 Decompollaborate */ | ||
/* SPDX-License-Identifier: MIT */ | ||
|
||
#ifndef RABBITIZER_H | ||
#define RABBITIZER_H | ||
|
||
#include "common/Utils.h" | ||
#include "common/RabbitizerVersion.h" | ||
#include "common/RabbitizerConfig.h" | ||
|
||
#include "instructions/RabbitizerOperandType.h" | ||
#include "instructions/RabbitizerInstrId.h" | ||
#include "instructions/RabbitizerInstrSuffix.h" | ||
#include "instructions/RabbitizerInstrDescriptor.h" | ||
#include "instructions/RabbitizerRegister.h" | ||
#include "instructions/RabbitizerInstruction.h" | ||
#include "instructions/RabbitizerInstructionRsp.h" | ||
#include "instructions/RabbitizerInstructionR5900.h" | ||
|
||
#include "analysis/RabbitizerTrackedRegisterState.h" | ||
#include "analysis/RabbitizerLoPairingInfo.h" | ||
#include "analysis/RabbitizerRegistersTracker.h" | ||
|
||
#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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* SPDX-FileCopyrightText: © 2022 Decompollaborate */ | ||
/* SPDX-License-Identifier: MIT */ | ||
|
||
#include "common/RabbitizerVersion.h" | ||
|
||
const int RabVersion_Major = RAB_VERSION_MAJOR; | ||
const int RabVersion_Minor = RAB_VERSION_MINOR; | ||
const int RabVersion_Patch = RAB_VERSION_PATCH; | ||
|
||
const char RabVersion_Str[] = RAB_VERSION_STR; |