当前位置: 首页 > 工具软件 > raylib > 使用案例 >

使用Lua开发android游戏引擎 raylib-lua-sol 开发日记

彭弘伟
2023-12-01

2021年4月17日

白屏问题:

切换到指定分支,git checkout 33ed14230608667c18b7d28d2f03722354e1c1a2即可解决问题。

参考:

Example code only renders blank screen of various colours - Raspberry Pi 3B+ Raspberry Pi OS Lite latest version · Issue #1519 · raysan5/raylib
https://github.com/raysan5/raylib/issues/1519

已经成功Pull Request,并且主项目已经接受并且合并。

# 2021年4月19日

building project with the mingw32-w64-i686 compiler on Windows 10

g++.exe: error: /bigobj: No such file or directory

issue: https://github.com/RobLoach/raylib-lua-sol/issues/35

解决方法:

error C1128: 节数超过对象文件格式限制: 请使用 /bigobj 进行编译 - VVingerfly - 博客园 https://www.cnblogs.com/VVingerfly/p/6648064.html

Visual Studio版本与ToolsVersion与工具集版本号对应版本号 - 广林 - 博客园 https://www.cnblogs.com/guanglin/p/12929981.html

cmake -A

The remote end hung up unexpectedly while git cloning

With this kind of error, I usually start by raising the postBuffer size by:

git config --global http.postBuffer 524288000
git config --global http.postBuffer 1048576000

参考:The remote end hung up unexpectedly while git cloning - Stack Overflow
https://stackoverflow.com/questions/6842687/the-remote-end-hung-up-unexpectedly-while-git-cloning

 类似资料: