diff options
author | wangbiao <biao716.wang@samsung.com> | 2024-07-23 16:45:52 +0900 |
---|---|---|
committer | wangbiao <biao716.wang@samsung.com> | 2024-07-23 16:46:55 +0900 |
commit | 06e85a2603724647b090a4198dbee04673d0f622 (patch) | |
tree | 0344ea4bc04d201cac5498333be2708e0bcdf452 | |
parent | 98a723e090a12beb746adfcf7f4c7d404a800711 (diff) | |
download | qemu-06e85a2603724647b090a4198dbee04673d0f622.tar.gz qemu-06e85a2603724647b090a4198dbee04673d0f622.tar.bz2 qemu-06e85a2603724647b090a4198dbee04673d0f622.zip |
set QEMU_GUEST_BASE env for riscv64 archaccepted/tizen/base/x/20240813.015219accepted/tizen/base/x/20240724.211453accepted/tizen/base/toolchain/20241004.030053accepted/tizen/base/20241121.070755tizen_baseaccepted/tizen_base_xaccepted/tizen_base
Change-Id: I1c962eb987026856d56c5e6f7430fd1e42064995
Signed-off-by: wangbiao <biao716.wang@samsung.com>
-rw-r--r-- | packaging/baselibs.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packaging/baselibs.conf b/packaging/baselibs.conf index aa1dee3df..9f504a952 100644 --- a/packaging/baselibs.conf +++ b/packaging/baselibs.conf @@ -30,7 +30,7 @@ targettype cross package qemu-linux-user post "# workaround for using ldd on non-pie executable causes segfault" post "# ex) ldd /usr/bin/which" post "# ldd: exited with unknown exit code (139)" - post "%ifarch aarch64" + post "%ifarch aarch64 riscv64" post "echo 'export QEMU_GUEST_BASE=0x5500000000' > /etc/profile.d/qemu_base.sh" post "chmod 755 /etc/profile.d/qemu_base.sh" post "%endif" @@ -58,7 +58,7 @@ targettype x86_64-cross package qemu-linux-user post "# workaround for using ldd on non-pie executable causes segfault" post "# ex) ldd /usr/bin/which" post "# ldd: exited with unknown exit code (139)" - post "%ifarch aarch64" + post "%ifarch aarch64 riscv64" post "echo 'export QEMU_GUEST_BASE=0x5500000000' > /etc/profile.d/qemu_base.sh" post "chmod 755 /etc/profile.d/qemu_base.sh" post "%endif" @@ -86,7 +86,7 @@ targettype x86-cross package qemu-linux-user post "# workaround for using ldd on non-pie executable causes segfault" post "# ex) ldd /usr/bin/which" post "# ldd: exited with unknown exit code (139)" - post "%ifarch aarch64" + post "%ifarch aarch64 riscv64" post "echo 'export QEMU_GUEST_BASE=0x5500000000' > /etc/profile.d/qemu_base.sh" post "chmod 755 /etc/profile.d/qemu_base.sh" post "%endif" |