| /OK3568_Linux_fs/buildroot/package/musepack/ |
| H A D | 0002-cmake-use-the-standard-CMake-flag-to-drive-the-share.patch | 7 If BUILD_SHARED_LIBS is set and SHARED undefined, then drive SHARED with 24 - option(SHARED "Use shared libmpcdec" OFF) 26 - option(SHARED "Use shared libmpcdec" ON) 29 +if(DEFINED BUILD_SHARED_LIBS AND NOT DEFINED SHARED) 30 + set(SHARED ${BUILD_SHARED_LIBS}) 33 + option(SHARED "Use shared libmpcdec" OFF) 35 + option(SHARED "Use shared libmpcdec" ON)
|
| H A D | 0001-shared.patch | 12 if(SHARED) 13 - add_library(mpcdec SHARED huffman mpc_decoder mpc_reader streaminfo mpc_bits_reader mpc_demux re… 14 + add_library(mpcdec_shared SHARED huffman mpc_decoder mpc_reader streaminfo mpc_bits_reader mpc_d… 18 else(SHARED) 23 endif(SHARED)
|
| /OK3568_Linux_fs/buildroot/package/flann/ |
| H A D | 0001-src-cpp-fix-cmake-3.11-build.patch | 7 (i.e add_library(foo SHARED)). But flann CMake use a trick that use 8 an empty string "" as source list (i.e add_library(foo SHARED "")). 25 If you try to use "add_library(flann_cpp SHARED ${CPP_SOURCES})" (as it should 57 - add_library(flann_cpp SHARED "") 58 + add_library(flann_cpp SHARED "empty.cpp") 66 - add_library(flann SHARED "") 67 + add_library(flann SHARED "empty.cpp")
|
| /OK3568_Linux_fs/buildroot/package/hiredis/ |
| H A D | 0001-CMakeLists.txt-do-not-force-SHARED.patch | 4 Subject: [PATCH] CMakeLists.txt: do not force SHARED 6 Allow the user to build static libraries by removing SHARED from 12 "If no type is given explicitly the type is STATIC or SHARED based on 31 -ADD_LIBRARY(hiredis SHARED ${hiredis_sources}) 40 - ADD_LIBRARY(hiredis_ssl SHARED
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/ |
| H A D | OpenCV.mk | 24 OPENCV_LIB_TYPE:=SHARED 27 ifeq ($(OPENCV_LIB_TYPE),SHARED) 29 OPENCV_LIB_TYPE:=SHARED 35 ifeq ($(OPENCV_LIB_TYPE),SHARED) 42 ifeq ($(OPENCV_LIB_TYPE),SHARED)
|
| /OK3568_Linux_fs/buildroot/dl/rtmpdump/git/librtmp/ |
| H A D | Makefile | 67 SHARED=yes macro 71 SO_DEF=$(SODEF_$(SHARED)) 72 SO_LIB=$(SOLIB_$(SHARED)) 73 SO_INST=$(SOINST_$(SHARED))
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-graphics/glew/glew/ |
| H A D | 0001-Fix-build-race-in-Makefile.patch | 42 bin/$(GLEWINFO.BIN): $(GLEWINFO.BIN.OBJ) $(LIB.SHARED.DIR)/$(LIB.SHARED) 49 bin/$(VISUALINFO.BIN): $(VISUALINFO.BIN.OBJ) $(LIB.SHARED.DIR)/$(LIB.SHARED)
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/libubox/libubox/ |
| H A D | 0001-version-libraries.patch | 8 ADD_LIBRARY(ubox SHARED ${SOURCES}) 15 ADD_LIBRARY(blobmsg_json SHARED blobmsg_json.c) 24 ADD_LIBRARY(json_script SHARED json_script.c)
|
| /OK3568_Linux_fs/buildroot/package/libjson/ |
| H A D | libjson.mk | 17 LIBJSON_MAKE_OPTS += SHARED=0 19 LIBJSON_MAKE_OPTS += SHARED=1
|
| /OK3568_Linux_fs/buildroot/package/pciutils/ |
| H A D | pciutils.mk | 43 PCIUTILS_MAKE_OPTS += SHARED=no 45 PCIUTILS_MAKE_OPTS += SHARED=yes
|
| /OK3568_Linux_fs/buildroot/package/brotli/ |
| H A D | 0001-CMake-Allow-using-BUILD_SHARED_LIBS-to-choose-static.patch | 60 - add_library(brotlicommon SHARED ${BROTLI_COMMON_C}) 61 - add_library(brotlidec SHARED ${BROTLI_DEC_C}) 62 - add_library(brotlienc SHARED ${BROTLI_ENC_C})
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/rga/RK3588/include/ |
| H A D | RgaMutex.h | 94 SHARED = 1 enumerator 150 if (type == SHARED) { in Mutex()
|
| /OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/src/main/cpp/rga/ |
| H A D | RgaMutex.h | 94 SHARED = 1 enumerator 150 if (type == SHARED) { in Mutex()
|
| /OK3568_Linux_fs/external/linux-rga/include/ |
| H A D | RgaMutex.h | 94 SHARED = 1 enumerator 150 if (type == SHARED) { in Mutex()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/rga/RK356X/include/ |
| H A D | RgaMutex.h | 94 SHARED = 1 enumerator 150 if (type == SHARED) { in Mutex()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/rga/RV110X/include/ |
| H A D | RgaMutex.h | 94 SHARED = 1 enumerator 150 if (type == SHARED) { in Mutex()
|
| /OK3568_Linux_fs/buildroot/package/pistache/ |
| H A D | 0002-CMakeLists.txt-respect-BUILD_SHARED_LIBS.patch | 25 -add_library(pistache_shared SHARED $<TARGET_OBJECTS:pistache>) 28 + add_library(pistache_shared SHARED $<TARGET_OBJECTS:pistache>)
|
| /OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/ |
| H A D | CMakeLists.txt | 9 # or SHARED, and provides the relative paths to its source code. 20 SHARED
|
| /OK3568_Linux_fs/buildroot/package/libftdi1/ |
| H A D | 0001-cmake-use-the-standard-CMake-flag-to-drive-the-share.patch | 36 -add_library(ftdipp1 SHARED ${cpp_sources}) 68 -add_library(ftdi1 SHARED ${c_sources})
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/gcc/gcc/ |
| H A D | 0024-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch | 66 -#if defined SHARED && defined USE_ELF_SYMVER 69 +#ifndef SHARED
|
| /OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/tufao/tufao/ |
| H A D | 0001-CMakeLists.txt-fix-build-with-Qt-5.11-don-t-use-qt5_.patch | 40 add_library(Test SHARED ${PLUGIN_HEADERS} ${PLUGIN_SOURCE}) 61 add_library("${TUFAO_LIBRARY}" SHARED ${tufao_SRC})
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/host/supp_plugin/ |
| H A D | CMakeLists.txt | 6 add_library(${PROJECT_NAME} SHARED test_supp_plugin.c)
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/aeis/ |
| H A D | CMakeLists.txt | 13 add_library(dvs_gyro SHARED IMPORTED GLOBAL)
|
| /OK3568_Linux_fs/buildroot/package/libopenh264/ |
| H A D | 0001-Add-USE_STACK_PROTECTOR-option.patch | 72 SHARED = -dynamiclib 73 SHARED += -current_version $(CURRENT_VERSION) -compatibility_version $(COMPATIBILITY_VERSION)
|
| /OK3568_Linux_fs/kernel/Documentation/vm/ |
| H A D | overcommit-accounting.rst | 59 | SHARED or READ-only - 0 cost (the file is the map not swap) 63 | SHARED - size of mapping
|