From ff84934376a2ab5dbc38668040a751e52053eaf6 Mon Sep 17 00:00:00 2001 From: David McCullough Date: Wed, 22 Feb 2006 01:29:27 +0000 Subject: [PATCH] Hello, the following trivial patch is required to build elf2flt on Darwin. Weirdly, static compilation is intentionally unsupported by Apple for better compatibility: http://developer.apple.com/qa/qa2001/qa1118.html As elf2flt binaries are usually shipped along with other dynamic binaries such as gcc and gdb, we don't loose anything on Linux. I'd commit it myself, but I can't access the CVS server right now. Bernardo Innocenti --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 6917cf3..6e8e310 100644 --- a/Makefile.in +++ b/Makefile.in @@ -13,7 +13,7 @@ TARGET = @target_alias@ CFLAGS = @CFLAGS@ INCLUDES = @bfd_include_dir@ @binutils_include_dir@ CPPFLAGS = @CPPFLAGS@ -LDFLAGS = @LDFLAGS@ -static +LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ INSTALL = @INSTALL@ DEFS = @DEFS@ -DTARGET_$(CPU) -- 2.39.5