From 870265036bdf49ae9e56badf91fc7e2b02b48621 Mon Sep 17 00:00:00 2001 From: SeokYeon Hwang Date: Thu, 23 Oct 2014 18:05:18 +0900 Subject: [PATCH] emulator: apply --export-all-symbols for Windows Change-Id: Ia11a3532cb3f9944990b3750a5f9cf88d993fc28 Signed-off-by: SeokYeon Hwang --- tizen/emulator_configure.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tizen/emulator_configure.sh b/tizen/emulator_configure.sh index c0efc6b08c..5ffa376f43 100755 --- a/tizen/emulator_configure.sh +++ b/tizen/emulator_configure.sh @@ -219,6 +219,7 @@ exec ./configure \ --extra-cflags=-Wno-error=format-extra-args \ --extra-cflags=-Wno-error=redundant-decls \ --extra-ldflags=-Wl,--large-address-aware \ + --extra-ldflags=-Wl,--export-all-symbols \ --cc=gcc \ --disable-coroutine-pool \ --audio-drv-list=winwave \ @@ -227,6 +228,7 @@ exec ./configure \ $CONFIGURE_APPEND \ ;; Darwin*) +# FIXME: "-export_dynamic" causes error on old version clang cd .. echo "" echo "##### QEMU configuring for emulator" @@ -234,7 +236,7 @@ echo "##### QEMU configure append:" $CONFIGURE_APPEND ./configure \ --enable-werror \ --extra-cflags=-mmacosx-version-min=10.4 \ - --extra-ldflags=-Wl,-export_dynamic \ + --extra-ldflags=-Xlinker -export_dynamic \ --audio-drv-list=coreaudio \ --enable-shm \ --enable-hax \ -- 2.34.1