mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 13:58:40 +00:00
stop non-x64 builds with less cryptic errors
This commit is contained in:
@@ -234,4 +234,14 @@
|
|||||||
# define LANG_C 0
|
# define LANG_C 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
////////////////////////////////
|
||||||
|
//~ rjf: Unsupported Errors
|
||||||
|
|
||||||
|
#if ARCH_X86
|
||||||
|
# error You tried to build in x86 (32 bit) mode, but currently, only building in x64 (64 bit) mode is supported.
|
||||||
|
#endif
|
||||||
|
#if !ARCH_X64
|
||||||
|
# error You tried to build with an unsupported architecture. Currently, only building in x64 mode is supported.
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif // BASE_CONTEXT_CRACKING_H
|
#endif // BASE_CONTEXT_CRACKING_H
|
||||||
|
|||||||
@@ -141,4 +141,14 @@
|
|||||||
# error Endianness of this architecture not understood by context cracker
|
# error Endianness of this architecture not understood by context cracker
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
////////////////////////////////
|
||||||
|
//~ rjf: Unsupported Errors
|
||||||
|
|
||||||
|
#if ARCH_X86
|
||||||
|
# error You tried to build in x86 (32 bit) mode, but currently, only building in x64 (64 bit) mode is supported.
|
||||||
|
#endif
|
||||||
|
#if !ARCH_X64
|
||||||
|
# error You tried to build with an unsupported architecture. Currently, only building in x64 mode is supported.
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif // BASE_CONTEXT_CRACKING_H
|
#endif // BASE_CONTEXT_CRACKING_H
|
||||||
|
|||||||
Reference in New Issue
Block a user