@@ -72,7 +72,7 @@ endif()
7272#MATH VECTOR LIBRARY
7373if ( APPLE OR WIN32 )
7474 message ( WARNING "Usage of vector math library for JIT compilation is not supported on windows and Apple" )
75- add_definitions (-DDEFAULT_VEC_MATH_LIB= " none" )
75+ add_definitions (-DDEFAULT_VEC_MATH_LIB=none )
7676else ()
7777
7878 #LIBMVEC
@@ -110,7 +110,7 @@ else()
110110 add_definitions (-DLIB_MVEC_DIR= "${LIB_MVEC_DIR} " )
111111 add_definitions (-DLIB_MVEC_NAME_WE= "${LIB_MVEC_NAME_WE} " )
112112 add_definitions (-DLIB_MVEC_NAME= "${LIB_MVEC_NAME} " )
113- set (DEFAULT_VEC_MATH_LIB " libmvec" )
113+ set (DEFAULT_VEC_MATH_LIB libmvec)
114114
115115 message ( STATUS "LIBMVEC found at ${LIBMVEC} " )
116116 elseif (NOT LIBMVEC)
@@ -134,7 +134,7 @@ else()
134134 add_definitions (-DLIB_SLEEF_DIR= "${LIB_SLEEF_DIR} " )
135135 add_definitions (-DLIB_SLEEF_NAME_WE= "${LIB_SLEEF_NAME_WE} " )
136136 add_definitions (-DLIB_SLEEF_NAME= "${LIB_SLEEF_NAME} " )
137- set (DEFAULT_VEC_MATH_LIB " sleef" )
137+ set (DEFAULT_VEC_MATH_LIB sleef)
138138
139139 message ( STATUS "SLEEF found at ${LIBSLEEF} " )
140140 else ()
@@ -157,7 +157,7 @@ else()
157157 add_definitions (-DLIB_AMATH_DIR= "${LIB_AMATH_DIR} " )
158158 add_definitions (-DLIB_AMATH_NAME_WE= "${LIB_AMATH_NAME_WE} " )
159159 add_definitions (-DLIB_AMATH_NAME= "${LIB_AMATH_NAME} " )
160- set (DEFAULT_VEC_MATH_LIB " armpl" )
160+ set (DEFAULT_VEC_MATH_LIB armpl)
161161
162162 message ( STATUS "AMATH found at ${LIBAMATH} " )
163163 else ()
@@ -190,7 +190,7 @@ else()
190190 add_definitions (-DLIB_INTLC_NAME_WE= "${LIB_INTLC_NAME_WE} " )
191191 add_definitions (-DLIB_INTLC_NAME= "${LIB_INTLC_NAME} " )
192192
193- set (DEFAULT_VEC_MATH_LIB " svml" )
193+ set (DEFAULT_VEC_MATH_LIB svml)
194194
195195 message ( STATUS "SVML found at ${LIBSVML} (INTLC found at ${LIBINTLC} )" )
196196 else ()
@@ -205,7 +205,7 @@ if(DEFAULT_VEC_MATH_LIB)
205205 add_definitions (-DDEFAULT_VEC_MATH_LIB=${DEFAULT_VEC_MATH_LIB} )
206206 message (STATUS "Will Use ${DEFAULT_VEC_MATH_LIB} as default vector math library" )
207207else ()
208- add_definitions (-DDEFAULT_VEC_MATH_LIB= " none" )
208+ add_definitions (-DDEFAULT_VEC_MATH_LIB=none )
209209 message (STATUS "Will not use any vector math library for JIT compilation" )
210210endif ()
211211
0 commit comments