Home | History | Annotate | Download | only in m4
      1 dnl Copyright (c) 2018 Petr Vorel <pvorel (a] suse.cz>
      2 dnl
      3 dnl This program is free software;  you can redistribute it and/or modify
      4 dnl it under the terms of the GNU General Public License as published by
      5 dnl the Free Software Foundation; either version 2 of the License, or
      6 dnl (at your option) any later version.
      7 dnl
      8 dnl This program is distributed in the hope that it will be useful,
      9 dnl but WITHOUT ANY WARRANTY;  without even the implied warranty of
     10 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
     11 dnl the GNU General Public License for more details.
     12 dnl
     13 dnl You should have received a copy of the GNU General Public License
     14 dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
     15 
     16 AC_DEFUN([LTP_DETECT_HOST_CPU], [
     17 AC_SUBST([HOST_CPU], [$host_cpu])
     18 AS_CASE([$host_cpu],
     19   [amd64], [HOST_CPU=x86_64],
     20   [arm*], [HOST_CPU=arm],
     21   [i?86|x86], [HOST_CPU=x86],
     22   [s390*], [HOST_CPU=s390],
     23 )
     24 AC_SUBST([HOST_CPU])
     25 ])
     26