Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Enable cross-compiling for x86_64-freebsd
6 changes: 6 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,9 @@ then
*-*-wasi)
ac_sys_system=WASI
;;
*-*-freebsd)
ac_sys_system=FreeBSD
;;
*)
# for now, limit cross builds to known configurations
MACHDEP="unknown"
Expand Down Expand Up @@ -777,6 +780,9 @@ if test "$cross_compiling" = yes; then
wasm32-*-* | wasm64-*-*)
_host_ident=$host_cpu
;;
x86_64-*-freebsd)
_host_ident=x86_64
;;
*)
# for now, limit cross builds to known configurations
MACHDEP="unknown"
Expand Down
Loading