Nikita Popov
a2c0ac06ff
[llvm-exegesis] Fix musl build ( #147954 )
...
We should not include both linux/prctl.h and sys/prctl.h. This works
with glibc because the latter includes the former, but breaks with musl
because the latter redeclares the contents of the former, resulting in:
```
/usr/local/aarch64-linux-musl/include/sys/prctl.h:88:8: error:
redefinition of 'struct prctl_mm_map'
88 | struct prctl_mm_map {
| ^~~~~~~~~~~~
In file included from
/checkout/src/llvm-project/llvm/tools/llvm-exegesis/lib/AArch64/Target.cpp:13:
/usr/local/aarch64-linux-musl/include/linux/prctl.h:134:8: note:
previous definition of 'struct prctl_mm_map'
134 | struct prctl_mm_map {
| ^~~~~~~~~~~~
```
Fixes https://github.com/llvm/llvm-project/issues/139443 .
2025-07-10 16:31:01 +02:00
..
2025-05-20 14:34:44 -07:00
2025-06-27 11:05:49 -07:00
2025-01-16 12:27:54 -06:00
2025-04-22 09:45:15 +01:00
2025-04-08 19:34:03 -07:00
2025-07-03 17:03:39 +10:00
2025-04-07 17:12:50 +01:00
2025-06-12 11:51:58 +01:00
2025-06-24 14:42:06 +01:00
2025-03-03 13:46:33 +07:00
2025-06-02 23:27:38 -07:00
2025-06-06 20:02:40 -04:00
2025-04-26 18:18:09 -07:00
2025-07-08 09:56:57 -05:00
2025-03-05 07:22:35 -08:00
2024-12-11 15:44:44 -08:00
2025-03-03 13:46:33 +07:00
2024-12-11 15:44:44 -08:00
2025-03-03 13:46:33 +07:00
2025-06-06 15:03:07 +01:00
2025-03-29 22:40:05 -07:00
2024-12-11 15:44:44 -08:00
2025-03-13 14:26:42 +01:00
2025-06-12 11:51:58 +01:00
2025-06-27 11:05:49 -07:00
2025-06-27 11:05:49 -07:00
2024-12-11 15:44:44 -08:00
2025-07-10 16:31:01 +02:00
2025-04-23 09:29:06 +01:00
2025-04-18 10:05:55 -07:00
2025-05-26 14:11:15 +05:30
2024-12-11 15:44:44 -08:00
2025-03-06 10:27:47 +01:00
2025-06-26 10:31:43 +10:00
2025-03-07 09:37:19 +01:00
2025-03-29 22:40:05 -07:00
2025-06-12 11:51:58 +01:00
2025-03-29 22:40:05 -07:00
2025-06-24 15:01:29 -07:00
2025-06-13 14:35:40 -07:00
2025-07-08 18:36:56 -07:00
2025-07-04 14:10:28 +08:00
2025-06-26 23:38:12 -07:00
2025-04-08 16:16:53 +02:00
2025-04-14 22:21:40 -07:00
2025-05-25 08:22:51 -07:00
2025-06-27 11:05:49 -07:00
2025-03-06 10:27:47 +01:00
2025-01-24 15:08:14 +01:00
2025-06-24 14:56:55 -07:00
2025-06-29 10:37:12 +08:00
2025-06-24 16:23:00 -07:00
2025-06-10 23:34:26 +03:00
2025-06-23 09:25:14 -07:00
2025-03-18 22:12:45 -07:00
2025-06-09 13:51:03 -07:00
2025-06-26 08:40:40 -07:00
2025-06-26 23:38:12 -07:00
2025-06-13 22:36:14 -07:00
2025-02-24 23:08:48 -08:00
2025-03-12 17:35:09 +01:00
2025-01-24 10:53:11 +00:00
2024-12-11 15:44:44 -08:00
2025-06-06 13:25:07 +01:00
2024-12-11 15:44:44 -08:00
2025-03-03 13:46:33 +07:00
2025-04-16 12:29:33 -07:00
2025-06-24 15:01:29 -07:00
2025-07-08 08:49:17 -07:00
2025-07-08 17:26:03 +09:00
2025-04-02 11:52:41 +02:00
2025-03-03 13:46:33 +07:00
2025-06-12 09:27:27 +08:00
2025-02-11 15:11:02 +00:00
2025-06-24 00:10:22 -07:00
2025-07-08 08:49:17 -07:00
2025-04-02 19:26:19 -05:00