未验证 提交 8e28c89a 编写于 作者: J Jim 提交者: GitHub

Merge pull request #2786 from pkubaj/patch-1

Add CFLAGS necessary on PPC64(LE) to libobs.pc
......@@ -476,6 +476,9 @@ if(UNIX AND NOT APPLE)
foreach(LIB "obs" "rt")
set(PRIVATE_LIBS "${PRIVATE_LIBS} -l${LIB}")
endforeach()
if(LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)64(le)?")
set(PPC64_CFLAGS "-DNO_WARN_X86_INTRINSICS -mvsx")
endif()
CONFIGURE_FILE("libobs.pc.in" "libobs.pc" @ONLY)
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libobs.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
endif()
......
......@@ -7,5 +7,5 @@ Name: libobs
Description: OBS Studio Library
Version: @OBS_VERSION@
Requires: x11
Cflags: -I${includedir}
Cflags: -I${includedir} @PPC64_CFLAGS@
Libs: -L${libdir} @PRIVATE_LIBS@
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册