Jump to content

Talk:GNU Bison: Difference between revisions

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
Content deleted Content added
m Article Class improved from stub using AWB
Line 25: Line 25:


:You might find this helpful: http://tvtropes.org/pmwiki/pmwiki.php/Main/DontExplainTheJoke [[User:Tedickey|TEDickey]] ([[User talk:Tedickey|talk]]) 09:39, 25 January 2012 (UTC)
:You might find this helpful: http://tvtropes.org/pmwiki/pmwiki.php/Main/DontExplainTheJoke [[User:Tedickey|TEDickey]] ([[User talk:Tedickey|talk]]) 09:39, 25 January 2012 (UTC)

AFAIK yacc stands for "Yet another compiler compiler".


== GCC ==
== GCC ==

Revision as of 19:24, 8 November 2014

WikiProject iconComputing: Software Start‑class
WikiProject iconThis article is within the scope of WikiProject Computing, a collaborative effort to improve the coverage of computers, computing, and information technology on Wikipedia. If you would like to participate, please visit the project page, where you can join the discussion and see a list of open tasks.
StartThis article has been rated as Start-class on Wikipedia's content assessment scale.
???This article has not yet received a rating on the project's importance scale.
Taskforce icon
This article is supported by WikiProject Software.

What this page needs

This page needs a few things, IMHO:

  • Description on Bison's history, its makers, and who is using it right now (the programming language Ruby is created using bison, for instance)
  • A piece of grammar, and a text to explain that grammar (some stuff could be found a the Introduction to Bison
I started a "Who is using it" section. It lacks a lot of real-world usage, though. Espadrine (talk) 13:07, 1 July 2011 (UTC)[reply]

More Explanation

Agreeing with the above, I believe more explanation of where it stands in the whole perspective of the parsing process. It says it is used along with flex, but what role to each play with each other.

jptdrake 18:11, 4 February 2007 (UTC)[reply]

Circumstance hereby elects you to do improve this in a small or large way. Gronky 19:00, 4 February 2007 (UTC)[reply]

Word play

Yak / bison, now I got it. --Abdull (talk) 10:37, 26 February 2008 (UTC)[reply]

I notice that the source of the name is not mentioned anywhere in the article. I would think that the above is correct and it is a play on yacc/yak, but I can't find any sources that explicitly say so. Are there any? - Paul Richter (talk) 04:43, 25 January 2012 (UTC)[reply]
http://www.developer.com/net/cplus/article.php/3642516/Classic-Parsing-with-Flex-and-Bison.htm would suffice. Probably there are no authoritative sources TEDickey (talk) 09:21, 25 January 2012 (UTC)[reply]
You might find this helpful: http://tvtropes.org/pmwiki/pmwiki.php/Main/DontExplainTheJoke TEDickey (talk) 09:39, 25 January 2012 (UTC)[reply]

AFAIK yacc stands for "Yet another compiler compiler".

GCC

This current article states that "GCC" once used Bison but later switched. However, the provided reference (a mailing list post made before the work even happened) only refers GCC's C++ front-end and specifically states that (at the time) they had no intention of replacing the C parser.

I haven't taken the time to research whether or not Bison was replaced wholesale or just for C++. However, What "GCC" actually refers to should probably be clarified and matched with a more appropriate reference. -- Craigbarnes85 (talk) 09:43, 11 August 2011 (UTC)[reply]

Is Bash's distribution of generated files special?

In the list of applications using Bison, I removed this from the entry about Bash:

  • It is distributed with Bison-generated files.

I guess this is referring to distributing Bash's source code. I.e. Bash probably distributes the C files generated by Bison so that others can recompile Bash without having to have a compatible version of Bison installed. (This is in addition to Bash distributing the parser source code that gets fed into Bison, as required by the GPL.)

AFAIK, this is common practice, so it should be a general comment in the article rather than just being attached to Bash. I'll do that now. Just wanted to leave a note in case I'd misunderstood. Can someone reply to say I've got this right/wrong? Gronky (talk) 23:19, 4 August 2013 (UTC)[reply]

bash's use of bison

A quick check of bash 4.1's source shows that while it is distributed with parse.c and parse.h generated by bison, it is not using any bison-specific features. So the "use" is only superficial (and unless commented on more explicitly, the tie-in can be removed). TEDickey (talk) 23:25, 4 August 2013 (UTC)[reply]

Ok, thanks for checking that. I went ahead and wrote a section about this: GNU_bison#Licence_and_distribution_of_generated_code.
BTW, I remember us talking on a Talk page previously, could be one or three years ago, and I said I'd fix up an article about a free software package, but I never did. Can you remember which one? Gronky (talk) 00:11, 5 August 2013 (UTC)[reply]
That was this, and I did merge them. TEDickey (talk) 00:25, 5 August 2013 (UTC)[reply]
Wow, I can't believe that discussion was 5 years ago. Thanks for doing the merger. Gronky (talk) 00:31, 5 August 2013 (UTC)[reply]
no problem (time goes rapidly...) TEDickey (talk) 00:48, 5 August 2013 (UTC)[reply]
Hmm, interesting. Gronky (talk) 00:19, 5 August 2013 (UTC)[reply]
Technically, bash can work with byacc output as well (though the reason for not doing that is unrelated to license issues). TEDickey (talk) 00:25, 5 August 2013 (UTC)[reply]
I've described the problem I saw: GNU_bison#Where_is_it_used.3F
But I don't know what byacc is, so it could be incomplete or even wrong. Gronky (talk) 00:31, 5 August 2013 (UTC)[reply]
Berkeley Yacc TEDickey (talk) 00:39, 5 August 2013 (UTC)[reply]
For what it's worth, byacc implements %pure_parser, and (though the source implementation is deliberately slightly different), can replace bison on some of those uses (not all). (I see that you noted that). TEDickey (talk) 08:05, 5 August 2013 (UTC)[reply]