How to install LLVM Clang on iPad?

I want to get LLVM (Clang) on ​​my iPad so that I can compile Objective-C with my iPhone. But

  • I don’t know which binary should I download (FreeBSD? Debian? MAC?)
  • I do not know how to install it on an iPad using terminal commands.
+4
source share
2 answers

I compiled clang / llvm for iOS and it works successfully on my iPod Touch 2G and my iPad 2. It is available from the following repo: http://ininjas.com/repo/

If you like it or have comments, check out the forum at http://ininjas.com/forum/

+11
source

Short answer: you cannot.

Long answer: You can get an older version of GCC, but it has been removed from the common cydia repositories, because for some reason it causes the device to crash when booting from iOS 4 +.

If you really want GCC, here is the google code project: http://code.google.com/p/iphone-gcc-full/

+1
source

Source: https://habr.com/ru/post/1399655/


All Articles