ColdGrub1384 / LibTerm

iOS sandboxed terminal with Python, Lua and Clang
https://libterm.app
MIT License
630 stars 115 forks source link

Can’t run any executables in /bin /sbin or ~/Documents #47

Closed dernyn closed 4 years ago

dernyn commented 4 years ago

iOS app : Can’t run any executables in /bin /sbin or ~/Documents

ColdGrub1384 commented 4 years ago

LibTerm cannot run executables. LLVM IR code can be ran with the lli command.

dullbananas commented 4 years ago

Because of the restrictions of iOS and iPadOS

On Sun, Dec 29, 2019 at 8:17 AM Adrian Labbé notifications@github.com wrote:

LibTerm cannot run executables. LLVM IR code can be ran with the lli command.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/ColdGrub1384/LibTerm/issues/47?email_source=notifications&email_token=ALL7CZ2J7JES65UII37YXRLQ3C5QNA5CNFSM4JXYSJ72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEHZBV5Y#issuecomment-569514743, or unsubscribe https://github.com/notifications/unsubscribe-auth/ALL7CZ5B5CXBWP7P4BKZMZLQ3C5QNANCNFSM4JXYSJ7Q .

dernyn commented 4 years ago

so you can use the 'package' command to install third party commands (are these not executables?), but you can call the commands from new pakages but not native iOS commands in specific local folders---is this correct?

dullbananas commented 4 years ago

Commands installed via package are written in Python. Custom native executables can't be executed.

dernyn commented 4 years ago

thanks for the clarification.