- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- What is yacc
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2002 10:02 PM
01-25-2002 10:02 PM
I use HP10.20,when successfuly finished ./configure wu-ftp-2.6.2, I make,but get following error message:
*****************************
Make: Cannot load yacc. Stop.
What is yacc and where is it in the system?
Thanks!
--Frank
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2002 02:17 AM
01-26-2002 02:17 AM
SolutionYacc is an LALR(1) parser generator.Yacc can accept any input specification that conforms to the AT&T
Yacc documentation.
It reads the grammar specification and generates an LR(1) parser for it. The parsers consist of a set of LALR(1) parsing tables and a driver
routine in C (y.tab.c)
I found a new version:
http://hpux.asknet.de/hppd/hpux/Languages/byacc-3.0/
It is a Berkeley yacc, and it is compatible with AT&T yacc.
It isnt part of the operating system.May you configure script use it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2002 03:33 AM
01-26-2002 03:33 AM
Re: What is yacc
In case you are wondering what it stands for,
YACC = Yet Another Compiler Compiler
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2002 06:06 AM
01-26-2002 06:06 AM
Re: What is yacc
When I think of yacc, I have visions of a salesperson running their mouth about some product that I really don't want or need:
yacc, yacc, yacc :-))
if you do a google search for "examples yacc", you'll find a lot of stuff on it.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2002 09:20 AM
01-26-2002 09:20 AM
Re: What is yacc
As mentioned yacc is a compiler generator. You set a series of rules (myfile.y) and yacc will produce a parser. There is also another piece called lex whose job is to identify symbols. You don't get these unless you purchase sort sort of developer's bundle. You can also install the freely available Gnu versions.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2002 02:37 PM
01-26-2002 02:37 PM
Re: What is yacc
I suppose I should have told you that the Gnu version of yacc is called 'bison' and is available for download at: http://hpux.connect.org.uk/hppd/hpux/Gnu/bison-1.29d/