Skip to content
This repository was archived by the owner on Apr 2, 2024. It is now read-only.

Commit e0abfec

Browse files
committed
New: Fix for #28447 Merged: openbsd support: rust-lang/rust@fcb30a0 bitrig integration: rust-lang/rust@cd8f317
1 parent 1b8128c commit e0abfec

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

configure

+2-2
Original file line numberDiff line numberDiff line change
@@ -5429,7 +5429,7 @@ else
54295429
lt_cv_sys_max_cmd_len=8192;
54305430
;;
54315431
5432-
netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
5432+
netbsd* | freebsd* | openbsd* | darwin* | dragonfly* | bitrig*)
54335433
# This has been around since 386BSD, at least. Likely further.
54345434
if test -x /sbin/sysctl; then
54355435
lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
@@ -8884,7 +8884,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
88848884
;;
88858885
88868886
# FreeBSD 3 and greater uses gcc -shared to do shared libraries.
8887-
freebsd* | dragonfly*)
8887+
freebsd* | dragonfly* | openbsd* | bitrig*)
88888888
archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
88898889
hardcode_libdir_flag_spec='-R$libdir'
88908890
hardcode_direct=yes

ltmain.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4003,7 +4003,7 @@ func_mode_link ()
40034003
# These systems don't actually have a C library (as such)
40044004
test "X$arg" = "X-lc" && continue
40054005
;;
4006-
*-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
4006+
*-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*)
40074007
# Do not include libc due to us having libc/libc_r.
40084008
test "X$arg" = "X-lc" && continue
40094009
;;

pecoff.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ coff_add (struct backtrace_state *state, int descriptor,
602602
const b_coff_section_header *sects;
603603
struct backtrace_view str_view;
604604
int str_view_valid;
605-
size_t str_size;
605+
uint32_t str_size;
606606
off_t str_off;
607607
struct backtrace_view syms_view;
608608
off_t syms_off;

0 commit comments

Comments
 (0)