-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SDL のビルドのために libgl-dev
のインストールを追加する
#153
base: develop
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
対応ありがとうございました。
examples のビルドの直前で apt install した方がよいかなと考えましたが、install が一箇所に固まっている今の状態の方がわかりやすくてよいと思いました。
@@ -236,6 +236,9 @@ jobs: | |||
# X11 | |||
sudo apt-get install libx11-dev libxext-dev | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
追加箇所に問題ないかを確認していただきたいです。
libgl-dev が必要なのは examples のみですが、インストール箇所をまとめるためにここへ追加しています。
SDL のビルド時に OpenGL がない場合、OpenGL 機能が無効化される仕様になっていたためインストールを追加
This pull request includes updates to the build workflow and documentation to ensure proper installation of the
libgl-dev
package, which is necessary for SDL builds.Changes to build workflow:
.github/workflows/build.yml
: Added installation oflibgl-dev
package for both general and ARMv8-specific dependencies to support OpenGL in SDL builds. [1] [2]Documentation updates:
CHANGES.md
: Documented the addition oflibgl-dev
installation for SDL builds to prevent OpenGL-related issues during the build process.