KILEYI

导航

08 2019 档案

Rust OpenGL配置
摘要:下载这个项目 https://github.com/Nercury/rust-and-opengl-lessons 进入 rust-and-opengl-lessons\lesson-04 目录 记得把SDL2的dll都复制过去 打开Cargo.toml 去掉 运行 要用到自己的工程,参考下他对应的 阅读全文

posted @ 2019-08-19 09:31 KILEYI 阅读(3065) 评论(1) 推荐(0)

Rust SDL2配置
摘要:github地址 https://github.com/Rust-SDL2/rust-sdl2 clone或下载这个项目 本文使用的是MSVC版本 上面链接页面搜Windows (MSVC) 得知需要下载 SDL2-devel-2.0.10-VC.zip https://www.libsdl.org 阅读全文

posted @ 2019-08-19 09:03 KILEYI 阅读(1617) 评论(1) 推荐(1)

Win7 VSCode 在线安装Rust语言及环境配置
摘要:睡前彻底解决在VSCode中,按F12不跳转到标准库源码的问题。 首先,如果装过离线版,卸载掉。 然后去官网下载 rustup-init.exe https://www.rust-lang.org/tools/install 下好后别急着安装 新建4个环境变量 CARGO_HOMEE:\Rust\c 阅读全文

posted @ 2019-08-19 01:00 KILEYI 阅读(2333) 评论(0) 推荐(0)

Win7 VSCode 离线安装Rust语言及环境配置
摘要:前置依赖 装过Visual Studio或Visual Studio Build Tool 2015 下载Rust离线安装包 https://forge.rust-lang.org/other-installation-methods.html 写本文时使用的版本为1.37 https://stat 阅读全文

posted @ 2019-08-17 11:02 KILEYI 阅读(2352) 评论(0) 推荐(0)

Win7崩溃程序目录
摘要:很烦,占用系统空间,毫无用处 C:\Users\你的用户名\AppData\Local\CrashDumps C:\Users\你的用户名\AppData\Local\Microsoft\Windows\WER\ReportQueue 阅读全文

posted @ 2019-08-11 19:16 KILEYI 阅读(452) 评论(0) 推荐(0)

fatal error C1047: The object or library file xxx was created with an older compiler than other objects
摘要:之前编译Cocos2DX时遇到过一次,这次又遇到了,记下解决方法,以防再来第三次。 这个错误是说链接的库或者文件是老版本编译器生成的,与当前编译器不符,比如这次用的预编译库是2015的,而我当前使用的是2017编译器,所以就报错了。 解决方法,右键工程选择porperties 然后按以下路径操作 C 阅读全文

posted @ 2019-08-10 21:39 KILEYI 阅读(2208) 评论(0) 推荐(0)