Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F151986935
D52674.id162558.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
711 B
Referenced Files
None
Subscribers
None
D52674.id162558.diff
View Options
diff --git a/release/tools/oci-image-toolchain.conf b/release/tools/oci-image-toolchain.conf
--- a/release/tools/oci-image-toolchain.conf
+++ b/release/tools/oci-image-toolchain.conf
@@ -6,11 +6,24 @@
oci_image_build() {
set_cmd ${workdir} /bin/sh
- install_packages ${abi} ${workdir} \
+
+ # Base packages for all architectures
+ packages="
FreeBSD-clang \
FreeBSD-ctf-tools \
FreeBSD-lld \
- FreeBSD-lldb \
FreeBSD-toolchain \
- FreeBSD-*-dev
+ FreeBSD-*-dev"
+
+ # Add lldb for non-RISCV architectures
+ case "${TARGET_ARCH}" in
+ riscv*)
+ # Skip lldb for RISCV
+ ;;
+ *)
+ packages="${packages} FreeBSD-lldb"
+ ;;
+ esac
+
+ install_packages ${abi} ${workdir} ${packages}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Apr 12, 11:01 PM (1 h, 19 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
31378291
Default Alt Text
D52674.id162558.diff (711 B)
Attached To
Mode
D52674: release: exclude FreeBSD-lldb package for RISCV*
Attached
Detach File
Event Timeline
Log In to Comment