Skip to content

Commit 5ada4df

Browse files
dpinophiln
authored andcommitted
[LibWebRTC] Unreviewed build fix after 265790@main
https://bugs.webkit.org/show_bug.cgi?id=258708 Compiler flags were not applied to the list of AVX2 source files because 'webrtc_avx_SOURCES' needs to be evaluated. * Source/ThirdParty/libwebrtc/CMakeLists.txt: Canonical link: https://commits.webkit.org/265832@main
1 parent cecb2f7 commit 5ada4df

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/ThirdParty/libwebrtc/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1866,7 +1866,7 @@ if (WTF_CPU_X86_64 OR WTF_CPU_X86)
18661866
Source/webrtc/modules/audio_processing/aec3/vector_math_avx2.cc
18671867
Source/webrtc/modules/audio_processing/agc2/rnn_vad/vector_math_avx2.cc
18681868
)
1869-
set_source_files_properties(webrtc_avx_SOURCES PROPERTIES COMPILE_OPTIONS "-mavx2;-mfma")
1869+
set_source_files_properties(${webrtc_avx_SOURCES} PROPERTIES COMPILE_OPTIONS "-mavx2;-mfma")
18701870
list(APPEND webrtc_SOURCES ${webrtc_avx_SOURCES})
18711871
add_definitions(-DWEBRTC_ENABLE_AVX2)
18721872
endif()

0 commit comments

Comments
 (0)