Skip to content

Commit e8d968e

Browse files
whhonechristopherfujino
authored andcommitted
Update repair command for Arch Linux (flutter#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 flutter#25035
1 parent 5e52f5d commit e8d968e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/flutter_tools/lib/src/base/user_messages.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class UserMessages {
2323
String get flutterBinariesLinuxRepairCommands =>
2424
'On Debian/Ubuntu/Mint: sudo apt-get install lib32stdc++6\n'
2525
'On Fedora: dnf install libstdc++.i686\n'
26-
'On Arch: pacman -S lib32-libstdc++5 (you need to enable multilib: https://wiki.archlinux.org/index.php/Official_repositories#multilib)';
26+
'On Arch: pacman -S lib32-gcc-libs';
2727

2828
// Messages used in NoIdeValidator
2929
String get noIdeStatusInfo => 'No supported IDEs installed';

0 commit comments

Comments
 (0)