我一直试图安装sdl一段时间了。我在github上使用了这个教程:https://github.com/vinzBad/go-sdl2-tut/blob/master/00_preparation/windows.md
但是,每次我输入
componentDidMount() {
// Allow in-line JS scripts to be run
let scripts = document.querySelectorAll('[data-inline-script="data-inline-script"]');
scripts.forEach(function forEachScript(element) {
const script = element.innerHTML;
window.eval(script);
});
进入cmd或git bash,完成其他所有操作后,我得到了
包含在go \ src \ github.com \ veandco \ go-sdl2 \ sdl \ audio.go:4:0中的文件中: ./sdl_wrapper.h:2:23:致命错误:SDL2 / SDL.h:没有这样的文件或目录 #包括 ^ 编译终止。
显然它找不到sdl,即使我安装了它并添加了环境变量的路径。
我觉得我错过了一些东西,但我无法弄清楚是什么。
答案 0 :(得分:0)
好吧......我通过安装32位版本的go解决了这个问题。那是多么简单......