[libc-commits] [libc] 7af4ab4 - [libc] Don't manually override the optimization level for math (#126322)
via libc-commits
libc-commits at lists.llvm.org
Mon Feb 10 23:56:51 PST 2025
Author: Petr Hosek
Date: 2025-02-10T23:56:47-08:00
New Revision: 7af4ab4f072ee6de9d347f9955683d4a49645f1c
URL: https://github.com/llvm/llvm-project/commit/7af4ab4f072ee6de9d347f9955683d4a49645f1c
DIFF: https://github.com/llvm/llvm-project/commit/7af4ab4f072ee6de9d347f9955683d4a49645f1c.diff
LOG: [libc] Don't manually override the optimization level for math (#126322)
This was originally done for testing purposes, but after #126315 we now
do testing through GitHub Actions and should be instead using the
optimization setting chosen by the user.
Added:
Modified:
libc/src/complex/generic/CMakeLists.txt
libc/src/math/generic/CMakeLists.txt
libc/src/stdfix/CMakeLists.txt
Removed:
################################################################################
diff --git a/libc/src/complex/generic/CMakeLists.txt b/libc/src/complex/generic/CMakeLists.txt
index 82d2b01d534a9b8..f1c21e4ed72711b 100644
--- a/libc/src/complex/generic/CMakeLists.txt
+++ b/libc/src/complex/generic/CMakeLists.txt
@@ -4,8 +4,6 @@ add_entrypoint_object(
cproj.cpp
HDRS
../cproj.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.complex_basic_ops
)
@@ -16,8 +14,6 @@ add_entrypoint_object(
cprojf.cpp
HDRS
../cprojf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.complex_basic_ops
)
@@ -28,8 +24,6 @@ add_entrypoint_object(
cprojl.cpp
HDRS
../cprojl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.complex_basic_ops
)
@@ -40,8 +34,6 @@ add_entrypoint_object(
cprojf16.cpp
HDRS
../cprojf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.complex_basic_ops
libc.src.__support.macros.properties.types
@@ -54,8 +46,6 @@ add_entrypoint_object(
cprojf128.cpp
HDRS
../cprojf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.complex_basic_ops
libc.src.__support.macros.properties.types
@@ -68,8 +58,6 @@ add_entrypoint_object(
conj.cpp
HDRS
../conj.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.complex_basic_ops
)
@@ -80,8 +68,6 @@ add_entrypoint_object(
conjf.cpp
HDRS
../conjf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.complex_basic_ops
)
@@ -92,8 +78,6 @@ add_entrypoint_object(
conjl.cpp
HDRS
../conjl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.complex_basic_ops
)
@@ -104,8 +88,6 @@ add_entrypoint_object(
conjf16.cpp
HDRS
../conjf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.complex_basic_ops
libc.src.__support.macros.properties.types
@@ -118,8 +100,6 @@ add_entrypoint_object(
conjf128.cpp
HDRS
../conjf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.complex_basic_ops
libc.src.__support.macros.properties.types
@@ -132,8 +112,6 @@ add_entrypoint_object(
creal.cpp
HDRS
../creal.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.CPP.bit
libc.src.__support.complex_type
@@ -145,8 +123,6 @@ add_entrypoint_object(
crealf.cpp
HDRS
../crealf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.CPP.bit
libc.src.__support.complex_type
@@ -158,8 +134,6 @@ add_entrypoint_object(
creall.cpp
HDRS
../creall.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.CPP.bit
libc.src.__support.complex_type
@@ -171,8 +145,6 @@ add_entrypoint_object(
crealf16.cpp
HDRS
../crealf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.CPP.bit
libc.src.__support.complex_type
@@ -186,8 +158,6 @@ add_entrypoint_object(
crealf128.cpp
HDRS
../crealf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.CPP.bit
libc.src.__support.complex_type
@@ -201,8 +171,6 @@ add_entrypoint_object(
cimag.cpp
HDRS
../cimag.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.CPP.bit
libc.src.__support.complex_type
@@ -214,8 +182,6 @@ add_entrypoint_object(
cimagf.cpp
HDRS
../cimagf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.CPP.bit
libc.src.__support.complex_type
@@ -227,8 +193,6 @@ add_entrypoint_object(
cimagl.cpp
HDRS
../cimagl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.CPP.bit
libc.src.__support.complex_type
@@ -240,8 +204,6 @@ add_entrypoint_object(
cimagf16.cpp
HDRS
../cimagf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.CPP.bit
libc.src.__support.complex_type
@@ -255,8 +217,6 @@ add_entrypoint_object(
cimagf128.cpp
HDRS
../cimagf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.CPP.bit
libc.src.__support.complex_type
diff --git a/libc/src/math/generic/CMakeLists.txt b/libc/src/math/generic/CMakeLists.txt
index cd34d1cd0b9146d..9faf46d491426b1 100644
--- a/libc/src/math/generic/CMakeLists.txt
+++ b/libc/src/math/generic/CMakeLists.txt
@@ -6,8 +6,6 @@ add_entrypoint_object(
canonicalize.cpp
HDRS
../canonicalize.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.basic_operations
)
@@ -18,8 +16,6 @@ add_entrypoint_object(
canonicalizef.cpp
HDRS
../canonicalizef.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.basic_operations
)
@@ -30,8 +26,6 @@ add_entrypoint_object(
canonicalizef16.cpp
HDRS
../canonicalizef16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
@@ -43,8 +37,6 @@ add_entrypoint_object(
canonicalizef128.cpp
HDRS
../canonicalizef128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
@@ -56,8 +48,6 @@ add_entrypoint_object(
canonicalizel.cpp
HDRS
../canonicalizel.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.basic_operations
)
@@ -68,8 +58,6 @@ add_entrypoint_object(
iscanonical.cpp
HDRS
../iscanonical.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -78,8 +66,6 @@ add_entrypoint_object(
iscanonicalf.cpp
HDRS
../iscanonicalf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -88,8 +74,6 @@ add_entrypoint_object(
iscanonicall.cpp
HDRS
../iscanonicall.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -98,8 +82,6 @@ add_entrypoint_object(
iscanonicalf16.cpp
HDRS
../iscanonicalf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
)
@@ -110,8 +92,6 @@ add_entrypoint_object(
iscanonicalf128.cpp
HDRS
../iscanonicalf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
)
@@ -122,8 +102,6 @@ add_entrypoint_object(
ceil.cpp
HDRS
../ceil.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
FLAGS
@@ -136,8 +114,6 @@ add_entrypoint_object(
ceilf.cpp
HDRS
../ceilf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
FLAGS
@@ -150,8 +126,6 @@ add_entrypoint_object(
ceill.cpp
HDRS
../ceill.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -162,8 +136,6 @@ add_entrypoint_object(
ceilf16.cpp
HDRS
../ceilf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.cast
libc.src.__support.FPUtil.nearest_integer_operations
@@ -179,8 +151,6 @@ add_entrypoint_object(
ceilf128.cpp
HDRS
../ceilf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
@@ -192,8 +162,6 @@ add_entrypoint_object(
daddl.cpp
HDRS
../daddl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.generic.add_sub
)
@@ -204,8 +172,6 @@ add_entrypoint_object(
daddf128.cpp
HDRS
../daddf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.add_sub
@@ -217,8 +183,6 @@ add_entrypoint_object(
ddivl.cpp
HDRS
../ddivl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.generic.div
)
@@ -229,8 +193,6 @@ add_entrypoint_object(
ddivf128.cpp
HDRS
../ddivf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.div
@@ -245,8 +207,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.FPUtil.fma
libc.src.__support.macros.properties.types
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -257,8 +217,6 @@ add_entrypoint_object(
../dfmal.h
DEPENDS
libc.src.__support.FPUtil.fma
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -269,8 +227,6 @@ add_entrypoint_object(
../dsqrtl.h
DEPENDS
libc.src.__support.FPUtil.generic.sqrt
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -282,8 +238,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.sqrt
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
@@ -296,8 +250,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.FPUtil.generic.add_sub
libc.src.__support.macros.properties.types
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -308,8 +260,6 @@ add_entrypoint_object(
../dsubl.h
DEPENDS
libc.src.__support.FPUtil.generic.add_sub
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_header_library(
@@ -392,8 +342,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.fenv_impl
libc.src.__support.FPUtil.fp_bits
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -413,8 +361,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.multiply_add
libc.src.__support.FPUtil.polyeval
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -449,8 +395,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.fma
libc.src.__support.FPUtil.multiply_add
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -468,8 +412,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.fp_bits
libc.src.__support.FPUtil.multiply_add
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -490,8 +432,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.multiply_add
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -512,8 +452,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -555,8 +493,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.fp_bits
libc.src.__support.FPUtil.multiply_add
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -574,8 +510,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.common
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -595,8 +529,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -614,8 +546,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.fp_bits
libc.src.__support.FPUtil.multiply_add
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -635,8 +565,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.fp_bits
libc.src.__support.FPUtil.multiply_add
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -657,8 +585,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.multiply_add
libc.src.__support.FPUtil.polyeval
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -696,8 +622,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.except_value_utils
libc.src.__support.FPUtil.multiply_add
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -708,8 +632,6 @@ add_entrypoint_object(
../fabs.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -722,8 +644,6 @@ add_entrypoint_object(
../fabsf.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -736,8 +656,6 @@ add_entrypoint_object(
../fabsl.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -751,8 +669,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.basic_operations
libc.src.__support.macros.properties.architectures
libc.src.__support.macros.properties.compiler
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -766,8 +682,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -778,8 +692,6 @@ add_entrypoint_object(
../fadd.h
DEPENDS
libc.src.__support.FPUtil.generic.add_sub
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -790,8 +702,6 @@ add_entrypoint_object(
../faddl.h
DEPENDS
libc.src.__support.FPUtil.generic.add_sub
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -803,8 +713,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.FPUtil.generic.add_sub
libc.src.__support.macros.properties.types
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -813,8 +721,6 @@ add_entrypoint_object(
trunc.cpp
HDRS
../trunc.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
FLAGS
@@ -827,8 +733,6 @@ add_entrypoint_object(
truncf.cpp
HDRS
../truncf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
FLAGS
@@ -841,8 +745,6 @@ add_entrypoint_object(
truncl.cpp
HDRS
../truncl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -853,8 +755,6 @@ add_entrypoint_object(
truncf16.cpp
HDRS
../truncf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.cast
libc.src.__support.FPUtil.nearest_integer_operations
@@ -870,8 +770,6 @@ add_entrypoint_object(
truncf128.cpp
HDRS
../truncf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
@@ -883,8 +781,6 @@ add_entrypoint_object(
floor.cpp
HDRS
../floor.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
FLAGS
@@ -897,8 +793,6 @@ add_entrypoint_object(
floorf.cpp
HDRS
../floorf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
FLAGS
@@ -911,8 +805,6 @@ add_entrypoint_object(
floorl.cpp
HDRS
../floorl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -923,8 +815,6 @@ add_entrypoint_object(
floorf16.cpp
HDRS
../floorf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.cast
libc.src.__support.FPUtil.nearest_integer_operations
@@ -940,8 +830,6 @@ add_entrypoint_object(
floorf128.cpp
HDRS
../floorf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
@@ -953,8 +841,6 @@ add_entrypoint_object(
round.cpp
HDRS
../round.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
FLAGS
@@ -967,8 +853,6 @@ add_entrypoint_object(
roundf.cpp
HDRS
../roundf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
FLAGS
@@ -981,8 +865,6 @@ add_entrypoint_object(
roundl.cpp
HDRS
../roundl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -993,8 +875,6 @@ add_entrypoint_object(
roundf16.cpp
HDRS
../roundf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.cast
libc.src.__support.FPUtil.nearest_integer_operations
@@ -1010,8 +890,6 @@ add_entrypoint_object(
roundf128.cpp
HDRS
../roundf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
@@ -1023,8 +901,6 @@ add_entrypoint_object(
roundeven.cpp
HDRS
../roundeven.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
FLAGS
@@ -1037,8 +913,6 @@ add_entrypoint_object(
roundevenf.cpp
HDRS
../roundevenf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
FLAGS
@@ -1051,8 +925,6 @@ add_entrypoint_object(
roundevenl.cpp
HDRS
../roundevenl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -1063,8 +935,6 @@ add_entrypoint_object(
roundevenf16.cpp
HDRS
../roundevenf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
@@ -1080,8 +950,6 @@ add_entrypoint_object(
roundevenf128.cpp
HDRS
../roundevenf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
@@ -1093,8 +961,6 @@ add_entrypoint_object(
lround.cpp
HDRS
../lround.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -1105,8 +971,6 @@ add_entrypoint_object(
lroundf.cpp
HDRS
../lroundf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -1117,8 +981,6 @@ add_entrypoint_object(
lroundl.cpp
HDRS
../lroundl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -1129,8 +991,6 @@ add_entrypoint_object(
lroundf16.cpp
HDRS
../lroundf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
@@ -1142,8 +1002,6 @@ add_entrypoint_object(
lroundf128.cpp
HDRS
../lroundf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
@@ -1155,8 +1013,6 @@ add_entrypoint_object(
llround.cpp
HDRS
../llround.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -1167,8 +1023,6 @@ add_entrypoint_object(
llroundf.cpp
HDRS
../llroundf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -1179,8 +1033,6 @@ add_entrypoint_object(
llroundl.cpp
HDRS
../llroundl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -1191,8 +1043,6 @@ add_entrypoint_object(
llroundf16.cpp
HDRS
../llroundf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
@@ -1204,8 +1054,6 @@ add_entrypoint_object(
llroundf128.cpp
HDRS
../llroundf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
@@ -1217,8 +1065,6 @@ add_entrypoint_object(
rint.cpp
HDRS
../rint.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
FLAGS
@@ -1231,8 +1077,6 @@ add_entrypoint_object(
rintf.cpp
HDRS
../rintf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
FLAGS
@@ -1245,8 +1089,6 @@ add_entrypoint_object(
rintl.cpp
HDRS
../rintl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -1257,8 +1099,6 @@ add_entrypoint_object(
rintf16.cpp
HDRS
../rintf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.cast
libc.src.__support.FPUtil.nearest_integer_operations
@@ -1274,8 +1114,6 @@ add_entrypoint_object(
rintf128.cpp
HDRS
../rintf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
@@ -1287,8 +1125,6 @@ add_entrypoint_object(
lrint.cpp
HDRS
../lrint.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -1299,8 +1135,6 @@ add_entrypoint_object(
lrintf.cpp
HDRS
../lrintf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -1311,8 +1145,6 @@ add_entrypoint_object(
lrintl.cpp
HDRS
../lrintl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -1323,8 +1155,6 @@ add_entrypoint_object(
lrintf16.cpp
HDRS
../lrintf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
@@ -1336,8 +1166,6 @@ add_entrypoint_object(
lrintf128.cpp
HDRS
../lrintf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
@@ -1349,8 +1177,6 @@ add_entrypoint_object(
llrint.cpp
HDRS
../llrint.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -1361,8 +1187,6 @@ add_entrypoint_object(
llrintf.cpp
HDRS
../llrintf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -1373,8 +1197,6 @@ add_entrypoint_object(
llrintl.cpp
HDRS
../llrintl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
)
@@ -1385,8 +1207,6 @@ add_entrypoint_object(
llrintf16.cpp
HDRS
../llrintf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
@@ -1398,8 +1218,6 @@ add_entrypoint_object(
llrintf128.cpp
HDRS
../llrintf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
@@ -1413,8 +1231,6 @@ add_entrypoint_object(
../nearbyint.h
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1425,8 +1241,6 @@ add_entrypoint_object(
../nearbyintf.h
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1437,8 +1251,6 @@ add_entrypoint_object(
../nearbyintl.h
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1450,8 +1262,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1463,8 +1273,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_object_library(
@@ -1488,8 +1296,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.multiply_add
libc.src.__support.FPUtil.polyeval
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1514,8 +1320,6 @@ add_entrypoint_object(
libc.src.__support.integer_literals
libc.src.__support.macros.optimization
libc.src.errno.errno
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1535,8 +1339,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
libc.src.errno.errno
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1559,8 +1361,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1585,8 +1385,6 @@ add_entrypoint_object(
libc.src.__support.integer_literals
libc.src.__support.macros.optimization
libc.src.errno.errno
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_header_library(
@@ -1615,8 +1413,6 @@ add_entrypoint_object(
../exp2f.h
DEPENDS
.exp2f_impl
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1635,8 +1431,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.fp_bits
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1657,8 +1451,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
libc.src.__support.macros.properties.cpu_features
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1681,8 +1473,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
libc.src.__support.macros.properties.cpu_features
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1707,8 +1497,6 @@ add_entrypoint_object(
libc.src.__support.integer_literals
libc.src.__support.macros.optimization
libc.src.errno.errno
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_header_library(
@@ -1724,8 +1512,6 @@ add_header_library(
libc.src.__support.macros.optimization
libc.src.__support.common
libc.src.errno.errno
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1736,8 +1522,6 @@ add_entrypoint_object(
../exp10f.h
DEPENDS
.exp10f_impl
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1761,8 +1545,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
libc.src.__support.macros.properties.cpu_features
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1782,8 +1564,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1805,8 +1585,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
libc.src.__support.macros.properties.cpu_features
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1831,8 +1609,6 @@ add_entrypoint_object(
libc.src.__support.integer_literals
libc.src.__support.macros.optimization
libc.src.errno.errno
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1852,8 +1628,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
libc.src.errno.errno
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1874,8 +1648,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1901,8 +1673,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.triple_double
libc.src.__support.macros.optimization
libc.src.errno.errno
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1924,8 +1694,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.FPUtil.sqrt
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1936,8 +1704,6 @@ add_entrypoint_object(
../copysign.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -1950,8 +1716,6 @@ add_entrypoint_object(
../copysignf.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -1964,8 +1728,6 @@ add_entrypoint_object(
../copysignl.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -1977,8 +1739,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -1992,8 +1752,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2002,8 +1760,6 @@ add_entrypoint_object(
frexp.cpp
HDRS
../frexp.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
)
@@ -2014,8 +1770,6 @@ add_entrypoint_object(
frexpf.cpp
HDRS
../frexpf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
)
@@ -2026,8 +1780,6 @@ add_entrypoint_object(
frexpl.cpp
HDRS
../frexpl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
)
@@ -2038,8 +1790,6 @@ add_entrypoint_object(
frexpf16.cpp
HDRS
../frexpf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
@@ -2051,8 +1801,6 @@ add_entrypoint_object(
frexpf128.cpp
HDRS
../frexpf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
@@ -2064,8 +1812,6 @@ add_entrypoint_object(
ilogb.cpp
HDRS
../ilogb.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
)
@@ -2076,8 +1822,6 @@ add_entrypoint_object(
ilogbf.cpp
HDRS
../ilogbf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
)
@@ -2088,8 +1832,6 @@ add_entrypoint_object(
ilogbl.cpp
HDRS
../ilogbl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
)
@@ -2100,8 +1842,6 @@ add_entrypoint_object(
ilogbf16.cpp
HDRS
../ilogbf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
@@ -2113,8 +1853,6 @@ add_entrypoint_object(
ilogbf128.cpp
HDRS
../ilogbf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
@@ -2126,8 +1864,6 @@ add_entrypoint_object(
llogb.cpp
HDRS
../llogb.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
)
@@ -2138,8 +1874,6 @@ add_entrypoint_object(
llogbf.cpp
HDRS
../llogbf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
)
@@ -2150,8 +1884,6 @@ add_entrypoint_object(
llogbl.cpp
HDRS
../llogbl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
)
@@ -2162,8 +1894,6 @@ add_entrypoint_object(
llogbf16.cpp
HDRS
../llogbf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
@@ -2175,8 +1905,6 @@ add_entrypoint_object(
llogbf128.cpp
HDRS
../llogbf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
@@ -2188,8 +1916,6 @@ add_entrypoint_object(
ldexp.cpp
HDRS
../ldexp.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
)
@@ -2200,8 +1926,6 @@ add_entrypoint_object(
ldexpf.cpp
HDRS
../ldexpf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
)
@@ -2212,8 +1936,6 @@ add_entrypoint_object(
ldexpl.cpp
HDRS
../ldexpl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
)
@@ -2224,8 +1946,6 @@ add_entrypoint_object(
ldexpf16.cpp
HDRS
../ldexpf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
@@ -2237,8 +1957,6 @@ add_entrypoint_object(
ldexpf128.cpp
HDRS
../ldexpf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
@@ -2282,8 +2000,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.integer_literals
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2299,8 +2015,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.fp_bits
libc.src.__support.FPUtil.fma
libc.src.__support.FPUtil.polyeval
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2321,8 +2035,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.macros.optimization
libc.src.__support.macros.properties.cpu_features
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2341,8 +2053,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.integer_literals
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2359,8 +2069,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.fma
libc.src.__support.FPUtil.polyeval
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2380,8 +2088,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.integer_literals
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2398,8 +2104,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.fma
libc.src.__support.FPUtil.polyeval
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2420,8 +2124,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.macros.optimization
libc.src.__support.macros.properties.cpu_features
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2441,8 +2143,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.integer_literals
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2459,8 +2159,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.multiply_add
libc.src.__support.FPUtil.polyeval
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2481,8 +2179,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.macros.optimization
libc.src.__support.macros.properties.cpu_features
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2491,8 +2187,6 @@ add_entrypoint_object(
logb.cpp
HDRS
../logb.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
)
@@ -2503,8 +2197,6 @@ add_entrypoint_object(
logbf.cpp
HDRS
../logbf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
)
@@ -2515,8 +2207,6 @@ add_entrypoint_object(
logbl.cpp
HDRS
../logbl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
)
@@ -2527,8 +2217,6 @@ add_entrypoint_object(
logbf16.cpp
HDRS
../logbf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
@@ -2540,8 +2228,6 @@ add_entrypoint_object(
logbf128.cpp
HDRS
../logbf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
@@ -2555,8 +2241,6 @@ add_entrypoint_object(
../modf.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2567,8 +2251,6 @@ add_entrypoint_object(
../modff.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2579,8 +2261,6 @@ add_entrypoint_object(
../modfl.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2592,8 +2272,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2605,8 +2283,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2617,8 +2293,6 @@ add_entrypoint_object(
../fmin.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -2631,8 +2305,6 @@ add_entrypoint_object(
../fminf.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -2645,8 +2317,6 @@ add_entrypoint_object(
../fminl.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2658,8 +2328,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2671,8 +2339,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -2686,8 +2352,6 @@ add_entrypoint_object(
../fmax.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -2700,8 +2364,6 @@ add_entrypoint_object(
../fmaxf.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -2714,8 +2376,6 @@ add_entrypoint_object(
../fmaxl.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2727,8 +2387,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2740,8 +2398,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -2754,8 +2410,6 @@ add_entrypoint_object(
../fmaximum.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -2768,8 +2422,6 @@ add_entrypoint_object(
../fmaximumf.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -2782,8 +2434,6 @@ add_entrypoint_object(
../fmaximuml.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2795,8 +2445,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -2810,8 +2458,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2822,8 +2468,6 @@ add_entrypoint_object(
../fmaximum_num.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -2836,8 +2480,6 @@ add_entrypoint_object(
../fmaximum_numf.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -2850,8 +2492,6 @@ add_entrypoint_object(
../fmaximum_numl.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2863,8 +2503,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -2878,8 +2516,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2927,8 +2563,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2940,8 +2574,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -2989,8 +2621,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3002,8 +2632,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3014,8 +2642,6 @@ add_entrypoint_object(
../fminimum.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -3028,8 +2654,6 @@ add_entrypoint_object(
../fminimumf.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -3042,8 +2666,6 @@ add_entrypoint_object(
../fminimuml.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3055,8 +2677,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -3070,8 +2690,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3082,8 +2700,6 @@ add_entrypoint_object(
../fminimum_num.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -3096,8 +2712,6 @@ add_entrypoint_object(
../fminimum_numf.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -3110,8 +2724,6 @@ add_entrypoint_object(
../fminimum_numl.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3123,8 +2735,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
FLAGS
MISC_MATH_BASIC_OPS_OPT
)
@@ -3138,8 +2748,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3187,8 +2795,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3200,8 +2806,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3249,8 +2853,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3262,8 +2864,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3276,8 +2876,6 @@ add_entrypoint_object(
libc.hdr.errno_macros
libc.hdr.fenv_macros
libc.src.__support.FPUtil.double_double
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3288,8 +2886,6 @@ add_entrypoint_object(
../fmull.h
DEPENDS
libc.src.__support.FPUtil.generic.mul
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3301,8 +2897,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.mul
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3313,8 +2907,6 @@ add_entrypoint_object(
../fsub.h
DEPENDS
libc.src.__support.FPUtil.generic.add_sub
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3325,8 +2917,6 @@ add_entrypoint_object(
../fsubl.h
DEPENDS
libc.src.__support.FPUtil.generic.add_sub
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3338,8 +2928,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.add_sub
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3350,8 +2938,6 @@ add_entrypoint_object(
../sqrt.h
DEPENDS
libc.src.__support.FPUtil.sqrt
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
@@ -3363,8 +2949,6 @@ add_entrypoint_object(
../sqrtf.h
DEPENDS
libc.src.__support.FPUtil.sqrt
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3375,8 +2959,6 @@ add_entrypoint_object(
../sqrtl.h
DEPENDS
libc.src.__support.FPUtil.sqrt
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3387,8 +2969,6 @@ add_entrypoint_object(
../sqrtf16.h
DEPENDS
libc.src.__support.FPUtil.sqrt
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3400,8 +2980,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.sqrt
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3412,8 +2990,6 @@ add_entrypoint_object(
../remquof.h
DEPENDS
libc.src.__support.FPUtil.division_and_remainder_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3424,8 +3000,6 @@ add_entrypoint_object(
../remquof128.h
DEPENDS
libc.src.__support.FPUtil.division_and_remainder_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3436,8 +3010,6 @@ add_entrypoint_object(
../remquo.h
DEPENDS
libc.src.__support.FPUtil.division_and_remainder_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3448,8 +3020,6 @@ add_entrypoint_object(
../remquol.h
DEPENDS
libc.src.__support.FPUtil.division_and_remainder_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3461,8 +3031,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.division_and_remainder_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3473,8 +3041,6 @@ add_entrypoint_object(
../remainderf.h
DEPENDS
libc.src.__support.FPUtil.division_and_remainder_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3485,8 +3051,6 @@ add_entrypoint_object(
../remainder.h
DEPENDS
libc.src.__support.FPUtil.division_and_remainder_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3497,8 +3061,6 @@ add_entrypoint_object(
../remainderl.h
DEPENDS
libc.src.__support.FPUtil.division_and_remainder_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3510,8 +3072,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.division_and_remainder_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3523,8 +3083,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.division_and_remainder_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3540,8 +3098,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.multiply_add
libc.src.__support.FPUtil.sqrt
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3550,8 +3106,6 @@ add_entrypoint_object(
fdim.cpp
HDRS
../fdim.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.basic_operations
)
@@ -3562,8 +3116,6 @@ add_entrypoint_object(
fdimf.cpp
HDRS
../fdimf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.basic_operations
)
@@ -3574,8 +3126,6 @@ add_entrypoint_object(
fdiml.cpp
HDRS
../fdiml.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.basic_operations
)
@@ -3586,8 +3136,6 @@ add_entrypoint_object(
fdimf16.cpp
HDRS
../fdimf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
@@ -3599,8 +3147,6 @@ add_entrypoint_object(
fdimf128.cpp
HDRS
../fdimf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
@@ -3612,8 +3158,6 @@ add_entrypoint_object(
fdiv.cpp
HDRS
../fdiv.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.generic.div
)
@@ -3624,8 +3168,6 @@ add_entrypoint_object(
fdivl.cpp
HDRS
../fdivl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.generic.div
)
@@ -3636,8 +3178,6 @@ add_entrypoint_object(
fdivf128.cpp
HDRS
../fdivf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.div
@@ -3649,8 +3189,6 @@ add_entrypoint_object(
ffma.cpp
HDRS
../ffma.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.fma
)
@@ -3661,8 +3199,6 @@ add_entrypoint_object(
ffmal.cpp
HDRS
../ffmal.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.FPUtil.fma
)
@@ -3673,8 +3209,6 @@ add_entrypoint_object(
ffmaf128.cpp
HDRS
../ffmaf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.fma
@@ -3688,8 +3222,6 @@ add_entrypoint_object(
../hypot.h
DEPENDS
libc.src.__support.FPUtil.hypot
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3698,8 +3230,6 @@ add_entrypoint_object(
issignaling.cpp
HDRS
../issignaling.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3708,8 +3238,6 @@ add_entrypoint_object(
issignalingf.cpp
HDRS
../issignalingf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3718,8 +3246,6 @@ add_entrypoint_object(
issignalingl.cpp
HDRS
../issignalingl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3728,8 +3254,6 @@ add_entrypoint_object(
issignalingf16.cpp
HDRS
../issignalingf16.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
)
@@ -3740,8 +3264,6 @@ add_entrypoint_object(
issignalingf128.cpp
HDRS
../issignalingf128.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.macros.properties.types
)
@@ -3752,8 +3274,6 @@ add_entrypoint_object(
isnan.cpp
HDRS
../isnan.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3762,8 +3282,6 @@ add_entrypoint_object(
isnanf.cpp
HDRS
../isnanf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3772,8 +3290,6 @@ add_entrypoint_object(
isnanl.cpp
HDRS
../isnanl.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3785,8 +3301,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.str_to_float
libc.src.errno.errno
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3798,8 +3312,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.str_to_float
libc.src.errno.errno
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3811,8 +3323,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.str_to_float
libc.src.errno.errno
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3824,8 +3334,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.str_to_float
libc.src.errno.errno
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3837,8 +3345,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.str_to_float
libc.src.errno.errno
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3849,8 +3355,6 @@ add_entrypoint_object(
../nextafter.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3861,8 +3365,6 @@ add_entrypoint_object(
../nextafterf.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3873,8 +3375,6 @@ add_entrypoint_object(
../nextafterl.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3886,8 +3386,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3899,8 +3397,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3911,8 +3407,6 @@ add_entrypoint_object(
../nexttoward.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3923,8 +3417,6 @@ add_entrypoint_object(
../nexttowardf.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3935,8 +3427,6 @@ add_entrypoint_object(
../nexttowardl.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3948,8 +3438,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3960,8 +3448,6 @@ add_entrypoint_object(
../nextdown.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3972,8 +3458,6 @@ add_entrypoint_object(
../nextdownl.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3984,8 +3468,6 @@ add_entrypoint_object(
../nextdownf.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -3997,8 +3479,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4010,8 +3490,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4022,8 +3500,6 @@ add_entrypoint_object(
../nextup.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4034,8 +3510,6 @@ add_entrypoint_object(
../nextupl.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4046,8 +3520,6 @@ add_entrypoint_object(
../nextupf.h
DEPENDS
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4059,8 +3531,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4072,8 +3542,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4084,8 +3552,6 @@ add_entrypoint_object(
../fmod.h
DEPENDS
libc.src.__support.FPUtil.generic.fmod
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4096,8 +3562,6 @@ add_entrypoint_object(
../fmodf.h
DEPENDS
libc.src.__support.FPUtil.generic.fmod
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4108,8 +3572,6 @@ add_entrypoint_object(
../fmodl.h
DEPENDS
libc.src.__support.FPUtil.generic.fmod
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4121,8 +3583,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.fmod
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4134,8 +3594,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.fmod
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4146,8 +3604,6 @@ add_entrypoint_object(
../fromfp.h
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4158,8 +3614,6 @@ add_entrypoint_object(
../fromfpf.h
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4170,8 +3624,6 @@ add_entrypoint_object(
../fromfpl.h
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4183,8 +3635,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4196,8 +3646,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4208,8 +3656,6 @@ add_entrypoint_object(
../fromfpx.h
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4220,8 +3666,6 @@ add_entrypoint_object(
../fromfpxf.h
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4232,8 +3676,6 @@ add_entrypoint_object(
../fromfpxl.h
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4245,8 +3687,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4258,8 +3698,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4270,8 +3708,6 @@ add_entrypoint_object(
../ufromfp.h
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4282,8 +3718,6 @@ add_entrypoint_object(
../ufromfpf.h
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4294,8 +3728,6 @@ add_entrypoint_object(
../ufromfpl.h
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4307,8 +3739,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4320,8 +3750,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4332,8 +3760,6 @@ add_entrypoint_object(
../ufromfpx.h
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4344,8 +3770,6 @@ add_entrypoint_object(
../ufromfpxf.h
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4356,8 +3780,6 @@ add_entrypoint_object(
../ufromfpxl.h
DEPENDS
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4369,8 +3791,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4382,8 +3802,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.nearest_integer_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
#TODO: Add errno include to the hyperbolic functions.
@@ -4406,8 +3824,6 @@ add_object_library(
libc.src.__support.FPUtil.polyeval
libc.src.__support.common
libc.src.errno.errno
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4422,8 +3838,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.multiply_add
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4441,8 +3855,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.fp_bits
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4456,8 +3868,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.fp_bits
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4475,8 +3885,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.fp_bits
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4492,8 +3900,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.multiply_add
libc.src.__support.FPUtil.polyeval
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4515,8 +3921,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4533,8 +3937,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.FPUtil.sqrt
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4550,8 +3952,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.FPUtil.sqrt
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4564,8 +3964,6 @@ add_entrypoint_object(
.explogxf
libc.src.__support.FPUtil.fp_bits
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_object_library(
@@ -4594,8 +3992,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.sqrt
libc.src.__support.macros.optimization
.inv_trigf_utils
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4631,8 +4027,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.sqrt
libc.src.__support.macros.optimization
.inv_trigf_utils
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4650,8 +4044,6 @@ add_entrypoint_object(
libc.src.__support.FPUtil.polyeval
libc.src.__support.FPUtil.rounding_mode
libc.src.__support.macros.optimization
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4660,8 +4052,6 @@ add_entrypoint_object(
atan2f.cpp
HDRS
../atan2f.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
.inv_trigf_utils
libc.src.__support.FPUtil.fp_bits
@@ -4678,8 +4068,6 @@ add_entrypoint_object(
atan2.cpp
HDRS
../atan2.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
.inv_trigf_utils
libc.src.__support.FPUtil.double_double
@@ -4698,8 +4086,6 @@ add_entrypoint_object(
atan2l.cpp
HDRS
../atan2l.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
.atan2
)
@@ -4713,8 +4099,6 @@ add_entrypoint_object(
DEPENDS
libc.hdr.float_macros
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4726,8 +4110,6 @@ add_entrypoint_object(
DEPENDS
libc.hdr.float_macros
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4739,8 +4121,6 @@ add_entrypoint_object(
DEPENDS
libc.hdr.float_macros
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4753,8 +4133,6 @@ add_entrypoint_object(
libc.hdr.float_macros
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4767,8 +4145,6 @@ add_entrypoint_object(
libc.hdr.float_macros
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4780,8 +4156,6 @@ add_entrypoint_object(
DEPENDS
libc.hdr.float_macros
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4793,8 +4167,6 @@ add_entrypoint_object(
DEPENDS
libc.hdr.float_macros
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4806,8 +4178,6 @@ add_entrypoint_object(
DEPENDS
libc.hdr.float_macros
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4820,8 +4190,6 @@ add_entrypoint_object(
libc.hdr.float_macros
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4834,8 +4202,6 @@ add_entrypoint_object(
libc.hdr.float_macros
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.manipulation_functions
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4846,8 +4212,6 @@ add_entrypoint_object(
../fmaf.h
DEPENDS
libc.src.__support.FPUtil.fma
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4858,8 +4222,6 @@ add_entrypoint_object(
../fma.h
DEPENDS
libc.src.__support.FPUtil.fma
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4870,8 +4232,6 @@ add_entrypoint_object(
../totalorder.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4882,8 +4242,6 @@ add_entrypoint_object(
../totalorderf.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4894,8 +4252,6 @@ add_entrypoint_object(
../totalorderl.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4906,8 +4262,6 @@ add_entrypoint_object(
../totalorderf16.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4919,8 +4273,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.FPUtil.basic_operations
libc.src.__support.macros.properties.types
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
totalordermag
@@ -4930,8 +4282,6 @@ add_entrypoint_object(
../totalordermag.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4942,8 +4292,6 @@ add_entrypoint_object(
../totalordermagf.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4954,8 +4302,6 @@ add_entrypoint_object(
../totalordermagl.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4966,8 +4312,6 @@ add_entrypoint_object(
../totalordermagf16.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4979,8 +4323,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.FPUtil.basic_operations
libc.src.__support.macros.properties.types
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -4991,8 +4333,6 @@ add_entrypoint_object(
../getpayload.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5003,8 +4343,6 @@ add_entrypoint_object(
../getpayloadf.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5015,8 +4353,6 @@ add_entrypoint_object(
../getpayloadl.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5028,8 +4364,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5041,8 +4375,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5053,8 +4385,6 @@ add_entrypoint_object(
../setpayload.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5065,8 +4395,6 @@ add_entrypoint_object(
../setpayloadf.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5077,8 +4405,6 @@ add_entrypoint_object(
../setpayloadl.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5090,8 +4416,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5103,8 +4427,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5115,8 +4437,6 @@ add_entrypoint_object(
../setpayloadsig.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5127,8 +4447,6 @@ add_entrypoint_object(
../setpayloadsigf.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5139,8 +4457,6 @@ add_entrypoint_object(
../setpayloadsigl.h
DEPENDS
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5152,8 +4468,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5165,8 +4479,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.basic_operations
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5178,8 +4490,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.add_sub
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5191,8 +4501,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.add_sub
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5204,8 +4512,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.add_sub
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5217,8 +4523,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.add_sub
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5230,8 +4534,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.add_sub
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5243,8 +4545,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.add_sub
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5256,8 +4556,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.add_sub
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5269,8 +4567,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.add_sub
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5282,8 +4578,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.div
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5295,8 +4589,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.div
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5308,8 +4600,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.div
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5321,8 +4611,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.div
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5334,8 +4622,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.fma
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5347,8 +4633,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.fma
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5360,8 +4644,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.fma
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5373,8 +4655,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.fma
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5386,8 +4666,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.sqrt
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5399,8 +4677,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.sqrt
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5412,8 +4688,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.sqrt
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5425,8 +4699,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.sqrt
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5437,8 +4709,6 @@ add_entrypoint_object(
../fsqrt.h
DEPENDS
libc.src.__support.FPUtil.generic.sqrt
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5449,8 +4719,6 @@ add_entrypoint_object(
../fsqrtl.h
DEPENDS
libc.src.__support.FPUtil.generic.sqrt
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5462,8 +4730,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.sqrt
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5472,8 +4738,6 @@ add_entrypoint_object(
cbrtf.cpp
HDRS
../cbrtf.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.hdr.fenv_macros
libc.src.__support.FPUtil.fenv_impl
@@ -5488,8 +4752,6 @@ add_entrypoint_object(
cbrt.cpp
HDRS
../cbrt.h
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.hdr.fenv_macros
libc.src.__support.FPUtil.double_double
@@ -5510,8 +4772,6 @@ add_entrypoint_object(
../dmull.h
DEPENDS
libc.src.__support.FPUtil.generic.mul
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5523,8 +4783,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.mul
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5536,8 +4794,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.mul
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5549,8 +4805,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.mul
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5562,8 +4816,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.mul
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_entrypoint_object(
@@ -5575,8 +4827,6 @@ add_entrypoint_object(
DEPENDS
libc.src.__support.macros.properties.types
libc.src.__support.FPUtil.generic.mul
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
)
add_header_library(
diff --git a/libc/src/stdfix/CMakeLists.txt b/libc/src/stdfix/CMakeLists.txt
index 815f739d23efa40..37292d85367fe30 100644
--- a/libc/src/stdfix/CMakeLists.txt
+++ b/libc/src/stdfix/CMakeLists.txt
@@ -9,8 +9,6 @@ foreach(suffix IN ITEMS hr r lr hk k lk)
abs${suffix}.h
SRCS
abs${suffix}.cpp
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.fixed_point.fx_bits
)
@@ -23,8 +21,6 @@ foreach(suffix IN ITEMS uhr ur ulr uhk uk)
sqrt${suffix}.h
SRCS
sqrt${suffix}.cpp
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.fixed_point.sqrt
)
@@ -37,8 +33,6 @@ foreach(suffix IN ITEMS hr r lr hk k lk uhr ur ulr uhk uk ulk)
round${suffix}.h
SRCS
round${suffix}.cpp
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.fixed_point.fx_bits
)
@@ -61,8 +55,6 @@ add_entrypoint_object(
uhksqrtus.h
SRCS
uhksqrtus.cpp
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.fixed_point.sqrt
)
@@ -73,8 +65,6 @@ add_entrypoint_object(
uksqrtui.h
SRCS
uksqrtui.cpp
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.fixed_point.sqrt
)
@@ -85,8 +75,6 @@ add_entrypoint_object(
exphk.h
SRCS
exphk.cpp
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.fixed_point.fx_rep
libc.src.__support.CPP.bit
@@ -98,8 +86,6 @@ add_entrypoint_object(
expk.h
SRCS
expk.cpp
- COMPILE_OPTIONS
- ${libc_opt_high_flag}
DEPENDS
libc.src.__support.fixed_point.fx_rep
libc.src.__support.CPP.bit
More information about the libc-commits
mailing list