this post was submitted on 06 Sep 2026
16 points (100.0% liked)

Programming

28402 readers
391 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 3 years ago
MODERATORS
 

Say I make a game that uses SDL for graphics and compile a linux version of it. Instead of going through the hassle of using Android SDK/NDK to make it a proper installable apk, would it be viable to have it be run as a program off termux?

top 5 comments
sorted by: hot top controversial new old
[–] HelloRoot@lemy.lol 15 points 1 day ago* (last edited 1 day ago)

I feel like it's less hassle to do an android apk then to make it run in termux

[–] 30p87@feddit.org 7 points 1 day ago* (last edited 1 day ago) (1 children)

According to https://www.reddit.com/r/termux/comments/105fjt8/how_to_install_and_run_sdl2/,

pkg install x11-repo; pkg install sdl2

Though that would probably be different to what an actual APK would be at the end due to the X11 layer

[–] ICastFist@programming.dev 5 points 1 day ago (1 children)

Not quite what I asked. I meant, if I make a linux executable, for ARM cpu, that uses SDL (suppose all libs and dependencies are packed in) and run it from termux, will it work?

[–] pelya@lemmy.world 10 points 1 day ago (1 children)

It won't, because there's no graphics display, so SDL won't initialize.

You need to install and launch Termux:X11 to provide a video surface, and it won't support GL acceleration.

[–] tal@lemmy.today 6 points 1 day ago

I think that SDL can do aalib and libcaca.

searches

Hmm. No. I must be thinking of mpv.

SDL 1.2 could do aalib, but apparently 2 cannot:

https://wiki.libsdl.org/SDL2/FAQUsingSDL