diff options
author | Geliang Tang <geliang.tang@suse.com> | 2022-03-24 17:55:54 +0800 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2022-04-04 13:29:43 -0600 |
commit | aa8ce29931d6a37aa80f10ae7aa30045108f276d (patch) | |
tree | 17d75cbea8c941c6591b3f97982a4fc30f14162d /tools | |
parent | 1585b1b55a2b9086823a6b30031eb63f965f8d44 (diff) | |
download | linux-stable-aa8ce29931d6a37aa80f10ae7aa30045108f276d.tar.gz linux-stable-aa8ce29931d6a37aa80f10ae7aa30045108f276d.tar.bz2 linux-stable-aa8ce29931d6a37aa80f10ae7aa30045108f276d.zip |
selftests: x86: add 32bit build warnings for SUSE
In order to successfully build all these 32bit tests, these 32bit gcc
and glibc packages, named gcc-32bit and glibc-devel-static-32bit on SUSE,
need to be installed.
This patch added this information in warn_32bit_failure.
Signed-off-by: Geliang Tang <geliang.tang@suse.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/x86/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/testing/selftests/x86/Makefile b/tools/testing/selftests/x86/Makefile index 53df7d3893d3..0388c4d60af0 100644 --- a/tools/testing/selftests/x86/Makefile +++ b/tools/testing/selftests/x86/Makefile @@ -92,6 +92,10 @@ warn_32bit_failure: echo "If you are using a Fedora-like distribution, try:"; \ echo ""; \ echo " yum install glibc-devel.*i686"; \ + echo ""; \ + echo "If you are using a SUSE-like distribution, try:"; \ + echo ""; \ + echo " zypper install gcc-32bit glibc-devel-static-32bit"; \ exit 0; endif |