mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Exclude host libs from Android package.
Fixes startup error caused by packaging the wrong libphf.so.
This commit is contained in:
parent
c3f56476a0
commit
16421f03af
1 changed files with 1 additions and 1 deletions
|
@ -409,7 +409,7 @@ package: servo
|
||||||
else ifeq ($(CFG_OSTYPE),linux-androideabi)
|
else ifeq ($(CFG_OSTYPE),linux-androideabi)
|
||||||
package: servo
|
package: servo
|
||||||
mkdir -p sofile
|
mkdir -p sofile
|
||||||
find . ! \( \( -type d -path './sofile' -o -path './$(CFG_TARGET)/src/compiler/rust' \) -prune \) -name '*.so' -type f | xargs -I {} cp -f {} $(CFG_BUILD_HOME)sofile/
|
find . ! \( \( -type d -path './sofile' -o -path './$(CFG_TARGET)/src/compiler/rust' -o -path '*/host' \) -prune \) -name '*.so' -type f | xargs -I {} cp -f {} $(CFG_BUILD_HOME)sofile/
|
||||||
find $(CFG_RUST_HOME)/lib/rustlib/$(CFG_TARGET)/lib/ -name '*.so' -type f -size +1c | xargs -I {} cp -f {} $(CFG_BUILD_HOME)sofile/
|
find $(CFG_RUST_HOME)/lib/rustlib/$(CFG_TARGET)/lib/ -name '*.so' -type f -size +1c | xargs -I {} cp -f {} $(CFG_BUILD_HOME)sofile/
|
||||||
cd $(S)src/platform/android/servo-android-glue && make with-libs
|
cd $(S)src/platform/android/servo-android-glue && make with-libs
|
||||||
cd $(CFG_BUILD_HOME)
|
cd $(CFG_BUILD_HOME)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue