aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheCharlatan <seb.kung@gmail.com>2019-12-02 00:02:38 +0100
committerTheCharlatan <seb.kung@gmail.com>2019-12-02 01:04:40 +0100
commit1d78db270997a60385da4a5baf2457911af9c406 (patch)
tree530da823af5192165e110b6900e861650d013763
parentMerge pull request #6174 (diff)
downloadmonero-1d78db270997a60385da4a5baf2457911af9c406.tar.xz
Add travis freebsd
-rw-r--r--.travis.yml2
-rw-r--r--README.md5
2 files changed, 7 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 516e4f8e5..ba2215905 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -34,6 +34,8 @@ env:
- HOST=x86_64-unknown-linux-gnu PACKAGES="gperf cmake python3-zmq libdbus-1-dev libharfbuzz-dev"
# Cross-Mac
- HOST=x86_64-apple-darwin11 PACKAGES="cmake imagemagick libcap-dev librsvg2-bin libz-dev libbz2-dev libtiff-tools python-dev python3-setuptools-git" OSX_SDK=10.11
+# x86_64 Freebsd
+ - HOST=x86_64-unknown-freebsd PACKAGES="clang-8 gperf cmake python3-zmq libdbus-1-dev libharfbuzz-dev"
before_install:
- export PATH=$(echo $PATH | tr ':' "\n" | sed '/\/opt\/python/d' | tr "\n" ":" | sed "s|::|:|g")
diff --git a/README.md b/README.md
index 7b6b252e0..fd8016ef7 100644
--- a/README.md
+++ b/README.md
@@ -547,6 +547,11 @@ You can also cross-compile static binaries on Linux for Windows and macOS with t
* Requires: `g++-aarch64-linux-gnu`
* ```make depends target=riscv64-linux-gnu``` for RISC V 64 bit binaries.
* Requires: `g++-riscv64-linux-gnu`
+* ```make depends target=x86_64-unknown-freebsd``` for freebsd binaries.
+ * Requires: `clang-8`
+* ```make depends target=arm-linux-android``` for 32bit android binaries
+* ```make depends target=aarch64-linux-android``` for 64bit android binaries
+
The required packages are the names for each toolchain on apt. Depending on your distro, they may have different names.