bug-bison
[Top][All Lists]
Advanced

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

Re: problems compiling groff with gcc-3.0.3


From: Akim Demaille
Subject: Re: problems compiling groff with gcc-3.0.3
Date: 29 Jan 2002 19:51:16 +0100
User-agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.4 (Common Lisp)

>>>>> "Hans" == Hans Aberg <address@hidden> writes:

>> Hans, please, do ourselves a favor: before asking questions, see if
>> you can't answer to them by ourselves.

s/ourselves/yourself/, of course.

Hans> I do not currently have access to diff, as I had to de-install
Hans> my UNIX.

What's the relationship with Reading The Fucking Code?


Hans> I have a vague memory that - means rows deleted, and the text:

>> * src/bison.simple (YYSIZE_T): Do not define merely because
>> YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
>> On some platforms, <alloca.h> apparently does not declare YYSTD
>> (size_t).

Hans> seems to say that YYSIZE_T should not be defined.

... at this point.

>> We are here to do free software, which means you can read the
>> fucking code.  So read the fucking code, and _then_ you may ask a
>> question.

Hans> So I read your fucking code, and then I asked the question. --
Hans> It would be better though if your code did not fuck the user.

Show me!  Show me where you have a problem, instead of thinking you
might have one if you try.  Once you come with a bug report, we'll
handle it.  I see no bug report.


In case you don't even have a access to a text editor, let me show you
the Fucking Code I'm referring to.

#if ! defined (YYSIZE_T) && defined (__SIZE_TYPE__)
# define YYSIZE_T __SIZE_TYPE__
#endif
#if ! defined (YYSIZE_T) && defined (size_t)
# define YYSIZE_T size_t
#endif
#if ! defined (YYSIZE_T)
# ifdef __cplusplus
#  include <cstddef> /* INFRINGES ON USER NAME SPACE */
#  define YYSIZE_T std::size_t
# else
#  ifdef __STDC__
#   include <stddef.h> /* INFRINGES ON USER NAME SPACE */
#   define YYSIZE_T size_t
#  endif
# endif
#endif
#if ! defined (YYSIZE_T)
# define YYSIZE_T unsigned int
#endif



reply via email to

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