mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-21 12:45:19 +00:00
65a716bb95
Building it requires gcc >= 10.2 or clang >= 12. Using sstrip with its -z argument can produce non-working binaries, like a segfaulting `getrandom`, so don't allow that combination. Signed-off-by: Andre Heider <a.heider@gmail.com>
13 lines
308 B
Bash
Executable File
13 lines
308 B
Bash
Executable File
cat << EOF | "$STAGING_DIR_HOST/bin/g++" -c -x c++ -o /dev/null - >/dev/null 2>&1
|
|
#if __clang__
|
|
#if __clang_major__ < $3
|
|
#error "clang too old"
|
|
#endif
|
|
#else
|
|
#if __GNUC__ < $1 || (__GNUC__ == $1 && (__GNUC_MINOR__ < $2))
|
|
#error "gcc too old"
|
|
#endif
|
|
#endif
|
|
EOF
|
|
[ $? -eq 0 ] && echo y || echo n
|