Changes between Initial Version and Version 1 of Ticket #59512, comment 1


Ignore:
Timestamp:
Oct 29, 2019, 3:14:38 PM (4 years ago)
Author:
kencu (Ken)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #59512, comment 1

    initial v1  
    1414 elif cpu_family == 'ppc' or cpu_family == 'ppc64'
    1515}}}
     16
     17Edit: -- looking at this now, this doesn't look like what worked. I'll try it again. It should be this instead, I think. I'll verify that later today -- still a hack, though, and not an acceptable fix for an actual port patch:
     18{{{
     19$ cat patch-orc-meson-build-override-cpu-choice.diff
     20--- meson.build.orig    2019-10-28 12:47:16.000000000 -0700
     21+++ meson.build 2019-10-28 12:48:22.000000000 -0700
     22@@ -54,7 +54,7 @@
     23 
     24 cpu_family = host_machine.cpu_family()
     25 if cpu_family == 'x86'
     26-  cdata.set('HAVE_I386', true)
     27+  cdata.set('HAVE_AMD64', true)
     28 elif cpu_family == 'x86_64'
     29   cdata.set('HAVE_AMD64', true)
     30 elif cpu_family == 'ppc' or cpu_family == 'ppc64'
     31}}}