Update repair command for Arch Linux (#30428)

The current repair command for Arch Linux is no longer valid because
`lib32-libstdc++5` had been removed from multilib.

Actually, `lib32-gcc-libs` from core just work.
Also see https://github.com/flutter/flutter/issues/25035
This commit is contained in:
Wai Hon Law 2019-04-05 07:55:29 -07:00 committed by Christopher Fujino
parent 5e52f5df55
commit e8d968ed8d

View file

@ -23,7 +23,7 @@ class UserMessages {
String get flutterBinariesLinuxRepairCommands => String get flutterBinariesLinuxRepairCommands =>
'On Debian/Ubuntu/Mint: sudo apt-get install lib32stdc++6\n' 'On Debian/Ubuntu/Mint: sudo apt-get install lib32stdc++6\n'
'On Fedora: dnf install libstdc++.i686\n' 'On Fedora: dnf install libstdc++.i686\n'
'On Arch: pacman -S lib32-libstdc++5 (you need to enable multilib: https://wiki.archlinux.org/index.php/Official_repositories#multilib)'; 'On Arch: pacman -S lib32-gcc-libs';
// Messages used in NoIdeValidator // Messages used in NoIdeValidator
String get noIdeStatusInfo => 'No supported IDEs installed'; String get noIdeStatusInfo => 'No supported IDEs installed';