From: Junio C Hamano Date: Thu, 29 Jun 2006 05:08:54 +0000 (-0700) Subject: Makefile: Set USE_PIC on x86-64 X-Git-Tag: v1.4.3-rc1~2^2~29 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=c35ebc902fd5c48c978d0d4cfab52ccdb4b11f54;p=git.git Makefile: Set USE_PIC on x86-64 On some platforms, Git.xs refuses to link with the rest of git unless the latter is compiled with -fPIC, and we have USE_PIC control in the Makefile for the user to set it. At least we know x86-64 is such, so set it in the Makefile. The original suggestion by Marco Roeland conservatively did this only for Linux x86-64, but let's keep the Makefile simple and if it breaks somebody let them holler. Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index 2f66ab114..3c25fb38b 100644 --- a/Makefile +++ b/Makefile @@ -341,6 +341,9 @@ endif ifneq (,$(findstring arm,$(uname_M))) ARM_SHA1 = YesPlease endif +ifeq ($(uname_M),x86_64) + USE_PIC = YesPlease +endif -include config.mak