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 83690ed commit 537e423Copy full SHA for 537e423
src/porting/CMakeLists.txt
@@ -43,7 +43,6 @@ include_directories(
43
44
add_library(tvhal SHARED ${SRCS_COMMON} ${SOURCES_${NGL_CHIPSET}})
45
add_library(tvhal_static STATIC ${SRCS_COMMON} ${SOURCES_${NGL_CHIPSET}})
46
-target_compile_definitions(tvhal PRIVATE LINK_SHARED=1)
47
48
target_link_libraries(tvhal ${HAL_EXTRA_DLIBS})
49
target_link_libraries(tvhal_static ${HAL_EXTRA_LIBS})
src/porting/gx3213/ngl_misc.c
@@ -18,6 +18,7 @@ int nglSysInit(){
18
GxCore_HwMallocInit();
19
return 0;
20
}
21
-#ifdef LINK_SHARED
22
-vbi_fetch_vt_flags(){}
23
-#endif
+
+vbi_fetch_vt_flags(){
+ NGLOG_INFO("DUMMY");
24
+}
0 commit comments