From 8efbcbaabbb78a9d9dc9278100aac0488577e8d8 Mon Sep 17 00:00:00 2001 From: pierre Date: Thu, 9 Feb 2012 17:38:10 +0000 Subject: [PATCH] NetBSD also needs explicit DynamicLinker git-svn-id: trunk@20293 - --- compiler/systems/t_bsd.pas | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/compiler/systems/t_bsd.pas b/compiler/systems/t_bsd.pas index deeaf99894..6d13044497 100644 --- a/compiler/systems/t_bsd.pas +++ b/compiler/systems/t_bsd.pas @@ -189,8 +189,10 @@ begin { OpenBSD seems to use a wrong dynamic linker by default } if target_info.system = system_i386_openbsd then DynamicLinker:='/usr/libexec/ld.so' + else if target_info.system = system_i386_netbsd then + DynamicLinker:='/usr/libexec/ld.elf_so' else - DynamicLinker:=''; + DynamicLinker:=''; end; end;