Skip to content

Commit

Permalink
Only enable freedreno-kgsl on arm64 android builds
Browse files Browse the repository at this point in the history
  • Loading branch information
HeavenVolkoff committed Oct 21, 2024
1 parent aac6a8a commit 2466c03
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stages/45-drm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ cd drm/build
configs=()

case "$TARGET" in
*android*) configs+=(-Dudev=false -Dfreedreno-kgsl=true) ;;
android) configs+=(-Dudev=false) ;;&
aarch64-linux-android) configs+=(-Dfreedreno-kgsl=true) ;;
*) configs+=(-Dudev=true) ;;
esac

Expand Down

0 comments on commit 2466c03

Please sign in to comment.