This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: How do I link programs created with flex and bison.


Tony Stratton wrote:
> st.tab.obj : error LNK2001: unresolved external symbol _alloca

This is in cygwin1.dll.  As a quick hack, write an alloca() function
that simply calls malloc().  it will leak, but it should work
until you can either find alloca for MSVC, or figure out how to avoid
the call to alloca() in the first place.

> st.tab.obj : error LNK2001: unresolved external symbol _yyerror

You normally need to provide one of these; this is how parse errors
are returned to your program.  libbison.a would provide a dummy
version for you, but it's no big deal to add one to your
program - even right in the .y file.

> libfl.a(libmain.o) : error LNK2001: unresolved external symbol ___main

This is because libfl.a was built with gcc, and provides a default
main(), which expects cygwin's runtime support.  You'll need
to write your own main() function.
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]