Failed to compile Wine on FreeBSD 13 RELEASE

Hello!

I have the latest FreeBSD 13 RELEASE.
I'd like to play World of Warcraft on my FreeBSD machine, so I tried to compile wine from ports(needed to switch vk and dxvk support on).
Unfortunately, I got an error, which I can't understand and thus can't solve it.
output - https://pastebin.com/2CPX5E8L

I'm relatively new to FreeBSD so any help is appreciated!
 
Ye, and that's pretty much what is strange about this.
After these last lines it returned to prompt:
Code:
bison -p parser_ -o tools/wrc/parser.tab.c -d tools/wrc/parser.y
tools/wrc/parser.y: warning: 5 shift/reduce conflicts [#

I tried both
Code:
portmaster -gD emulators/wine
and
Makefile:
make install clean
result is the same
 
Then something (bison?) is crashing… Could it be possible that you're running out of RAM?
I executed the line
Code:
bison -p parser_ -o tools/wrc/parser.tab.c -d tools/wrc/parser.y
and got the same warning and was returned to prompt.
I have 16gb of RAM and it used barely 5gb at peak during compilation.
As far as I understand, bison is some kind of static analyzer, maybe I can switch it off in build scenario, if it's possible.
 
Nope, it's a parser generator and used here to generate some C code for parsing a language…

Does it dump core?
 
Back
Top