diff options
author | Memphiz <memphis@machzwo.de> | 2015-03-10 15:05:34 +0100 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2015-03-11 21:44:25 +0100 |
commit | 4e60cfdc6f39bc0ce9fdf7235f1f37508d4928ca (patch) | |
tree | 96b232e8bdaaaf9d0852266eb8156bb155021e6c /docs | |
parent | dba351033ddb3f7c8d26bea0b0bad8ecd1d26cc2 (diff) |
[depends/binaddons] - unify xbmc-pvr-addons and xbmc-audioencode-addons to binary-addons
Diffstat (limited to 'docs')
-rw-r--r-- | docs/README.android | 6 | ||||
-rw-r--r-- | docs/README.ios | 6 | ||||
-rw-r--r-- | docs/README.linux | 6 | ||||
-rw-r--r-- | docs/README.osx | 6 |
4 files changed, 16 insertions, 8 deletions
diff --git a/docs/README.android b/docs/README.android index d40e0ca9b9..a9c4c679f1 100644 --- a/docs/README.android +++ b/docs/README.android @@ -200,8 +200,10 @@ 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 + # make -j <jobs> -C target/binary-addons + + NOTE: if you only want to build specific addons you can specify like this: + # make -C target/binary-addons ADDONS="pvr.hts pvr.dvblink" 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 e0b0a462c2..c0ea872169 100644 --- a/docs/README.ios +++ b/docs/README.ios @@ -80,9 +80,11 @@ 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 + $ make -C target/binary-addons + NOTE: if you only want to build specific addons you can specify like this: + $ make -C target/binary-addons ADDONS="pvr.hts pvr.dvblink" + 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 caabad47c4..90729bd730 100644 --- a/docs/README.linux +++ b/docs/README.linux @@ -99,11 +99,13 @@ Tip: By adding -j<number> to the make command, you describe how many 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-pvr-addons PREFIX=/<system prefix you added on step 4.1> + $ make -C tools/depends/target/binary-addons PREFIX=/<system prefix you added on step 4.1> .3 $ make install +Note: if you only want to build specific addons you can specify like this: + $ make -C tools/depends/target/binary-addons PREFIX=/<system prefix you added on step 4.1> ADDONS="pvr.hts pvr.dvblink" + This will install Kodi in the prefix provided in 4.1 as well as a launcher script. Note: You may need to run this with sudo (sudo make install) if your user doesn't have write permissions diff --git a/docs/README.osx b/docs/README.osx index 933d5a4f66..a42c435191 100644 --- a/docs/README.osx +++ b/docs/README.osx @@ -86,8 +86,10 @@ constellations of Xcode and osx versions (to be updated once we know more): $ make 3.2.3 Compile binary addons - $ make -C target/xbmc-pvr-addons - $ make -C target/xbmc-audioencoder-addons + $ make -C target/binary-addons + + NOTE: if you only want to build specific addons you can specify like this: + $ make -C target/binary-addons ADDONS="pvr.hts pvr.dvblink" NOTE: You can speedup compilation on multicore systems by doing "make -j<number of cores>" instead of "make". For a dualcore this would read: |