From: SeokYeon Hwang Date: Thu, 23 Oct 2014 09:05:18 +0000 (+0900) Subject: emulator: apply --export-all-symbols for Windows X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=870265036bdf49ae9e56badf91fc7e2b02b48621;p=sdk%2Femulator%2Fqemu.git emulator: apply --export-all-symbols for Windows Change-Id: Ia11a3532cb3f9944990b3750a5f9cf88d993fc28 Signed-off-by: SeokYeon Hwang --- 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 \