We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdca5ea commit 7f62b14Copy full SHA for 7f62b14
dependencies/ih264d/CMakeLists.txt
@@ -182,7 +182,10 @@ target_sources(ih264d PRIVATE
182
"decoder/arm/ih264d_function_selector_av8.c"
183
"decoder/arm/ih264d_function_selector.c"
184
)
185
-target_compile_options(ih264d PRIVATE -DARMV8)
+target_compile_options(ih264d PRIVATE -DARMV8 $<$<COMPILE_LANGUAGE:ASM,Clang>:-Wno-unused-command-line-argument>)
186
+if(NOT MSVC)
187
+ set(CMAKE_ASM_FLAGS "${CFLAGS} -x assembler-with-cpp")
188
+endif()
189
if(APPLE)
190
target_sources(ih264d PRIVATE "common/armv8/macos_arm_symbol_aliases.s")
191
endif()
0 commit comments