views:

45

answers:

1

So I'm trying to break a few rules quietly. GoDaddy doesn't seem too keen on letting me have Git, and for some reason think that one needs root access to run any gcc (crazy web-hosting support teams). As I try to convince them to do what I tell them to, I'm trying to find a gcc that I can send to my server so I can build git on my own and just add it to my $PATH. Anyone have any clues or is this a horrible idea? It was just a random idea, because I'd really like to host some of my projects on my site, but GoDaddy isn't as cool as DreamHost.

Thanks in advance

+3  A: 

You could build git locally and upload - you probably wouldn't even have to statically link the executable.

Yann Ramin
indeed, a quick check on my ubuntu machine suggestions that curl, expat, zlib, perl and libc are required. these are present on most linux machines.
Matt Joiner
Sooo I don't even have dependencies to worry about then?
jphenow
I'm going to give this a shot (gotta love having Cygwin at work) so we'll see if I can get this way to work :) thanks for the suggestion, I'll get back on results
jphenow
Cygwin will *not* work. It will try bringing in the Cygwin libraries. You need to use a Linux system, preferably close to what GoDaddy is running.
Yann Ramin