-
Notifications
You must be signed in to change notification settings - Fork 537
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
flex-2.6.0 introduced bison dependency #49
Milestone
Comments
What target are you running when you get this? The test suite shouldn't build unless you to make check or similar. if it's from "make" then that's a bug. |
Ah, it's BUILT_SOURCES causing these files to be built with make all. |
So there are two bugs that need to be adressed:
|
This was referenced Dec 31, 2016
This is now fixed on master and will be included in the next release. |
eric-s-raymond
added a commit
to eric-s-raymond/flex
that referenced
this issue
Oct 1, 2020
Now that all the mode conditionals are visible early, wverything that used to be done in the prolog can be done as conditionalized code in the skeleton. Whitespace and comment diffs only. westes#49 in the retargeting patch series
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Since 2.6.0, flex now needs bison during build.
Before that, at least on NetBSD, yacc was enough.
The error I see is
This is a problem because bison currently depends on flex, so we have
a dependency cycle.
As a workaround, I've locally disabled the bison tests:
Perhaps the configure script can test for bison availability and only
enable the tests in case bison is indeed available.
The text was updated successfully, but these errors were encountered: