Re: Porting git to HP NonStop
From: Shawn Pearce <hidden>
Date: 2016-06-15 22:54:27
On Fri, Aug 10, 2012 at 8:04 AM, Joachim Schmitz [off-list ref] wrote:
quoted
- HP NonStop is lacking poll(), git is making quite some use of it. My Solution: I 'stole' the implementation from GNUlib, which implements poll() using select(). Git should either provide its own poll(), not use it at all or resort tousingquoted
GNUlib, what do you think?.
poll() is usually better than select() because you don't need to worry about FD_SETSIZE. That said, the compat/ directory contains implementations of some functions. You could contribute a fake poll that uses select if it was under the GPLv2.
quoted
- HP NonStop is lacking getrlimit(), fsync(), setitimer() and memorymapped IO.quoted
For now I've commented out the part that used getrlimit() and use a home brewed implementation for fsync(), setitimer() and mmap().
There is no need to define your own mmap(). Define NO_MMAP=1 in the Makefile. Git already has its own fake mmap and knows how to write it back to disk when making changes.
quoted
- git makes use of some C99 features or at least feature that are notavailabe inquoted
C89, like 'inline' C89 is the default compiler on HP NonStop, but we also habe a c99compiler, soquoted
telling configure to search for c99 should help here.
You could also disable inline by #define inline /**/, but this will probably result in a slower binary.
quoted
- HP NonStop doesn't have stat.st_blocks, this is used inbuiltin/count-objects.cquoted
around line 45, not sure yet how to fix that.
IIRC the block count is only used to give the user some notion of how much disk was wasted by the repository. You could hack a macro that redefines this as st_size.
quoted
- HP NonStop doesn't have stat.st_?time.nsec, there are several placeswhat anquoted
"#ifdef USE_NSEC" is missing, I can provide a diff if needed (offending files: builtin/fetch-pack.c and read-cache.c).
I think this would be appreciated by anyone else that has a similar problem where the platform lacks nsec.
quoted
- Once compiled and installed, a simple jojo@\hpitug:/home/jojo/GitHub $gitquoted
clone git://github.com/git/git.git fails with: /home/jojo/GitHub/git/.git/branches/: No such file or directory Aftercreatingquoted
those manually it fails because the directory isn't empty, catch-22 After some trial'n'error I found that the culprit seems to be thesubdirectoriesquoted
branches, hook and info in /usr/local/share/git-core/templates/, if I remove/rename those, the above command works fine. I have no idea why that is nor how to properly fix it, anyone out there?
This sounds like the templates directory was not created correctly during installation, or is being copied incorrectly during the git init process. I would start by comparing the structure and permissions of the templates directory on your HP NonStop system to one on a Linux system and see if there was a mistake made during the installation process. If the directory matches, I would then use `git init --bare` in a new directory to copy in the templates, and see if its the template copying code that is making an incorrect copy.