1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
/*******************************************************************************
*
* HEADER: config.h
*
********************************************************************************
*
* DESCRIPTION: Configuration for ucpp
*
********************************************************************************
*
* $Project: /Convert-Binary-C $
* $Author: mhx $
* $Date: 2009/03/15 04:10:46 +0100 $
* $Revision: 23 $
* $Source: /ucpp/config.h $
*
********************************************************************************
*
* Copyright (c) 2002-2009 Marcus Holland-Moritz. All rights reserved.
* This program is free software; you can redistribute it and/or modify
* it under the same terms as Perl itself.
*
*******************************************************************************/
#ifndef _UCPP_CONFIG_H
#define _UCPP_CONFIG_H
#include "ctlib/arch.h"
/*-------------------------*/
/* configure ucpp features */
/*-------------------------*/
#define UCPP_REENTRANT
#define UCPP_CLONE
#define NO_UCPP_COPY_LINE
/*------------------------*/
/* configure ucpp pragmas */
/*------------------------*/
#define PRAGMA_TOKENIZE
#define PRAGMA_TOKEN_END ((unsigned char)'\n')
/*-------------*/
/* no defaults */
/*-------------*/
#define STD_INCLUDE_PATH 0
#define STD_ASSERT 0
#define STD_MACROS 0
/*-------------------------*/
/* 64-bit integer handling */
/*-------------------------*/
#if ARCH_NATIVE_64_BIT_INTEGER
#define NATIVE_UINTMAX u_64
#define NATIVE_INTMAX i_64
#define NATIVE_SIGNED i_64
#define NATIVE_UNSIGNED u_64
#define NATIVE_UNSIGNED_BITS 64
#define NATIVE_UNSIGNED_ONE 1ULL
#define NATIVE_SIGNED_MIN (-9223372036854775807LL - 1)
#define NATIVE_SIGNED_MAX 9223372036854775807LL
#else
#define SIMUL_UINTMAX
#undef NATIVE_SIGNED
#define SIMUL_ARITH_SUBTYPE u_32
#define SIMUL_SUBTYPE_BITS 32
#define SIMUL_NUMBITS 64
#endif
/*----------------------------------*/
/* configure preprocessor and lexer */
/*----------------------------------*/
#define DEFAULT_CPP_FLAGS (DISCARD_COMMENTS | WARN_STANDARD \
| WARN_PRAGMA | FAIL_SHARP | MACRO_VAARG \
| CPLUSPLUS_COMMENTS | LINE_NUM | TEXT_OUTPUT \
| KEEP_OUTPUT | HANDLE_TRIGRAPHS \
| HANDLE_ASSERTIONS)
#define DEFAULT_LEXER_FLAGS (DISCARD_COMMENTS | FAIL_SHARP | LEXER \
| HANDLE_TRIGRAPHS | HANDLE_ASSERTIONS)
/*-------------------*/
/* memory management */
/*-------------------*/
#include <stdlib.h>
extern void *CBC_malloc(size_t size);
extern void *CBC_realloc(void *ptr, size_t size);
extern void CBC_free(void *ptr);
#define UCPP_MALLOC CBC_malloc
#define UCPP_REALLOC CBC_realloc
#define UCPP_FREE CBC_free
/*-------------*/
/* other stuff */
/*-------------*/
#define ARITHMETIC_CHECKS
#define LOW_MEM
#define NO_UCPP_ERROR_FUNCTIONS
#define MAX_CHAR_VAL 256
#define UCPP_PUBLIC_PREFIX ucpp_public_
#define UCPP_PRIVATE_PREFIX ucpp_private_
#endif /* _UCPP_CONFIG_H */
|