From 446e85cb36fa45173a3d83433190b3054efbf63b Mon Sep 17 00:00:00 2001 From: "jinhyung.jo" Date: Tue, 1 Oct 2013 18:16:45 +0900 Subject: [PATCH] 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 --- tizen/emulator_configure.sh | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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 -- 2.34.1