我正在尝试设置利用 OpenGL C 库的 kotlin/native 项目。
操作系统:ArchLabs,linux 5.1.15(与 arch 共享存储库)
安装的软件包:glu、glew、freeglut、glfw
在我的 main() 中,只有一个函数被调用(它是从samples复制的):
glutInit(argc.ptr, null)
在我的项目中没有开箱即用的 OpenGL 支持,所以我决定制作 opengl.def:
package = platform.OpenGL
headers = GL/glut.h
compilerOpts = -I/usr/include
$ ls /usr/include/GL
freeglut_ext.h glcorearb.h gl.h glu_mangle.h glxext.h glx_mangle.h glxtokens.h wglew.h
freeglut.h glew.h gl_mangle.h glut.h glx.h glxmd.h internal
freeglut_std.h glext.h glu.h glxew.h glxint.h glxproto.h osmesa.h
这是我的gradle.build.kts
:
plugins {
id("org.jetbrains.kotlin.multiplatform") version "1.3.41"
}
repositories {
mavenCentral()
}
kotlin {
linuxX64("opengl") {
val main by compilations.getting
val opengl by main.cinterops.creating
binaries {
executable {
entryPoint = "opengl.main"
}
}
}
}
生成了一个 .kt 文件:build/classes/.../OpenGL/OpenGL.kt
其中包含glutInit
函数的定义(嗯,我猜更多的参考)
这是输出runReleaseExecutableOpengl
> Configure project :
Kotlin Multiplatform Projects are an experimental feature.
> Task :cinteropOpenglOpengl
> Task :linkReleaseExecutableOpengl
/home/Opengl/.konan/dependencies/clang-llvm-6.0.1-linux-x86-64/bin/ld.lld: error: undefined symbol: glutInit
>>> referenced by ld-temp.o
>>> /tmp/konan_temp5065866915785286367/combined.o:(platform_OpenGL_kniBridge520)
e: /home/Opengl/.konan/dependencies/clang-llvm-6.0.1-linux-x86-64/bin/ld.lld invocation reported errors
> Task :linkReleaseExecutableOpengl FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':linkReleaseExecutableOpengl'.
> Process 'command '/usr/lib/jvm/java-11-openjdk/bin/java'' finished with non-zero exit value 1
有没有办法解决它?我最好的猜测是我必须mingw-w64-*
安装软件包,例如mingw-w64-freeglut
. 是这样吗?也可能是我指向了错误的标头(我还没有真正进入 C,而且自从我使用 C++ 以来已经很长时间了)并且它找不到这些标头的实现。
提前致谢!