22 lines
361 B
C
22 lines
361 B
C
//
|
|
// Created by erki on 13/01/24.
|
|
//
|
|
|
|
#ifndef ETL_COMPILER_H
|
|
#define ETL_COMPILER_H
|
|
|
|
#define ETL_COMPILER_GCC
|
|
#define ETL_CPP23_SUPPORTED 1
|
|
|
|
#if !defined(CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED)
|
|
#define ETL_NO_CHECKS
|
|
#endif
|
|
|
|
#if defined(CONFIG_CXX_EXCEPTIONS)
|
|
#define ETL_THROW_EXCEPTIONS
|
|
#endif
|
|
|
|
#include "etl/profiles/gcc_generic.h"
|
|
|
|
#endif // ETL_COMPILER_H
|