From d346575d3674d15c1c2b0bc9b248030b6e39c1d8 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Wed, 26 May 2010 14:08:32 -0600 Subject: [PATCH] fix typo in dynext linker spec for x86_64 Darwin --- collects/dynext/link-unit.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/dynext/link-unit.rkt b/collects/dynext/link-unit.rkt index 0afb97eb85..bcbd348b90 100644 --- a/collects/dynext/link-unit.rkt +++ b/collects/dynext/link-unit.rkt @@ -140,7 +140,7 @@ (format "-bE:~a/ext.exp" (include-dir)) "-bnoentry")] [(parisc-hpux) (list "-b")] - [(ppc-macosx ppc-darwin x86_64-macosx x86_86-darwin) mac-link-flags] + [(ppc-macosx ppc-darwin x86_64-macosx x86_64-darwin) mac-link-flags] [(i386-macosx i386-darwin) (append mac-link-flags '("-m32"))] [(i386-cygwin) win-gcc-linker-flags] [else (list "-fPIC" "-shared")]))