摘要:
在没有安装opengl相关库时进行Qt6构建时会出现构建失败的错误: ERROR: The OpenGL functionality tests failed! You might need to modify the OpenGL package search path by setting th 阅读全文
摘要:
python调用C程序 依赖于python的cytpes模块,C/C++将程序编译成dll动态库,使用ctypes.CDLL函数加载动态库,然后可以在python文件中条用dll中的函数。 在windows环境下,以简单的两数相加函数为例: # sum.c int sum(int a, int b) 阅读全文