summaryrefslogtreecommitdiff
path: root/compiler/main/SysTools.lhs
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2008-07-25 14:28:28 +0000
committerSimon Marlow <marlowsd@gmail.com>2008-07-25 14:28:28 +0000
commit9bcd5a09b7b57de8b7d6780fa7a767ff72049a7a (patch)
tree4a8184d8938fbae831f940566daa0c323af47f90 /compiler/main/SysTools.lhs
parent730f4f24c453d9396d28dee411425184e560cf3c (diff)
downloadhaskell-9bcd5a09b7b57de8b7d6780fa7a767ff72049a7a.tar.gz
try to fix the way we find $topdir
Diffstat (limited to 'compiler/main/SysTools.lhs')
-rw-r--r--compiler/main/SysTools.lhs26
1 files changed, 12 insertions, 14 deletions
diff --git a/compiler/main/SysTools.lhs b/compiler/main/SysTools.lhs
index 3937aa4f86..11e31b8234 100644
--- a/compiler/main/SysTools.lhs
+++ b/compiler/main/SysTools.lhs
@@ -163,10 +163,7 @@ initSysTools mbMinusB dflags0
; let installed, installed_bin :: FilePath -> FilePath
installed_bin pgm = top_dir </> pgm
installed file = top_dir </> file
- real_top_dir
- | isWindowsHost = top_dir </> ".." </> ".."
- | otherwise = top_dir </> ".."
- inplace dir pgm = real_top_dir </> dir </> pgm
+ inplace dir pgm = top_dir </> dir </> pgm
; let pkgconfig_path
| am_installed = installed "package.conf"
@@ -332,7 +329,9 @@ findTopDir mbMinusB
|| exists2 -- On Linux, the presence of inplace signals
-- that we are inplace
- ; return (not amInplace, top_dir)
+ ; let real_top = if exists2 then top_dir </> ".." else top_dir
+
+ ; return (not amInplace, real_top)
}
where
-- get_proto returns a Unix-format path (relying on getBaseDir to do so too)
@@ -525,13 +524,7 @@ copyWithHeader dflags purpose maybe_header from to = do
getExtraViaCOpts :: DynFlags -> IO [String]
getExtraViaCOpts dflags = do
- (am_installed, top_dir) <- findTopDir (Just (topDir dflags))
- let top_dir'
- -- XXX Euch:
- | isWindowsHost && not am_installed
- = top_dir </> ".." </> ".." </> "inplace-datadir"
- | otherwise = top_dir
- f <- readFile (top_dir' </> "extra-gcc-opts")
+ f <- readFile (topDir dflags </> "extra-gcc-opts")
return (words f)
\end{code}
@@ -863,9 +856,14 @@ getBaseDir = do let len = (2048::Int) -- plenty, PATH_MAX is 512 under Win32.
rootDir s = case splitFileName $ normalise s of
(d, "ghc.exe") ->
case splitFileName $ takeDirectory d of
+ -- installed ghc.exe is in $topdir/bin/ghc.exe
(d', "bin") -> takeDirectory d'
- _ -> panic ("Expected \"bin\" in " ++ show s)
- _ -> panic ("Expected \"ghc.exe\" in " ++ show s)
+ -- inplace ghc.exe is in $topdir/ghc/stage1-inplace/ghc.exe
+ (d', x) | "-inplace" `isSuffixOf` x ->
+ takeDirectory d' </> ".."
+ _ -> fail
+ _ -> fail
+ where fail = panic ("can't decompose ghc.exe path: " ++ show s)
foreign import stdcall unsafe "GetModuleFileNameA"
getModuleFileName :: Ptr () -> CString -> Int -> IO Int32