diff options
author | Memphiz <memphis@machzwo.de> | 2015-02-14 23:50:04 +0100 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2015-02-17 21:36:34 +0100 |
commit | 600ca038b0898bb07b1fa3642dae8c19f96b0034 (patch) | |
tree | 2ba1077ea987027d697c42c85c65a952cb6eeec5 | |
parent | 060c1dc48b96d53606eaa6c85698a5e52445b003 (diff) |
[docs] - adapt docs - binary addons (audioencoder, pvr) need to be built manually in an extra step from now on
-rw-r--r-- | docs/README.android | 2 | ||||
-rw-r--r-- | docs/README.ios | 4 | ||||
-rw-r--r-- | docs/README.linux | 5 | ||||
-rw-r--r-- | docs/README.osx | 5 |
4 files changed, 13 insertions, 3 deletions
diff --git a/docs/README.android b/docs/README.android index ed7689066d..dd636d757b 100644 --- a/docs/README.android +++ b/docs/README.android @@ -200,6 +200,8 @@ on with the Android toolchain and creating an Android Application Package having to input these with each configure. # make -j <jobs> + # make -j <jobs> -C target/xbmc-pvr-addons + # make -j <jobs> -C target/xbmc-audioencoder-addons This build was designed to be massively parallel. Don't be afraid to give it a 'make -j20' or so. diff --git a/docs/README.ios b/docs/README.ios index 25acd1135a..e0b0a462c2 100644 --- a/docs/README.ios +++ b/docs/README.ios @@ -80,7 +80,9 @@ constellations of Xcode and osx versions (to be updated once we know more): $ ./bootstrap $ ./configure --host=arm-apple-darwin $ make - + $ make -C target/xbmc-pvr-addons + $ make -C target/xbmc-audioencoder-addons + NOTE: You can speedup compilation on multicore systems by doing "make -j<number of cores>" instead of "make". For a dualcore this would read: "make -j2" diff --git a/docs/README.linux b/docs/README.linux index a9f1f271e5..a40c2f61a1 100644 --- a/docs/README.linux +++ b/docs/README.linux @@ -98,9 +98,10 @@ Tip: By adding -j<number> to the make command, you describe how many $ make -j2 -Note: From v14 with commit 4090a5f a new API for binary audio encoder addons is available, if you need to compile them do: +Note: From v14 with commit 4090a5f a new API for binary audio encoder and pvr addons is available, if you need to compile them do: - $ make -C tools/depends/target/xbmc-audioencoder-addons PREFIX=/<system prefix you added on step 4.1 + $ make -C tools/depends/target/xbmc-audioencoder-addons PREFIX=/<system prefix you added on step 4.1> + $ make -C tools/depends/target/xbmc-pvr-addons PREFIX=/<system prefix you added on step 4.1> .3 $ make install diff --git a/docs/README.osx b/docs/README.osx index 06e541c0be..933d5a4f66 100644 --- a/docs/README.osx +++ b/docs/README.osx @@ -7,6 +7,7 @@ TOC 3.2. Install Kodi build depends 3.2.1 Compiling as 32 Bit binary 3.2.2 Compiling as 64 Bit binary + 3.2.3 Compile binary addons 4. How to compile and run 4.1 Using XCode 4.2 Using Command line @@ -84,6 +85,10 @@ constellations of Xcode and osx versions (to be updated once we know more): $ ./configure --host=x86_64-apple-darwin $ make +3.2.3 Compile binary addons + $ make -C target/xbmc-pvr-addons + $ make -C target/xbmc-audioencoder-addons + NOTE: You can speedup compilation on multicore systems by doing "make -j<number of cores>" instead of "make". For a dualcore this would read: "make -j2" |