mirror of
https://github.com/servo/servo.git
synced 2025-10-01 09:09:15 +01:00
Print the full path for errors occurring in the servo crate
This commit is contained in:
parent
c494d25e24
commit
a0ae81610d
7 changed files with 29 additions and 19 deletions
|
@ -1,22 +0,0 @@
|
|||
[target.arm-linux-androideabi]
|
||||
linker = "./fake-ld-arm.sh"
|
||||
ar = "arm-linux-androideabi-ar"
|
||||
|
||||
[target.armv7-linux-androideabi]
|
||||
linker = "./fake-ld-armv7.sh"
|
||||
ar = "arm-linux-androideabi-ar"
|
||||
|
||||
[target.aarch64-linux-android]
|
||||
linker = "./fake-ld-arm64.sh"
|
||||
ar = "aarch64-linux-android-ar"
|
||||
|
||||
[target.arm-unknown-linux-gnueabihf]
|
||||
linker = "arm-linux-gnueabihf-gcc"
|
||||
ar = "arm-linux-gnueabihf-ar"
|
||||
|
||||
[target.aarch64-unknown-linux-gnu]
|
||||
linker = "aarch64-linux-gnu-gcc"
|
||||
ar = "aarch64-linux-gnu-ar"
|
||||
|
||||
[target.'cfg(target_os=windows)']
|
||||
linker = "./fake-ld.cmd"
|
|
@ -8,7 +8,7 @@ set -o errexit
|
|||
set -o nounset
|
||||
set -o pipefail
|
||||
|
||||
source fake-ld.sh
|
||||
source ./ports/servo/fake-ld.sh
|
||||
|
||||
export _GCC_PARAMS="${@}"
|
||||
call_gcc "arch-arm" "arm-linux-androideabi" "android-18" "armeabi"
|
||||
|
|
|
@ -8,7 +8,7 @@ set -o errexit
|
|||
set -o nounset
|
||||
set -o pipefail
|
||||
|
||||
source fake-ld.sh
|
||||
source ./ports/servo/fake-ld.sh
|
||||
|
||||
export _GCC_PARAMS="${@}"
|
||||
call_gcc "arch-arm64" "aarch64-linux-android" "android-21" "arm64-v8a"
|
||||
|
|
|
@ -8,7 +8,7 @@ set -o errexit
|
|||
set -o nounset
|
||||
set -o pipefail
|
||||
|
||||
source fake-ld.sh
|
||||
source ./ports/servo/fake-ld.sh
|
||||
|
||||
export _GCC_PARAMS="${@}"
|
||||
call_gcc "arch-arm" "arm-linux-androideabi" "android-18" "armeabi-v7a"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue