Theos/Setup: Difference between revisions

From iPhone Development Wiki
m (Reverted edits by IOSChris (talk) to last revision by Hazealign)
(Undo revision 5753 by Kritanta (talk))
Tags: Replaced Undo
 
(20 intermediate revisions by 8 users not shown)
Line 1: Line 1:
{{Warning | This article is mostly outdated, please read [https://github.com/theos/theos/wiki/Installation these instructions instead]. }}
{{soft redirect|https://theos.dev/install}}


This page contains instructions for installing [[Theos]] and preparing a new project.
This article is obsolete, and has been replaced by the [https://theos.dev/install theos.dev website].


== Definitions ==
If you need historical installation instructions, you can find the last version of this article [https://iphonedev.wiki/index.php?title=Theos/Setup&oldid=5735 here].
 
<code>$THEOS</code> is the directory where Theos is installed on your machine. Theos is self-contained; that is, you simply download it anywhere on your computer and it's ready to go immediately.
 
Typically, the location of Theos one of these:
 
* <tt>/opt/theos</tt>, on OS X or Linux
* <tt>/var/theos</tt>, on iOS
* <tt>~/theos</tt>, if you don't have permission to install Theos to one of the above
 
== Requirements ==
 
* A modern operating system (Mac OS X, iOS [jailbroken], Windows [using Cygwin], and most variants of Linux should work) with the following set of utilities:
** curl
** git
** make
** openssh
** perl
** rsync
** dpkg (port or homebrew install on Mac OS X)
** python (if on Windows)
* Some form of a toolchain or official SDK
* Cydia [http://apt.saurik.com/debs/ mobilesubstrate]
* Access to a terminal emulator and some knowledge of how to use it
* '''Objective-C knowledge'''
 
More detailed explanations of these requirements are given in the next section, and are dependent on the environment you use.
 
(If you've never used a command line before, it may be helpful to practice using it so that you have a better understanding of the commands you're about to run. [http://ryanstutorials.net/linuxtutorial/ This tutorial may be useful]; it's targeted toward Linux, but almost all of the information is the same for the command line on OS X and iOS.)
 
== Setting Up Dependencies ==
 
=== For Mac OS X ===
 
Mac OS X comes with most of the necessary tools (subversion, curl, and perl) by default.
 
You will still need compilation tools and the iOS SDK, and the easiest way to obtain both of these is by installing Xcode from [https://itunes.apple.com/app/xcode/id497799835?mt=12 the App Store].
 
Install dpkg via your installed package manager, which might be either <code>[http://brew.sh/ brew] install dpkg</code> or <code>[https://www.macports.org/ port] install dpkg</code>.
 
Your package manager may also have [[ldid]]. Fink and Homebrew do. If not, compile and install it yourself:
 
<pre>git clone git://git.saurik.com/ldid.git
cd ldid
git submodule update --init
./make.sh
cp -f ./ldid $THEOS/bin/ldid</pre>
 
Or download from one of these sources:
 
* http://joedj.net/ldid
* http://jontelang.com/guide/chapter2/ldid.html
 
=== For Linux ===
 
Like OS X, most distributions come pre-packaged with the aforementioned tools. On Debian-based distros, APT can be used to install the tools like so:
<pre>sudo apt-get install git perl curl</pre>
 
If your distro uses RPM, the process is very similar.
 
Ensure you have dpkg and ldid (see above).
 
=== For iOS ===
 
'''Dependencies:'''
 
Theos as a package depends on bash, grep, dpkg, coreutils, ldid, rsync and make, so the utilities mentioned in the requirements are automatically installed.
 
'''Install a Toolchain:'''
 
See [[On-device toolchains]] for details.
 
=== For Windows ===
 
''To do: cygwin, perl, python. Use [http://coolstar.org/theos.pdf this].''
 
== Installing Theos ==
 
=== On Mac OS X or Linux ===
 
# Open a terminal window.
# Choose a location for Theos to be installed. If you are unsure, a good choice is <tt>/opt/theos</tt>.<pre>export THEOS=/opt/theos</pre>
#* If you chose a location outside of your user's home directory, you will probably need to run some or all of the following commands with root permissions.
# Download the latest version of Theos:
#* Using git: <pre>git clone --recursive git://github.com/DHowett/theos.git $THEOS</pre>
#* Alternatively, you can use svn, if you prefer: <pre>svn co http://svn.howett.net/svn/theos/trunk $THEOS</pre>
# Add Theos environment variables to your <code>~/.bash_profile</code> (or the equivalent for your shell). Open <code>~/.bash_profile</code> (create it if it does not exist) in your favorite editor and add this on the last line, replacing "example" with your device's name (replacing spaces with dashes). If you prefer, you can also use your devices IP address. To find you IP, open settings, select wifi, then press the "i" on the network you are currently connected to. From here you should be able to see your devices IP address: <!-- this bit of text is borrowed from http://sharedinstance.net/2013/12/build-on-windows/ with permission, thanks kirb! --><br><pre>export THEOS=/opt/theos&#10;export PATH=$THEOS/bin:$PATH&#10;export THEOS_DEVICE_IP=example.local THEOS_DEVICE_PORT=22</pre>Load this into the shell with <code>. ~/.bash_profile</code>, or close the terminal window and launch a new one.
# As the Substrate library does not come installed on these platforms nor bundled with Theos, copy <code>/Library/Frameworks/CydiaSubstrate.framework/CydiaSubstrate</code> from the device to your local <code>$THEOS/lib</code> folder and rename it to <code>libsubstrate.dylib</code>. (If you don't do this step, or if you use an old version of Substrate, or if something else goes wrong, you may get [[Theos/Troubleshooting#Missing_Substrate_library|one of these error messages]]). Similarly, copy <code>/Library/Frameworks/CydiaSubstrate.framework/Headers/CydiaSubstrate.h</code> to your local <code>$THEOS/include</code> folder and rename it to <code>substrate.h</code>. You can alternatively retrieve files directly from the package: <pre>wget http://apt.saurik.com/debs/mobilesubstrate_0.9.6011_iphoneos-arm.deb&#10;mkdir substrate&#10;dpkg-deb -x mobilesubstrate_*_iphoneos-arm.deb substrate&#10;mv substrate/Library/Frameworks/CydiaSubstrate.framework/CydiaSubstrate $THEOS/lib/libsubstrate.dylib&#10;mv substrate/Library/Frameworks/CydiaSubstrate.framework/Headers/CydiaSubstrate.h $THEOS/include/substrate.h</pre>
 
=== On iOS ===
 
Follow the instructions [[Theos/Setup/iOS | here]].
 
=== On Windows ===
 
''To do. Use [http://coolstar.org/theos.pdf this].''
 
=== Also for Linux and iOS (and other operating systems other than Mac OS X): Retrieving SDKs ===
 
If you aren't using OS X, you must download an iOS SDK. See [[Retrieving SDKs]] for details on this.
 
Take the SDK and put it in <code>$THEOS/sdks</code> (if it does not exist, create it), with a folder name like iPhoneOS7.0.sdk. As of version 0.9.523, Theos accepts multiple SDKs in that folder.
 
Each SDK folder should have these folders: Developer, System, usr; and these files: ResourceRules.plist, Entitlements.plist, SDKSettings.plist.
 
Note that if no SDKs are provided, the following error will be displayed (also noted in the [[Theos/Troubleshooting|Troubleshooting page]]): <pre>".../theos/makefiles/targets/darwin-arm/iphone.mk:21: *** first argument to 'word' function must be greater than 0. stop."</pre>
 
== Creating a Project ==
 
Theos lets you create new projects based on templates using the New Instance Creator ([[NIC]]).  You do not need to be root to do this step, nor should you be.  Start the NIC wizard using the following command:
 
$THEOS/bin/nic.pl
 
NIC will prompt you for all the necessary information before creating a project. Please make sure that the path to your current directory doesn't have spaces in it.
 
(If you get an error message saying "Illegal instruction: 4", [[Theos/Troubleshooting#Architecture_.28partial.29_incompatibility|see this troubleshooting advice]].)
 
=== NIC Example ===
 
Here is an example of what you will see when using the NIC to create a project (with user input shown in bold):
 
$ '''$THEOS/bin/nic.pl'''
NIC 1.0 - New Instance Creator
------------------------------
  [1.] iphone/application
  [2.] iphone/library
  [3.] iphone/preference_bundle
  [4.] iphone/tool
  [5.] iphone/tweak
Choose a Template (required): '''1'''
Project Name (required): '''iPhoneDevWiki'''
Package Name [com.yourcompany.iphonedevwiki]: '''net.howett.iphonedevwiki'''
Authour/Maintainer Name [Dustin L. Howett]:             
Instantiating iphone/application in iphonedevwiki/...
Done.
$
 
The above will create a folder <tt>./iphonedevwiki</tt> in the current working directory - make sure you have permissions to create a folder.
 
== Making your Project ==
 
When you have finished developing your tweak/app, you may want to distribute it, either to your own device, or to an external source.
 
When you are making the project, type this in the terminal, in your project folder:
 
$ make package
 
This will generate a .deb file, which you can distribute to people or to repositories.
 
If you want to install the latest package, type:
 
$ make install
 
It will then ask for your root password and install the .deb onto your device. If you haven't changed your root password, the default password is '''alpine'''. Make sure you change your root password, which you can do with '''passwd''' (see "Root Password How-To" on the Cydia homepage for detailed instructions).
 
Some wifi spots firewall client devices from each other.  That will result in your computer being unable to install onto your iDevice.  If this is a problem your computer and your device won't be able to ping each other.  It may work for you to set up ad-hoc network.  On Mac OS X, under the WiFi menu, this is done with the "Create Network" item.  You will need to use static IP addressing.
 
If you are developing an application, you need to force the icon cache to be reloaded for your app's icon to show up. Restarting SpringBoard is not effective, since this does not rebuild the cache. Simply run:
 
$ uicache
 
== Further Reading ==
 
You can learn how to do Makefiles with theos on http://uv.howett.net/ipf.html. Start over there.
 
For general advice on beginning development for jailbroken iOS, see [[Getting Started]].
 
== Getting Help ==
 
If you get error messages when compiling your projects, search for your error in [[Theos/Troubleshooting]]. It is generalized so it might not be a literal copy of your problem.
 
If you need further assistance, or if you have other questions about Theos itself, feel free to connect to #theos on irc.saurik.com using your preferred IRC client. If you don't already have a preferred IRC client, you can learn more here: [[IRC]].

Latest revision as of 07:05, 8 January 2022

Soft redirect to:https://theos.dev/install

This article is obsolete, and has been replaced by the theos.dev website.

If you need historical installation instructions, you can find the last version of this article here.