raulcd commented on PR #49922:
URL: https://github.com/apache/arrow/pull/49922#issuecomment-4554132362
It seems we might need to install bison manually. I validated the latest
manylinux image bison version and it's not updated.
Current manylinux image:
```bash
$ docker run --rm -it quay.io/pypa/manylinux_2_28_x86_64:2025-06-04-496f7e1
...
[root@44e92e677642 /]# bison --version
bison (GNU Bison) 3.0.4
Written by Robert Corbett and Richard Stallman.
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
[root@44e92e677642 /]#
```
Latest image:
```
$ docker run --rm -it quay.io/pypa/manylinux_2_28_x86_64:2026.05.22-1
...
[root@2ac202d32605 /]# bison --version
bison (GNU Bison) 3.0.4
Written by Robert Corbett and Richard Stallman.
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
```
I tried this on the image and got the new version:
```
curl -L -O https://ftp.gnu.org/gnu/bison/bison-3.7.6.tar.gz
tar xf bison-3.7.6.tar.gz
cd bison-3.7.6
./configure --prefix=/usr/local
make -j$(nproc)
make install
hash -r
bison --version
```
I am going to try to manually install bison and see if vcpkg is able to
build with the newer version.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]