From cab50d113c3e3dd2e1112e8d0a438cd5d2a0cea0 Mon Sep 17 00:00:00 2001 From: Dmitry Kovalenko Date: Fri, 23 Dec 2016 11:01:32 +0300 Subject: [PATCH] Fix build with GCC6 (new environment) Change-Id: I20407046812b3cb07307d6b634a2004a66496bce --- scripts/gen_linker_header.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/gen_linker_header.sh b/scripts/gen_linker_header.sh index a5be238..2bbd829 100644 --- a/scripts/gen_linker_header.sh +++ b/scripts/gen_linker_header.sh @@ -6,9 +6,9 @@ script_dir=$(readlink -f $0 | xargs dirname) source $script_dir/dyn_vars if [ "$__tizen_product_tv__" == "1" ]; then - target_debug_path="/lib/ld-2.20-2014.11.so" + target_debug_path="/lib/ld-2.24.so" else - target_debug_path="/usr/lib/debug/lib/ld-2.20-2014.11.so.debug" + target_debug_path="/usr/lib/debug/lib/ld-2.24.so.debug" fi fixup_function="_dl_fixup" reloc_function="_dl_relocate_object" -- 2.7.4