8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 04:43:03 +01:00

Explicitly set up architecture macros for FreeBSD

This commit is contained in:
pkubaj 2022-08-11 01:03:42 +00:00 committed by Alexander Peshkov
parent 8e641c4497
commit ed63d25715

View File

@ -269,7 +269,7 @@
/***************************************************** /*****************************************************
* FreeBSD for Intel platforms * FreeBSD
*****************************************************/ *****************************************************/
#ifdef FREEBSD #ifdef FREEBSD
@ -281,7 +281,13 @@
#ifdef AMD64 #ifdef AMD64
#define FB_CPU CpuAmd #define FB_CPU CpuAmd
#else #endif
#ifdef PPC64EL
#define FB_CPU CpuPowerPc64el
#endif
#if defined(i386) || defined(__i386) || defined(__i386__)
#define I386 #define I386
#define FB_CPU CpuIntel #define FB_CPU CpuIntel
#endif #endif