-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Labels
Description
Hello!
I recently rooted my LG OLED TV and wanted to get a terminal there - when looking for SDL2 based terminals, I came across this one. And while building, a few issues, small ones though.
- None of the environment variables are respected. You assign CC via
:=, but if you use?=, the user can override them without having to usemake -e, which is what I ended up doing. - Quite a few libraries are missing (mainly the OpenSSL ones). An easy fix is to just add
$(pkg-config openssl --libs). - This might just be a problem on my toolchain (GCC 6.2.0) but I also had to add
-lz -lstdc++. Thought it'd be standard, but apparently it's not. -lSDLmainis used but not available on my toolchain - however, from the looks of it, it's also not needed, at least on Linux (host OS is WebOS which runs GNU/Linux).
Just thought I'd leave the info here.
Have a nice day! :)