Properly detect 'bepc' as 'x86' CPU for Haiku

pull/5271/head
François Revol 6 years ago committed by Nirbheek Chauhan
parent 5da07de651
commit 8713b65944
  1. 2
      mesonbuild/environment.py

@ -204,6 +204,8 @@ def detect_cpu_family(compilers):
trial = platform.machine().lower()
if trial.startswith('i') and trial.endswith('86'):
trial = 'x86'
elif trial == 'bepc':
trial = 'x86'
elif trial.startswith('arm'):
trial = 'arm'
elif trial.startswith('ppc64'):

Loading…
Cancel
Save