mirror of
https://github.com/opnsense/src.git
synced 2026-04-14 13:57:02 -04:00
22 lines
481 B
C
22 lines
481 B
C
/* $FreeBSD$ */
|
|
|
|
#include "itbl-mips.h"
|
|
|
|
/* Choose a default ABI for MIPS targets. */
|
|
#ifndef MIPS_DEFAULT_ABI
|
|
#define MIPS_DEFAULT_ABI NO_ABI
|
|
#endif
|
|
|
|
/* Default CPU for MIPS targets. */
|
|
#define MIPS_CPU_STRING_DEFAULT "from-abi"
|
|
|
|
/* Generate 64-bit code by default on MIPS targets. */
|
|
#ifndef MIPS_DEFAULT_64BIT
|
|
#define MIPS_DEFAULT_64BIT 0
|
|
#endif
|
|
|
|
/* Allow use of E_MIPS_ABI_O32 on MIPS targets. */
|
|
#define USE_E_MIPS_ABI_O32 1
|
|
|
|
/* Use traditional mips */
|
|
#define TE_TMIPS 1
|