From fb7565fc6ce27b835a8007a5f8af2950236bcbaa Mon Sep 17 00:00:00 2001 From: marcoonthegit Date: Sat, 11 Jun 2022 17:59:33 +0200 Subject: [PATCH] * set freebsd to ld.bfd --- compiler/systems/t_bsd.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/systems/t_bsd.pas b/compiler/systems/t_bsd.pas index 3d3c405f30..b3be7933d0 100644 --- a/compiler/systems/t_bsd.pas +++ b/compiler/systems/t_bsd.pas @@ -126,7 +126,7 @@ procedure TLinkerBSD.SetDefaultInfo; var LdProgram: string='ld'; begin - if target_info.system in (systems_openbsd+[system_x86_64_dragonfly]) then + if target_info.system in (systems_openbsd+systems_freebsd+[system_x86_64_dragonfly]) then LdProgram:='ld.bfd'; LibrarySuffix:=' '; LdSupportsNoResponseFile := (target_info.system in ([system_m68k_netbsd]+systems_darwin));