From a16f862cf6e4057faa72acdd762f57080175f881 Mon Sep 17 00:00:00 2001 From: Kamil Rytarowski Date: Sun, 11 Oct 2015 12:22:41 +0200 Subject: [PATCH] Define CONFIG_TCC_ELFINTERP on NetBSD as /usr/libexec/ld.elf_so --- tcc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tcc.h b/tcc.h index 99f4183..bd39a7e 100644 --- a/tcc.h +++ b/tcc.h @@ -263,6 +263,8 @@ # endif # elif defined __DragonFly__ # define CONFIG_TCC_ELFINTERP "/usr/libexec/ld-elf.so.2" +# elif defined __NetBSD__ +# define CONFIG_TCC_ELFINTERP "/usr/libexec/ld.elf_so" # elif defined __GNU__ # define CONFIG_TCC_ELFINTERP "/lib/ld.so" # elif defined(TCC_TARGET_PE)