Re: Meson and Numa: C header not found

From: "Daniel Westermann (DWE)" <daniel(dot)westermann(at)dbi-services(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Tomas Vondra <tomas(at)vondra(dot)me>, "pgsql-general(at)lists(dot)postgresql(dot)org" <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: Meson and Numa: C header not found
Date: 2025-04-10 17:18:31
Message-ID: GV0P278MB0419BD909F5018FBBE67C98DD2B72@GV0P278MB0419.CHEP278.PROD.OUTLOOK.COM
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

>That's just weird then.  The only other theory that comes to mind
>is that there's something wrong with the SELinux attributes on these
>fles.  restorecon might help if so.

If that would be the case, then it is a packaging issue on Fedora, I guess.

Even after restorecon I get this:

Found pkg-config: YES (/usr/bin/pkg-config) 2.3.0
Run-time dependency numa found: YES 2.0.19

../postgresql/meson.build:957:12: ERROR: C header 'numa.h' not found

... which gives this in the log:

Run-time dependency numa found: YES 2.0.19
Using cached compile:
Cached command line: cc /home/postgres/build/meson-private/tmpjon5_bg2/testfile.c -E -P -D_FILE_OFFSET_BITS=64 -P -O0

Code:

#ifdef __has_include
#if !__has_include("numa.h")
#error "Header 'numa.h' could not be found"
#endif
#else
#include <numa.h>
#endif
Cached compiler stdout:

Cached compiler stderr:
/home/postgres/build/meson-private/tmpjon5_bg2/testfile.c:4:12: error: #error "Header 'numa.h' could not be found"
4 | #error "Header 'numa.h' could not be found"
| ^~~~~

../postgresql/meson.build:957:12: ERROR: C header 'numa.h' not found

Regards
Daniel

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2025-04-10 17:45:03 Re: Meson and Numa: C header not found
Previous Message Tom Lane 2025-04-10 16:39:22 Re: Meson and Numa: C header not found