Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[libc] Don't manually override the optimization level for math #126322

Merged
merged 3 commits into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 0 additions & 40 deletions libc/src/complex/generic/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand All @@ -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
)
Expand All @@ -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
)
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
)
Expand All @@ -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
)
Expand All @@ -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
)
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
Loading