mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Use --sysroot flag for clang
Although not documented, clang does support the --sysroot flag, and it
does the right thing. Use this flag intead of -isysroot which only
applies to header file searches, not the linker.
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 00ba041cb3
)
This commit is contained in:
parent
65ad2c618f
commit
42ccd2fcf8
6
configure
vendored
6
configure
vendored
@ -2051,7 +2051,7 @@ add_asflags $extra_cflags
|
||||
|
||||
if test -n "$sysroot"; then
|
||||
case "$cc_type" in
|
||||
gcc|llvm_gcc)
|
||||
gcc|llvm_gcc|clang)
|
||||
add_cppflags --sysroot="$sysroot"
|
||||
add_ldflags --sysroot="$sysroot"
|
||||
;;
|
||||
@ -2059,10 +2059,6 @@ if test -n "$sysroot"; then
|
||||
add_cppflags -I"$sysinclude"
|
||||
add_ldflags --sysroot="$sysroot"
|
||||
;;
|
||||
clang)
|
||||
add_cppflags -isysroot "$sysroot"
|
||||
add_ldflags -isysroot "$sysroot"
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user