Snowinter

Results 2 comments of Snowinter

Maybe you can try adding this line of code before all add_requires: `add_requires("vulkansdk")` Then try recompiling it. If that doesn't work, change the name of the current project (e.g. Project...

__imp是Windows导入动态库符号的前缀,相当于你给了一个lz4的静态库进去,但是你的arrow需要一个lz4的动态库,所以找不到符号。你看看cmake或者arrow里面控制lz4的导入符号的部分,看一下控制宏是什么。再用类似以下的方式,把宏追加进cmake里面,来支持lz4的静态库: ```cmake if not package:dep("lz4"):config("shared") then io.replace("CMakeLists.txt", "target_compile_definitions(${arrow某个模块} PUBLIC ${模块中的其他宏})", "target_compile_definitions(${arrow某个模块} PUBLIC ${模块中的其他宏} ${追加的宏})") end ```