From: jinhyung.jo Date: Tue, 1 Oct 2013 09:16:45 +0000 (+0900) Subject: build : YAGL module is excluded from the build on MacOS in temparary. X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~720 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=446e85cb36fa45173a3d83433190b3054efbf63b;p=sdk%2Femulator%2Fqemu.git build : YAGL module is excluded from the build on MacOS in temparary. This modification is temporary. The reason is that compilation error occurs when using the clang compiler. It caused by __thread attribute in yagl_thread, clang does not support the attribute in MacOS. Change-Id: Id4fd6c8f0ad33e98d178a3cce5a954601e35142b Signed-off-by: Jinhyung Jo --- diff --git a/tizen/emulator_configure.sh b/tizen/emulator_configure.sh index 5c60f923d8..b57e2960da 100755 --- a/tizen/emulator_configure.sh +++ b/tizen/emulator_configure.sh @@ -51,7 +51,11 @@ yagl_enable() { YAGL_EN="no" ;; 1|yes|enable) - YAGL_EN="yes" + if [ "$targetos" != "Darwin" ] ; then + YAGL_EN="yes" + else + YAGL_EN="no" + fi ;; *) usage @@ -66,7 +70,11 @@ yagl_stats_enable() { YAGL_STATS_EN="no" ;; 1|yes|enable) - YAGL_STATS_EN="yes" + if [ "$targetos" != "Darwin" ] ; then + YAGL_STATS_EN="yes" + else + YAGL_STATS_EN="no" + fi ;; *) usage