Hadrian: fix library install paths in bindist Makefile (#16498)
GHC now works out-of-the-box (i.e. without any wrapper script) by assuming that @bin@ and @lib@ directories sit next to each other. In particular, its RUNPATH uses $ORIGIN-based relative path to find the libraries.
However, to be good citizens we want to support the case where @bin@ and @lib@ directories (respectively BINDIR and LIBDIR) don't sit next to each other or are renamed. To do that the install script simply creates GHC specific @bin@ and @lib@ siblings directories into:
LIBDIR/ghc-VERSION/{bin,lib}
Then it installs wrapper scripts into BINDIR that call the appropriate programs into LIBDIR/ghc-VERSION/bin/.
The issue fixed by this patch is that libraries were not installed into LIBDIR/ghc-VERSION/lib but directly into LIBDIR.
Merge request reports
Activity
added 1 commit
- 53a649f3 - Fix paths in bindist Makefile (#16498 (closed))
Hello. It's basically what is mentioned in #16498 (closed):
- programs are installed with "make install" in
PREFIX/lib/ghc-VER/bin/
- their relative RPATH indicate that libraries are installed in
PREFIX/lib/ghc-VER/lib/x86_64-linux-ghc-VER
- but before this patch they were installed into
PREFIX/lib/x86_64-linux-ghc-VER
instead, so I fixed this.
It's failing on x86_64 arch when we "make install" a bindist. If we use the programs from the bindist directly without "make install"ing them, it works because the paths are correct in the bindist.
- programs are installed with "make install" in
I find it difficult to understand what's going on in these generated code fragments, so any documentation/note that we could add to the source code would be very helpful.
@hsyl20 These explanations are great! Could you add them to the commit message, and perhaps incorporate to the code too?
added 1 commit
- 480204c7 - Hadrian: fix library install paths in bindist Makefile (#16498 (closed))
changed title from Fix paths in bindist Makefile (#16498 (closed)) to Hadrian: fix library install paths in bindist Makefile (#16498 (closed))
@snowleopard I have updated the note in the code and the commit/MR description.
As a side note, I wonder if we still need to use the (undocumented...) "-B" flag to set the "base directory" of ghc in the wrapper script.
@hsyl20 Out of curiosity, have you tested this on Windows?
@alp Sadly no. I have only tested that the wrapper scripts didn't fail on Linux/x86_64.
@hsyl20 Would it be hard for you to try it out on a Windows system? For what it's worth, we already generate binary distributions in CI, so what I'm asking for amounts to adding a command or two to our CI script to install the bindist and test it in the most trivial way. I'm sorry to bother you with this, but since I've been fine-tuning everything to work on both Linux and Windows, I'm trying to make sure we know when some breakage might happen. It wouldn't necessarily block the MR, but at least we'd know about it as soon as it happens.
Alternatively, I have a branch that adds
./validate --hadrian
(https://gitlab.haskell.org/alp/ghc/commits/wip/alp/hadrian-validate-mode) and which combines all those things (binary dist, install, test). Some quirks left on Windows but it does get past the bindist install step.Edited by Alp Mestanogullari@alp It took me quite some time but finally I have been able to build GHC on Windows for the first time \o/
I have updated the wiki so that other people and future me don't have to go through all this again.
However, I can't even build a bindist for
master
branch. It fails with:C:\Users\Sylvain\GHC\ghc>hadrian\build.stack.bat -c --flavour=quick binary-dist WARNING: Ignoring out of range dependency (allow-newer enabled): Cabal-3.0.0.0. happy requires: <2.6 WARNING: Ignoring out of range dependency (allow-newer enabled): shake-0.17.5. hadrian requires: >=0.17.6 | Configure package 'Cabal' | Configure package 'haskeline' | Configure package 'transformers' | Configure package 'mtl' | Configure package 'ghci' | Configure package 'ghc' | Copy package 'rts' # cabal-copy (for _build/stage1/lib/package.conf.d/rts-1.0.conf) copyFile: does not exist (Le fichier spécifié est introuvable.) shakeArgsWith 0.000s 0% Function shake 0.007s 0% Database read 0.190s 15% ==== With database 0.015s 1% Running rules 1.022s 82% ========================= Total 1.234s 100% Error when running Shake build system: at src/Main.hs:59:30-42: * Depends on: binary-dist at src/Rules/BinaryDist.hs:97:9-21: * Depends on: _build/stage1/lib/package.conf.d/rts-1.0.conf * Raised the exception: ExitFailure 1
while the file exists:
C:\Users\Sylvain\GHC\ghc>dir _build\stage1\lib\package.conf.d\rts-1.0.conf [...] 01/04/2019 13:13 3 796 rts-1.0.conf
Should I file a separate ticket?
(thanks for the approval)
That's odd. Especially given that we already build a bindist on our Hadrian+Windows CI job. @snowleopard Any idea?
It was indeed a Git CRLF issue. I have updated the wiki again: the info is in hadrian/doc/windows.md but it is harder to find.
I have tested building, installing and executing the wrapper scripts with this MR applied and it works.
However the installation is a bit strange because we have:
- PREFIX/bin: the wrappers
- PREFIX/lib/bin: ghc.exe ghc-pkg.exe haddock haddock.exe hp2ps.exe hpc.exe hsc2hs.exe runghc.exe
- PREFIX/lib/lib: the libraries, package.conf.d, etc.
- PREFIX/lib/lib/bin: touchy.exe unlit.exe
@hsyl20 Thanks for testing on Windows and updating the wiki!
By "strange" do you mean an unnecessary
lib
subdirectory? If yes, I agree it does look like a bug.Edited by Andrey Mokhov@snowleopard You're welcome! Thank you for your blog post about using Stack to build GHC on Windows and for the link to hadrian/doc/windows.md. Before finding your post I have wasted so much time trying to make the approach without Stack working (without success, configure was crashing...) :'(
By "strange" do you mean an unnecessary
lib
subdirectory? If yes, I agree it does look like a bug.It seems that it's because "ghclibdir" doesn't contain "ghc-VERSION". When we install the Linux bindist we have: PREFIX/lib/ghc-VERSION/lib/bin/{unlit,ghc-iserv-dyn}
Edited by Sylvain Henry@snowleopard I would use the existing Windows bindists as a model. In that case e.g.
unlit
is installed in$PREFIX/lib/bin/unlit.exe
.assigned to @marge-bot
I will attempt to batch this MR (!743 (closed))...
added 59 commits
-
480204c7...14a78707 - 58 commits from branch
ghc:master
- fe40ddd9 - Hadrian: fix library install paths in bindist Makefile (#16498 (closed))
-
480204c7...14a78707 - 58 commits from branch
mentioned in merge request !956 (closed)