tinycc-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Tinycc-devel] [PATCH] pp-defines


From: Thomas Preud'homme
Subject: Re: [Tinycc-devel] [PATCH] pp-defines
Date: Sun, 04 Jan 2015 01:03:37 +0000
User-agent: KMail/4.14.1 (Linux/2.6.38-ac2-ac100; KDE/4.14.2; armv7l; ; )

Le vendredi 2 janvier 2015, 15:53:39 Sergey Korshunoff a écrit :
> A values for
>     __STDC__, __STDC_VERSION__, __STDC_HOSTED__
> on the Linux are defined as in gcc.

Hi Sergey,

This patch seems unnecessary as tcc_define_symbol with a third argument NULL is 
equivalent as setting it to 1 (#define FOO is the same as #define FOO 1).

See for yourself:

% cat ~/foo.c
int foo = __STDC__;
% tcc -E ~/foo.c
# 1 "/home/foo/foo.c"
int foo = 1;

Best regards,

Thomas



reply via email to

[Prev in Thread] Current Thread [Next in Thread]