use cygwin ldd to find dlls to include, instead of manually listing

This commit is contained in:
Joey Hess 2015-04-21 14:24:28 -04:00
parent 6b956c8678
commit cd4fb498a7

View file

@ -1,7 +1,8 @@
{- Generates a NullSoft installer program for git-annex on Windows. {- Generates a NullSoft installer program for git-annex on Windows.
- -
- To build the installer, git-annex should already be built by cabal, - To build the installer, git-annex should already be built by cabal,
- and ssh and rsync, as well as cygwin libraries, already installed. - and ssh and rsync etc, as well as cygwin libraries, already installed
- from cygwin.
- -
- This uses the Haskell nsis package (cabal install nsis) - This uses the Haskell nsis package (cabal install nsis)
- to generate a .nsi file, which is then used to produce - to generate a .nsi file, which is then used to produce
@ -11,7 +12,7 @@
- exception of git. The user needs to install git separately, - exception of git. The user needs to install git separately,
- and the installer checks for that. - and the installer checks for that.
- -
- Copyright 2013 Joey Hess <id@joeyh.name> - Copyright 2013-2015 Joey Hess <id@joeyh.name>
- -
- Licensed under the GNU GPL version 3 or higher. - Licensed under the GNU GPL version 3 or higher.
-} -}
@ -22,13 +23,17 @@ import Development.NSIS
import System.Directory import System.Directory
import System.FilePath import System.FilePath
import Control.Monad import Control.Monad
import Control.Applicative
import Data.String import Data.String
import Data.Maybe import Data.Maybe
import Data.Char
import Data.List (nub)
import Utility.Tmp import Utility.Tmp
import Utility.Path import Utility.Path
import Utility.CopyFile import Utility.CopyFile
import Utility.SafeCommand import Utility.SafeCommand
import Utility.Process
import Build.BundledPrograms import Build.BundledPrograms
main = do main = do
@ -37,17 +42,19 @@ main = do
mustSucceed "ln" [File "dist/build/git-annex/git-annex.exe", File gitannex] mustSucceed "ln" [File "dist/build/git-annex/git-annex.exe", File gitannex]
let license = tmpdir </> licensefile let license = tmpdir </> licensefile
mustSucceed "sh" [Param "-c", Param $ "zcat standalone/licences.gz > '" ++ license ++ "'"] mustSucceed "sh" [Param "-c", Param $ "zcat standalone/licences.gz > '" ++ license ++ "'"]
extrabins <- forM (cygwinPrograms ++ cygwinDlls) $ \f -> do extrabins <- forM (cygwinPrograms) $ \f -> do
p <- searchPath f p <- searchPath f
when (isNothing p) $ when (isNothing p) $
print ("unable to find in PATH", f) print ("unable to find in PATH", f)
return p return p
dlls <- forM (catMaybes extrabins) findLibs
dllpaths <- mapM searchPath (nub (concat dlls))
webappscript <- vbsLauncher tmpdir "git-annex-webapp" "git-annex webapp" webappscript <- vbsLauncher tmpdir "git-annex-webapp" "git-annex webapp"
autostartscript <- vbsLauncher tmpdir "git-annex-autostart" "git annex assistant --autostart" autostartscript <- vbsLauncher tmpdir "git-annex-autostart" "git annex assistant --autostart"
let htmlhelp = tmpdir </> "git-annex.html" let htmlhelp = tmpdir </> "git-annex.html"
writeFile htmlhelp htmlHelpText writeFile htmlhelp htmlHelpText
writeFile nsifile $ makeInstaller gitannex license htmlhelp writeFile nsifile $ makeInstaller gitannex license htmlhelp
(catMaybes extrabins) (catMaybes (extrabins ++ dllpaths))
[ webappscript, autostartscript ] [ webappscript, autostartscript ]
mustSucceed "makensis" [File nsifile] mustSucceed "makensis" [File nsifile]
removeFile nsifile -- left behind if makensis fails removeFile nsifile -- left behind if makensis fails
@ -169,54 +176,6 @@ makeInstaller gitannex license htmlhelp extrabins launchers = nsis $ do
cygwinPrograms :: [FilePath] cygwinPrograms :: [FilePath]
cygwinPrograms = map (\p -> p ++ ".exe") bundledPrograms cygwinPrograms = map (\p -> p ++ ".exe") bundledPrograms
-- These are the dlls needed by Cygwin's rsync, ssh, etc.
-- TODO: Use ldd (available in cygwin) to automatically find all
-- needed libs.
cygwinDlls :: [FilePath]
cygwinDlls =
[ "cygwin1.dll"
, "cygasn1-8.dll"
, "cygattr-1.dll"
, "cygheimbase-1.dll"
, "cygroken-18.dll"
, "cygcom_err-2.dll"
, "cygheimntlm-0.dll"
, "cygsqlite3-0.dll"
, "cygcrypt-0.dll"
, "cyghx509-5.dll"
, "cygssp-0.dll"
, "cygcrypto-1.0.0.dll"
, "cygiconv-2.dll"
, "cyggcc_s-1.dll"
, "cygintl-8.dll"
, "cygwind-0.dll"
, "cyggssapi-3.dll"
, "cyggssapi_krb5-2.dll"
, "cygkrb5-26.dll"
, "cygz.dll"
, "cygidn-11.dll"
, "cyggnutls-28.dll"
, "libcrypto.dll"
, "libssl.dll"
, "cyggcrypt-11.dll"
, "cyggpg-error-0.dll"
, "cygp11-kit-0.dll"
, "cygffi-6.dll"
, "cygbz2-1.dll"
, "cygreadline7.dll"
, "cygncursesw-10.dll"
, "cygusb0.dll"
, "cyghogweed-2.dll"
, "cygk5crypto-3.dll"
, "cygkrb5support-0.dll"
, "cyggmp-10.dll"
, "cygkrb5-3.dll"
, "cygnettle-4.dll"
, "cygtasn1-6.dll"
, "cygpcre-1.dll"
, "cyguuid-1.dll"
]
-- msysgit opens Program Files/Git/doc/git/html/git-annex.html -- msysgit opens Program Files/Git/doc/git/html/git-annex.html
-- when git annex --help is run. -- when git annex --help is run.
htmlHelpText :: String htmlHelpText :: String
@ -229,3 +188,10 @@ htmlHelpText = unlines
, "</body>" , "</body>"
, "</html" , "</html"
] ]
findLibs :: FilePath -> IO [FilePath]
findLibs p = mapMaybe parse . lines <$> readProcess "ldd" [p]
where
parse l = case words (dropWhile isSpace l) of
(dll:"=>":_dllpath:_offset:[]) -> Just dll
_ -> Nothing