Skip to content
Snippets Groups Projects
Select Git revision
  • eeef17c86c538254cd6f8cea54c05bd128e75e08
  • master default protected
  • release/201811
  • release/201812
  • release/201901
  • release/201902
  • release/201903
  • release/201904
  • release/201905
  • release/201906
  • release/201908
  • release/201912
  • release/202001
  • release/202005
  • release/windows-test/201910
  • release/201808
  • wip/smartlist_refacto
  • wip/patches_poly_2017/JimmyHamel/MathieuGirouxHuppe
18 results

RingConsolePanel.xaml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    libvpx-sysroot.patch 1.13 KiB
    Our contrib system already passes the correct sysroot to the compiler, so there
    is no need to set an alternate libc path. If that path is empty the script will
    try to look for it in some fashion, but since the SDKROOT may be in a
    non standard location the look up may fail.
    
    This patch avoids that case and relies on the user configuration for the
    correct sysroot.
    
    See also https://code.google.com/p/webm/issues/detail?id=809
    
    diff --git a/build/make/configure.sh b/build/make/configure.sh
    index d4124c7..c420d25 100755
    --- a/build/make/configure.sh
    +++ b/build/make/configure.sh
    @@ -939,8 +939,11 @@ EOF
                               awk '{ print $1 }' | tail -1`
                 fi
     
    -            add_cflags "--sysroot=${alt_libc}"
    -            add_ldflags "--sysroot=${alt_libc}"
    +            # this may happen if toolchain binaries are outside the ndk dir
    +            if [ "${alt_libc}" ]; then
    +                add_cflags "--sysroot=${alt_libc}"
    +                add_ldflags "--sysroot=${alt_libc}"
    +            fi
     
                 # linker flag that routes around a CPU bug in some
                 # Cortex-A8 implementations (NDK Dev Guide)
    -- 
    1.8.3.2