I'm installing flutter in a centos7 docker container. It's complaining that there are executables that can't be executed. A solution is there, but not for centos7:
[!] Flutter (Channel @{u}, v0.0.0-unknown, on Linux, locale en_US)
✗ Downloaded executables cannot execute on host.
See https://github.com/flutter/flutter/issues/6207 for more information
On Debian/Ubuntu/Mint: sudo apt-get install lib32stdc++6
On Fedora: dnf install libstdc++.i686
On Arch: pacman -S lib32-libstdc++5
A search on https://pkgs.org for lib32stdc++6
, libstdc++.i686
, lib32-libstdc++5
didn't show a package for centos7. The github issue does not mention centos at all.
Which package of lib...++
do I need to install in my centos7 docker container to get flutter running?
This issue seems to be related to Flutter version Unknown
I have installed the newest git version as described here. However I'm still getting the same error.