From 9b88abd9f63646d3ae32edf5a2dae2ad92fb86a4 Mon Sep 17 00:00:00 2001 From: "jh0522.choi" Date: Wed, 21 Aug 2013 10:59:05 +0900 Subject: [PATCH] Add to check condition for emulator in spec file --- packaging/osp-speech.spec | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packaging/osp-speech.spec b/packaging/osp-speech.spec index 30d36a4..e6625e9 100644 --- a/packaging/osp-speech.spec +++ b/packaging/osp-speech.spec @@ -50,8 +50,12 @@ osp speech library (DEV) %build MAJORVER=`echo %{version} | awk 'BEGIN {FS="."}{print $1}'` %ifarch %{ix86} +%if 0%{?simulator} CXXFLAGS="$CXXFLAGS -D_OSP_DEBUG_ -D_SECURE_LOG -D_OSP_X86_ -D_OSP_EMUL_" cmake . -DCMAKE_INSTALL_PREFIX=%{_prefix} -DFULLVER=%{version} -DMAJORVER=${MAJORVER} %else +CXXFLAGS="$CXXFLAGS -D_OSP_DEBUG_ -D_SECURE_LOG -D_OSP_X86_ " cmake . -DCMAKE_INSTALL_PREFIX=%{_prefix} -DFULLVER=%{version} -DMAJORVER=${MAJORVER} +%endif +%else CXXFLAGS="-O2 -g -pipe -Wall -fno-exceptions -Wformat -Wformat-security -Wl,--as-needed -fmessage-length=0 -march=armv7-a -mtune=cortex-a8 -mlittle-endian -mfpu=neon -mfloat-abi=softfp -D__SOFTFP__ -mthumb -Wa,-mimplicit-it=thumb -funwind-tables -D_OSP_DEBUG_ -D_SECURE_LOG -D_OSP_ARMEL_" cmake . -DCMAKE_INSTALL_PREFIX=%{_prefix} -DFULLVER=%{version} -DMAJORVER=${MAJORVER} %endif -- 2.7.4