diff options
author | Georgi Valkov <gvalkov@gmail.com> | 2025-04-18 16:37:33 +0300 |
---|---|---|
committer | Robert Marko <robimarko@gmail.com> | 2025-04-19 12:05:42 +0200 |
commit | b77e6cd6272d55af7ea64200dd2358666d25b6db (patch) | |
tree | 07f7bb01a8fe4f661aaf3ea9828aa536d1634b9b /package/utils/ct-bugcheck | |
parent | 8ffb3b2829773455641d406eada7c9bfaf65b89e (diff) | |
download | openwrt-main.tar.gz openwrt-main.tar.bz2 openwrt-main.zip |
Fix an error while building target/linux x64 on macOS 15.4 host,
due to the PATH_MAX macro being redefined:
mkdir -p /Volumes/test/openwrt/build_dir/target-x86_64_musl/linux-x86_64/linux-6.6.86/tools/objtool && make O=/Volumes/test/openwrt/build_dir/target-x86_64_musl/linux-x86_64/linux-6.6.86 subdir=tools/objtool --no-print-directory -C objtool
exec-cmd.c:15:9: error: 'PATH_MAX' macro redefined [-Werror,-Wmacro-redefined]
15 | #define PATH_MAX 4096
| ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/syslimits.h:103:9: note: previous definition is here
103 | #define PATH_MAX 1024 /* max bytes in pathname */
| ^
exec-cmd.c is compiled as part of objtool to run on the host, and
therefore host headers are used, where PATH_MAX is already defined.
Using an old OpenWRT snapshot from 2025-02-16, where linux-6.6.77
used to build correctly, does not help. Reverting from Xcode 16.3 to
16.2 does not help either.
Signed-off-by: Georgi Valkov <gvalkov@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/18530
Signed-off-by: Robert Marko <robimarko@gmail.com>
Diffstat (limited to 'package/utils/ct-bugcheck')
0 files changed, 0 insertions, 0 deletions