You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
configure: Check for support for labels in the inline assembly
Use this for enabling the ppc timer.h implementation only on assemblers that support labels in the inline assembly. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
3
configure
vendored
3
configure
vendored
@@ -1294,6 +1294,7 @@ HAVE_LIST="
|
|||||||
ibm_asm
|
ibm_asm
|
||||||
inet_aton
|
inet_aton
|
||||||
io_h
|
io_h
|
||||||
|
inline_asm_labels
|
||||||
isatty
|
isatty
|
||||||
jack_port_get_latency_range
|
jack_port_get_latency_range
|
||||||
ldbrx
|
ldbrx
|
||||||
@@ -3405,6 +3406,8 @@ unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
|
|||||||
EOF
|
EOF
|
||||||
od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
|
od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
|
||||||
|
|
||||||
|
check_inline_asm inline_asm_labels '"1:\n"'
|
||||||
|
|
||||||
if enabled alpha; then
|
if enabled alpha; then
|
||||||
|
|
||||||
check_cflags -mieee
|
check_cflags -mieee
|
||||||
|
@@ -23,6 +23,10 @@
|
|||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
|
#if HAVE_INLINE_ASM_LABELS
|
||||||
|
|
||||||
#define AV_READ_TIME read_time
|
#define AV_READ_TIME read_time
|
||||||
|
|
||||||
static inline uint64_t read_time(void)
|
static inline uint64_t read_time(void)
|
||||||
@@ -44,4 +48,6 @@ static inline uint64_t read_time(void)
|
|||||||
return (((uint64_t)tbu)<<32) | (uint64_t)tbl;
|
return (((uint64_t)tbu)<<32) | (uint64_t)tbl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* HAVE_INLINE_ASM_LABELS */
|
||||||
|
|
||||||
#endif /* AVUTIL_PPC_TIMER_H */
|
#endif /* AVUTIL_PPC_TIMER_H */
|
||||||
|
Reference in New Issue
Block a user