mirror of
https://github.com/mii443/qemu.git
synced 2025-08-25 00:19:36 +00:00
Merge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into staging
The Darwin host support still needs some more work. It won't make it for soft-freeze, but I'd like these preparatory patches to be merged anyway. # gpg: Signature made Fri 29 Jun 2018 11:39:04 BST # gpg: using RSA key 71D4D5E5822F73D6 # gpg: Good signature from "Greg Kurz <groug@kaod.org>" # gpg: aka "Gregory Kurz <gregory.kurz@free.fr>" # gpg: aka "[jpeg image of size 3330]" # Primary key fingerprint: B482 8BAF 9431 40CE F2A3 4910 71D4 D5E5 822F 73D6 * remotes/gkurz/tags/for-upstream: 9p: darwin: Explicitly cast comparisons of mode_t with -1 cutils: Provide strchrnul Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
18
configure
vendored
18
configure
vendored
@ -4796,6 +4796,21 @@ if compile_prog "" "" ; then
|
||||
sem_timedwait=yes
|
||||
fi
|
||||
|
||||
##########################################
|
||||
# check if we have strchrnul
|
||||
|
||||
strchrnul=no
|
||||
cat > $TMPC << EOF
|
||||
#include <string.h>
|
||||
int main(void);
|
||||
// Use a haystack that the compiler shouldn't be able to constant fold
|
||||
char *haystack = (char*)&main;
|
||||
int main(void) { return strchrnul(haystack, 'x') != &haystack[6]; }
|
||||
EOF
|
||||
if compile_prog "" "" ; then
|
||||
strchrnul=yes
|
||||
fi
|
||||
|
||||
##########################################
|
||||
# check if trace backend exists
|
||||
|
||||
@ -6280,6 +6295,9 @@ fi
|
||||
if test "$sem_timedwait" = "yes" ; then
|
||||
echo "CONFIG_SEM_TIMEDWAIT=y" >> $config_host_mak
|
||||
fi
|
||||
if test "$strchrnul" = "yes" ; then
|
||||
echo "HAVE_STRCHRNUL=y" >> $config_host_mak
|
||||
fi
|
||||
if test "$byteswap_h" = "yes" ; then
|
||||
echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
|
||||
fi
|
||||
|
Reference in New Issue
Block a user