mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-28 17:44:10 +00:00
c1456fc1de
Debian no longer allows us to install packages into the system managed location. So we are replacing the pip packages with the debian packaged versions. Also removes the wine64 hack which is no longer needed. This allows us to build a new dev container again. BUG=b:270568440 TEST=presubmit Change-Id: I592ebf13bc566785fcdf4a4fa4badb3e11c8126e Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4285744 Commit-Queue: Dennis Kempin <denniskempin@google.com> Reviewed-by: Zihan Chen <zihanchen@google.com>
20 lines
881 B
TOML
20 lines
881 B
TOML
# Configure path to linker and emulators to use when running unit tests
|
|
[target.armv7-unknown-linux-gnueabihf]
|
|
linker = "arm-linux-gnueabihf-gcc"
|
|
runner = "qemu-arm-static"
|
|
[target.aarch64-unknown-linux-gnu]
|
|
linker = "aarch64-linux-gnu-gcc"
|
|
runner = "qemu-aarch64-static"
|
|
[target.x86_64-pc-windows-gnu]
|
|
runner = "wine64"
|
|
|
|
# Provide path to the pkg-config wrapper for each supported platform
|
|
[env]
|
|
PKG_CONFIG_x86_64-unknown-linux-gnu = "x86_64-linux-gnu-pkg-config"
|
|
PKG_CONFIG_aarch64-unknown-linux-gnu = "aarch64-linux-gnu-pkg-config"
|
|
PKG_CONFIG_armv7_unknown_linux_gnueabihf = "arm-linux-gnueabihf-pkg-config"
|
|
|
|
# libslirp is currently not properly configured via pkg-config and cannot use the wrapper like
|
|
# other architextures do.
|
|
# TODO(b/266100489): Add a libslirp.pc file and use the pkg-config wrapper
|
|
PKG_CONFIG_SYSROOT_DIR_x86_64-pc-windows-gnu = "/usr/x86_64-w64-mingw32"
|