b8c52e49d23ac304f07b136f5284a590f02102cb
   1# Platform specific Makefile tweaks based on uname detection
   2
   3# Define NO_SAFESEH if you need MSVC/Visual Studio to ignore the lack of
   4# Microsoft's Safe Exception Handling in libraries (such as zlib).
   5# Typically required for VS2013+/32-bit compilation on Vista+ versions.
   6
   7uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
   8uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
   9uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
  10uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
  11uname_P := $(shell sh -c 'uname -p 2>/dev/null || echo not')
  12uname_V := $(shell sh -c 'uname -v 2>/dev/null || echo not')
  13
  14ifdef MSVC
  15        # avoid the MingW and Cygwin configuration sections
  16        uname_S := Windows
  17        uname_O := Windows
  18
  19        # Generate and include makefile variables that point to the
  20        # currently installed set of MSVC command line tools.
  21compat/vcbuild/MSVC-DEFS-GEN: compat/vcbuild/find_vs_env.bat
  22        @"$<" | tr '\\' / >"$@"
  23include compat/vcbuild/MSVC-DEFS-GEN
  24
  25        # See if vcpkg and the vcpkg-build versions of the third-party
  26        # libraries that we use are installed.  We include the result
  27        # to get $(vcpkg_*) variables defined for the Makefile.
  28compat/vcbuild/VCPKG-DEFS: compat/vcbuild/vcpkg_install.bat
  29        @"$<"
  30include compat/vcbuild/VCPKG-DEFS
  31endif
  32
  33# We choose to avoid "if .. else if .. else .. endif endif"
  34# because maintaining the nesting to match is a pain.  If
  35# we had "elif" things would have been much nicer...
  36
  37ifeq ($(uname_S),OSF1)
  38        # Need this for u_short definitions et al
  39        BASIC_CFLAGS += -D_OSF_SOURCE
  40        SOCKLEN_T = int
  41        NO_STRTOULL = YesPlease
  42        NO_NSEC = YesPlease
  43endif
  44ifeq ($(uname_S),Linux)
  45        HAVE_ALLOCA_H = YesPlease
  46        NO_STRLCPY = YesPlease
  47        HAVE_PATHS_H = YesPlease
  48        LIBC_CONTAINS_LIBINTL = YesPlease
  49        HAVE_DEV_TTY = YesPlease
  50        HAVE_CLOCK_GETTIME = YesPlease
  51        HAVE_CLOCK_MONOTONIC = YesPlease
  52        # -lrt is needed for clock_gettime on glibc <= 2.16
  53        NEEDS_LIBRT = YesPlease
  54        HAVE_GETDELIM = YesPlease
  55        SANE_TEXT_GREP=-a
  56        FREAD_READS_DIRECTORIES = UnfortunatelyYes
  57        BASIC_CFLAGS += -DHAVE_SYSINFO
  58        PROCFS_EXECUTABLE_PATH = /proc/self/exe
  59endif
  60ifeq ($(uname_S),GNU/kFreeBSD)
  61        HAVE_ALLOCA_H = YesPlease
  62        NO_STRLCPY = YesPlease
  63        HAVE_PATHS_H = YesPlease
  64        DIR_HAS_BSD_GROUP_SEMANTICS = YesPlease
  65        LIBC_CONTAINS_LIBINTL = YesPlease
  66        FREAD_READS_DIRECTORIES = UnfortunatelyYes
  67endif
  68ifeq ($(uname_S),UnixWare)
  69        CC = cc
  70        NEEDS_SOCKET = YesPlease
  71        NEEDS_NSL = YesPlease
  72        NEEDS_SSL_WITH_CRYPTO = YesPlease
  73        NEEDS_LIBICONV = YesPlease
  74        SHELL_PATH = /usr/local/bin/bash
  75        NO_IPV6 = YesPlease
  76        NO_HSTRERROR = YesPlease
  77        BASIC_CFLAGS += -Kthread
  78        BASIC_CFLAGS += -I/usr/local/include
  79        BASIC_LDFLAGS += -L/usr/local/lib
  80        INSTALL = ginstall
  81        TAR = gtar
  82        NO_STRCASESTR = YesPlease
  83        NO_MEMMEM = YesPlease
  84endif
  85ifeq ($(uname_S),SCO_SV)
  86        ifeq ($(uname_R),3.2)
  87                CFLAGS = -O2
  88        endif
  89        ifeq ($(uname_R),5)
  90                CC = cc
  91                BASIC_CFLAGS += -Kthread
  92        endif
  93        NEEDS_SOCKET = YesPlease
  94        NEEDS_NSL = YesPlease
  95        NEEDS_SSL_WITH_CRYPTO = YesPlease
  96        NEEDS_LIBICONV = YesPlease
  97        SHELL_PATH = /usr/bin/bash
  98        NO_IPV6 = YesPlease
  99        NO_HSTRERROR = YesPlease
 100        BASIC_CFLAGS += -I/usr/local/include
 101        BASIC_LDFLAGS += -L/usr/local/lib
 102        NO_STRCASESTR = YesPlease
 103        NO_MEMMEM = YesPlease
 104        INSTALL = ginstall
 105        TAR = gtar
 106endif
 107ifeq ($(uname_S),Darwin)
 108        NEEDS_CRYPTO_WITH_SSL = YesPlease
 109        NEEDS_SSL_WITH_CRYPTO = YesPlease
 110        NEEDS_LIBICONV = YesPlease
 111        # Note: $(uname_R) gives us the underlying Darwin version.
 112        # - MacOS 10.0.* and MacOS 10.1.0 = Darwin 1.*
 113        # - MacOS 10.x.* = Darwin (x+4).* for (1 <= x)
 114        # i.e. "begins with [15678] and a dot" means "10.4.* or older".
 115        ifeq ($(shell expr "$(uname_R)" : '[15678]\.'),2)
 116                OLD_ICONV = UnfortunatelyYes
 117                NO_APPLE_COMMON_CRYPTO = YesPlease
 118        endif
 119        ifeq ($(shell expr "$(uname_R)" : '[15]\.'),2)
 120                NO_STRLCPY = YesPlease
 121        endif
 122        ifeq ($(shell test "`expr "$(uname_R)" : '\([0-9][0-9]*\)\.'`" -ge 11 && echo 1),1)
 123                HAVE_GETDELIM = YesPlease
 124        endif
 125        NO_MEMMEM = YesPlease
 126        USE_ST_TIMESPEC = YesPlease
 127        HAVE_DEV_TTY = YesPlease
 128        COMPAT_OBJS += compat/precompose_utf8.o
 129        BASIC_CFLAGS += -DPRECOMPOSE_UNICODE
 130        BASIC_CFLAGS += -DPROTECT_HFS_DEFAULT=1
 131        HAVE_BSD_SYSCTL = YesPlease
 132        FREAD_READS_DIRECTORIES = UnfortunatelyYes
 133        HAVE_NS_GET_EXECUTABLE_PATH = YesPlease
 134        BASIC_CFLAGS += -I/usr/local/include
 135        BASIC_LDFLAGS += -L/usr/local/lib
 136endif
 137ifeq ($(uname_S),SunOS)
 138        NEEDS_SOCKET = YesPlease
 139        NEEDS_NSL = YesPlease
 140        SHELL_PATH = /bin/bash
 141        SANE_TOOL_PATH = /usr/xpg6/bin:/usr/xpg4/bin
 142        HAVE_ALLOCA_H = YesPlease
 143        NO_STRCASESTR = YesPlease
 144        NO_MEMMEM = YesPlease
 145        NO_MKDTEMP = YesPlease
 146        NO_REGEX = YesPlease
 147        NO_MSGFMT_EXTENDED_OPTIONS = YesPlease
 148        HAVE_DEV_TTY = YesPlease
 149        ifeq ($(uname_R),5.6)
 150                SOCKLEN_T = int
 151                NO_HSTRERROR = YesPlease
 152                NO_IPV6 = YesPlease
 153                NO_SOCKADDR_STORAGE = YesPlease
 154                NO_UNSETENV = YesPlease
 155                NO_SETENV = YesPlease
 156                NO_STRLCPY = YesPlease
 157                NO_STRTOUMAX = YesPlease
 158                GIT_TEST_CMP = cmp
 159        endif
 160        ifeq ($(uname_R),5.7)
 161                NEEDS_RESOLV = YesPlease
 162                NO_IPV6 = YesPlease
 163                NO_SOCKADDR_STORAGE = YesPlease
 164                NO_UNSETENV = YesPlease
 165                NO_SETENV = YesPlease
 166                NO_STRLCPY = YesPlease
 167                NO_STRTOUMAX = YesPlease
 168                GIT_TEST_CMP = cmp
 169        endif
 170        ifeq ($(uname_R),5.8)
 171                NO_UNSETENV = YesPlease
 172                NO_SETENV = YesPlease
 173                NO_STRTOUMAX = YesPlease
 174                GIT_TEST_CMP = cmp
 175        endif
 176        ifeq ($(uname_R),5.9)
 177                NO_UNSETENV = YesPlease
 178                NO_SETENV = YesPlease
 179                NO_STRTOUMAX = YesPlease
 180                GIT_TEST_CMP = cmp
 181        endif
 182        INSTALL = /usr/ucb/install
 183        TAR = gtar
 184        BASIC_CFLAGS += -D__EXTENSIONS__ -D__sun__
 185endif
 186ifeq ($(uname_O),Cygwin)
 187        ifeq ($(shell expr "$(uname_R)" : '1\.[1-6]\.'),4)
 188                NO_D_TYPE_IN_DIRENT = YesPlease
 189                NO_STRCASESTR = YesPlease
 190                NO_MEMMEM = YesPlease
 191                NO_SYMLINK_HEAD = YesPlease
 192                NO_IPV6 = YesPlease
 193                OLD_ICONV = UnfortunatelyYes
 194                # There are conflicting reports about this.
 195                # On some boxes NO_MMAP is needed, and not so elsewhere.
 196                # Try commenting this out if you suspect MMAP is more efficient
 197                NO_MMAP = YesPlease
 198        else
 199                NO_REGEX = UnfortunatelyYes
 200        endif
 201        HAVE_ALLOCA_H = YesPlease
 202        NEEDS_LIBICONV = YesPlease
 203        NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes
 204        NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
 205        X = .exe
 206        UNRELIABLE_FSTAT = UnfortunatelyYes
 207        OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
 208        MMAP_PREVENTS_DELETE = UnfortunatelyYes
 209        COMPAT_OBJS += compat/win32/path-utils.o
 210        FREAD_READS_DIRECTORIES = UnfortunatelyYes
 211endif
 212ifeq ($(uname_S),FreeBSD)
 213        NEEDS_LIBICONV = YesPlease
 214        # Versions up to 10.1 require OLD_ICONV; 10.2 and beyond don't.
 215        # A typical version string looks like "10.2-RELEASE".
 216        ifeq ($(shell expr "$(uname_R)" : '[1-9]\.'),2)
 217                OLD_ICONV = YesPlease
 218        endif
 219        ifeq ($(firstword $(subst -, ,$(uname_R))),10.0)
 220                OLD_ICONV = YesPlease
 221        endif
 222        ifeq ($(firstword $(subst -, ,$(uname_R))),10.1)
 223                OLD_ICONV = YesPlease
 224        endif
 225        NO_MEMMEM = YesPlease
 226        BASIC_CFLAGS += -I/usr/local/include
 227        BASIC_LDFLAGS += -L/usr/local/lib
 228        DIR_HAS_BSD_GROUP_SEMANTICS = YesPlease
 229        USE_ST_TIMESPEC = YesPlease
 230        ifeq ($(shell expr "$(uname_R)" : '4\.'),2)
 231                PTHREAD_LIBS = -pthread
 232                NO_UINTMAX_T = YesPlease
 233                NO_STRTOUMAX = YesPlease
 234        endif
 235        PYTHON_PATH = /usr/local/bin/python
 236        PERL_PATH = /usr/local/bin/perl
 237        HAVE_PATHS_H = YesPlease
 238        GMTIME_UNRELIABLE_ERRORS = UnfortunatelyYes
 239        HAVE_BSD_SYSCTL = YesPlease
 240        HAVE_BSD_KERN_PROC_SYSCTL = YesPlease
 241        PAGER_ENV = LESS=FRX LV=-c MORE=FRX
 242        FREAD_READS_DIRECTORIES = UnfortunatelyYes
 243        FILENO_IS_A_MACRO = UnfortunatelyYes
 244endif
 245ifeq ($(uname_S),OpenBSD)
 246        NO_STRCASESTR = YesPlease
 247        NO_MEMMEM = YesPlease
 248        USE_ST_TIMESPEC = YesPlease
 249        NEEDS_LIBICONV = YesPlease
 250        BASIC_CFLAGS += -I/usr/local/include
 251        BASIC_LDFLAGS += -L/usr/local/lib
 252        HAVE_PATHS_H = YesPlease
 253        HAVE_BSD_SYSCTL = YesPlease
 254        HAVE_BSD_KERN_PROC_SYSCTL = YesPlease
 255        PROCFS_EXECUTABLE_PATH = /proc/curproc/file
 256        FREAD_READS_DIRECTORIES = UnfortunatelyYes
 257        FILENO_IS_A_MACRO = UnfortunatelyYes
 258endif
 259ifeq ($(uname_S),MirBSD)
 260        NO_STRCASESTR = YesPlease
 261        NO_MEMMEM = YesPlease
 262        USE_ST_TIMESPEC = YesPlease
 263        NEEDS_LIBICONV = YesPlease
 264        HAVE_PATHS_H = YesPlease
 265        HAVE_BSD_SYSCTL = YesPlease
 266endif
 267ifeq ($(uname_S),NetBSD)
 268        ifeq ($(shell expr "$(uname_R)" : '[01]\.'),2)
 269                NEEDS_LIBICONV = YesPlease
 270        endif
 271        BASIC_CFLAGS += -I/usr/pkg/include
 272        BASIC_LDFLAGS += -L/usr/pkg/lib $(CC_LD_DYNPATH)/usr/pkg/lib
 273        USE_ST_TIMESPEC = YesPlease
 274        HAVE_PATHS_H = YesPlease
 275        HAVE_BSD_SYSCTL = YesPlease
 276        HAVE_BSD_KERN_PROC_SYSCTL = YesPlease
 277        PROCFS_EXECUTABLE_PATH = /proc/curproc/exe
 278endif
 279ifeq ($(uname_S),AIX)
 280        DEFAULT_PAGER = more
 281        NO_STRCASESTR = YesPlease
 282        NO_MEMMEM = YesPlease
 283        NO_MKDTEMP = YesPlease
 284        NO_STRLCPY = YesPlease
 285        NO_NSEC = YesPlease
 286        NO_REGEX = NeedsStartEnd
 287        FREAD_READS_DIRECTORIES = UnfortunatelyYes
 288        INTERNAL_QSORT = UnfortunatelyYes
 289        NEEDS_LIBICONV = YesPlease
 290        BASIC_CFLAGS += -D_LARGE_FILES
 291        FILENO_IS_A_MACRO = UnfortunatelyYes
 292        NEED_ACCESS_ROOT_HANDLER = UnfortunatelyYes
 293        ifeq ($(shell expr "$(uname_V)" : '[1234]'),1)
 294                NO_PTHREADS = YesPlease
 295        else
 296                PTHREAD_LIBS = -lpthread
 297        endif
 298        ifeq ($(shell expr "$(uname_V).$(uname_R)" : '5\.1'),3)
 299                INLINE = ''
 300        endif
 301        GIT_TEST_CMP = cmp
 302endif
 303ifeq ($(uname_S),GNU)
 304        # GNU/Hurd
 305        HAVE_ALLOCA_H = YesPlease
 306        NO_STRLCPY = YesPlease
 307        HAVE_PATHS_H = YesPlease
 308        LIBC_CONTAINS_LIBINTL = YesPlease
 309endif
 310ifeq ($(uname_S),IRIX)
 311        NO_SETENV = YesPlease
 312        NO_UNSETENV = YesPlease
 313        NO_STRCASESTR = YesPlease
 314        NO_MEMMEM = YesPlease
 315        NO_MKDTEMP = YesPlease
 316        # When compiled with the MIPSpro 7.4.4m compiler, and without pthreads
 317        # (i.e. NO_PTHREADS is set), and _with_ MMAP (i.e. NO_MMAP is not set),
 318        # git dies with a segmentation fault when trying to access the first
 319        # entry of a reflog.  The conservative choice is made to always set
 320        # NO_MMAP.  If you suspect that your compiler is not affected by this
 321        # issue, comment out the NO_MMAP statement.
 322        NO_MMAP = YesPlease
 323        NO_REGEX = YesPlease
 324        SNPRINTF_RETURNS_BOGUS = YesPlease
 325        SHELL_PATH = /usr/gnu/bin/bash
 326        NEEDS_LIBGEN = YesPlease
 327endif
 328ifeq ($(uname_S),IRIX64)
 329        NO_SETENV = YesPlease
 330        NO_UNSETENV = YesPlease
 331        NO_STRCASESTR = YesPlease
 332        NO_MEMMEM = YesPlease
 333        NO_MKDTEMP = YesPlease
 334        # When compiled with the MIPSpro 7.4.4m compiler, and without pthreads
 335        # (i.e. NO_PTHREADS is set), and _with_ MMAP (i.e. NO_MMAP is not set),
 336        # git dies with a segmentation fault when trying to access the first
 337        # entry of a reflog.  The conservative choice is made to always set
 338        # NO_MMAP.  If you suspect that your compiler is not affected by this
 339        # issue, comment out the NO_MMAP statement.
 340        NO_MMAP = YesPlease
 341        NO_REGEX = YesPlease
 342        SNPRINTF_RETURNS_BOGUS = YesPlease
 343        SHELL_PATH = /usr/gnu/bin/bash
 344        NEEDS_LIBGEN = YesPlease
 345endif
 346ifeq ($(uname_S),HP-UX)
 347        INLINE = __inline
 348        NO_IPV6 = YesPlease
 349        NO_SETENV = YesPlease
 350        NO_STRCASESTR = YesPlease
 351        NO_MEMMEM = YesPlease
 352        NO_STRLCPY = YesPlease
 353        NO_MKDTEMP = YesPlease
 354        NO_UNSETENV = YesPlease
 355        NO_HSTRERROR = YesPlease
 356        NO_SYS_SELECT_H = YesPlease
 357        SNPRINTF_RETURNS_BOGUS = YesPlease
 358        NO_NSEC = YesPlease
 359        ifeq ($(uname_R),B.11.00)
 360                NO_INET_NTOP = YesPlease
 361                NO_INET_PTON = YesPlease
 362        endif
 363        ifeq ($(uname_R),B.10.20)
 364                # Override HP-UX 11.x setting:
 365                INLINE =
 366                SOCKLEN_T = size_t
 367                NO_PREAD = YesPlease
 368                NO_INET_NTOP = YesPlease
 369                NO_INET_PTON = YesPlease
 370        endif
 371        GIT_TEST_CMP = cmp
 372endif
 373ifeq ($(uname_S),Windows)
 374        GIT_VERSION := $(GIT_VERSION).MSVC
 375        pathsep = ;
 376        # Assume that this is built in Git for Windows' SDK
 377        ifeq (MINGW32,$(MSYSTEM))
 378                prefix = /mingw32
 379        else
 380                prefix = /mingw64
 381        endif
 382        # Prepend MSVC 64-bit tool-chain to PATH.
 383        #
 384        # A regular Git Bash *does not* have cl.exe in its $PATH. As there is a
 385        # link.exe next to, and required by, cl.exe, we have to prepend this
 386        # onto the existing $PATH.
 387        #
 388        SANE_TOOL_PATH ?= $(msvc_bin_dir_msys)
 389        HAVE_ALLOCA_H = YesPlease
 390        NO_PREAD = YesPlease
 391        NEEDS_CRYPTO_WITH_SSL = YesPlease
 392        NO_LIBGEN_H = YesPlease
 393        NO_POLL = YesPlease
 394        NO_SYMLINK_HEAD = YesPlease
 395        NO_IPV6 = YesPlease
 396        NO_UNIX_SOCKETS = YesPlease
 397        NO_SETENV = YesPlease
 398        NO_STRCASESTR = YesPlease
 399        NO_STRLCPY = YesPlease
 400        NO_MEMMEM = YesPlease
 401        NEEDS_LIBICONV = YesPlease
 402        NO_STRTOUMAX = YesPlease
 403        NO_MKDTEMP = YesPlease
 404        NO_INTTYPES_H = YesPlease
 405        # VS2015 with UCRT claims that snprintf and friends are C99 compliant,
 406        # so we don't need this:
 407        #
 408        #   SNPRINTF_RETURNS_BOGUS = YesPlease
 409        NO_SVN_TESTS = YesPlease
 410        RUNTIME_PREFIX = YesPlease
 411        HAVE_WPGMPTR = YesWeDo
 412        NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
 413        USE_WIN32_MMAP = YesPlease
 414        MMAP_PREVENTS_DELETE = UnfortunatelyYes
 415        # USE_NED_ALLOCATOR = YesPlease
 416        UNRELIABLE_FSTAT = UnfortunatelyYes
 417        OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
 418        NO_REGEX = YesPlease
 419        NO_GETTEXT = YesPlease
 420        NO_PYTHON = YesPlease
 421        ETAGS_TARGET = ETAGS
 422        NO_POSIX_GOODIES = UnfortunatelyYes
 423        NATIVE_CRLF = YesPlease
 424        DEFAULT_HELP_FORMAT = html
 425
 426        CC = compat/vcbuild/scripts/clink.pl
 427        AR = compat/vcbuild/scripts/lib.pl
 428        CFLAGS =
 429        BASIC_CFLAGS = -nologo -I. -Icompat/vcbuild/include -DWIN32 -D_CONSOLE -DHAVE_STRING_H -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE
 430        COMPAT_OBJS = compat/msvc.o compat/winansi.o \
 431                compat/win32/path-utils.o \
 432                compat/win32/pthread.o compat/win32/syslog.o \
 433                compat/win32/trace2_win32_process_info.o \
 434                compat/win32/dirent.o
 435        COMPAT_CFLAGS = -D__USE_MINGW_ACCESS -DDETECT_MSYS_TTY -DNOGDI -DHAVE_STRING_H -Icompat -Icompat/regex -Icompat/win32 -DSTRIP_EXTENSION=\".exe\"
 436        BASIC_LDFLAGS = -IGNORE:4217 -IGNORE:4049 -NOLOGO -ENTRY:wmainCRTStartup -SUBSYSTEM:CONSOLE
 437        # invalidcontinue.obj allows Git's source code to close the same file
 438        # handle twice, or to access the osfhandle of an already-closed stdout
 439        # See https://msdn.microsoft.com/en-us/library/ms235330.aspx
 440        EXTLIBS = user32.lib advapi32.lib shell32.lib wininet.lib ws2_32.lib invalidcontinue.obj kernel32.lib ntdll.lib
 441        PTHREAD_LIBS =
 442        lib =
 443        BASIC_CFLAGS += $(vcpkg_inc) $(sdk_includes) $(msvc_includes)
 444ifndef DEBUG
 445        BASIC_CFLAGS += $(vcpkg_rel_lib)
 446else
 447        BASIC_CFLAGS += $(vcpkg_dbg_lib)
 448endif
 449        BASIC_CFLAGS += $(sdk_libs) $(msvc_libs)
 450
 451        BASIC_CFLAGS += -DPROTECT_NTFS_DEFAULT=1
 452        # Always give "-Zi" to the compiler and "-debug" to linker (even in
 453        # release mode) to force a PDB to be generated (like RelWithDebInfo).
 454        BASIC_CFLAGS += -Zi
 455        BASIC_LDFLAGS += -debug -Zf
 456
 457ifdef NO_SAFESEH
 458        LDFLAGS += -SAFESEH:NO
 459endif
 460
 461ifndef DEBUG
 462        BASIC_CFLAGS += -GL -Gy -O2 -Oy- -MD -DNDEBUG
 463        BASIC_LDFLAGS += -release -LTCG /OPT:REF /OPT:ICF /INCREMENTAL:NO /DEBUGTYPE:CV,FIXUP
 464        AR += -LTCG
 465else
 466        BASIC_CFLAGS += -MDd -DDEBUG -D_DEBUG
 467endif
 468        X = .exe
 469
 470compat/msvc.o: compat/msvc.c compat/mingw.c GIT-CFLAGS
 471endif
 472ifeq ($(uname_S),Interix)
 473        NO_INITGROUPS = YesPlease
 474        NO_IPV6 = YesPlease
 475        NO_MEMMEM = YesPlease
 476        NO_MKDTEMP = YesPlease
 477        NO_STRTOUMAX = YesPlease
 478        NO_NSEC = YesPlease
 479        ifeq ($(uname_R),3.5)
 480                NO_INET_NTOP = YesPlease
 481                NO_INET_PTON = YesPlease
 482                NO_SOCKADDR_STORAGE = YesPlease
 483        endif
 484        ifeq ($(uname_R),5.2)
 485                NO_INET_NTOP = YesPlease
 486                NO_INET_PTON = YesPlease
 487                NO_SOCKADDR_STORAGE = YesPlease
 488        endif
 489endif
 490ifeq ($(uname_S),Minix)
 491        NO_IPV6 = YesPlease
 492        NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
 493        NO_NSEC = YesPlease
 494        NEEDS_LIBGEN =
 495        NEEDS_CRYPTO_WITH_SSL = YesPlease
 496        NEEDS_RESOLV =
 497        NO_HSTRERROR = YesPlease
 498        NO_MMAP = YesPlease
 499        NO_CURL =
 500        NO_EXPAT =
 501endif
 502ifeq ($(uname_S),NONSTOP_KERNEL)
 503        # Needs some C99 features, "inline" is just one of them.
 504        # INLINE='' would just replace one set of warnings with another and
 505        # still not compile in c89 mode, due to non-const array initializations.
 506        CC = cc -c99
 507        # Build down-rev compatible objects that don't use our new getopt_long.
 508        ifeq ($(uname_R).$(uname_V),J06.21)
 509                CC += -WRVU=J06.20
 510        endif
 511        ifeq ($(uname_R).$(uname_V),L17.02)
 512                CC += -WRVU=L16.05
 513        endif
 514        # Disable all optimization, seems to result in bad code, with -O or -O2
 515        # or even -O1 (default), /usr/local/libexec/git-core/git-pack-objects
 516        # abends on "git push". Needs more investigation.
 517        CFLAGS = -g -O0 -Winline
 518        # We'd want it to be here.
 519        prefix = /usr/local
 520        # perl and python must be in /usr/bin on NonStop - supplied by HPE
 521        # with operating system in that managed directory.
 522        PERL_PATH = /usr/bin/perl
 523        PYTHON_PATH = /usr/bin/python
 524        # The current /usr/coreutils/rm at lowest support level does not work
 525        # with the git test structure. Long paths as in
 526        # 'trash directory...' cause rm to terminate prematurely without fully
 527        # removing the directory at OS releases J06.21 and L17.02.
 528        # Default to the older rm until those two releases are deprecated.
 529        RM = /bin/rm -f
 530        # As detected by './configure'.
 531        # Missdetected, hence commented out, see below.
 532        #NO_CURL = YesPlease
 533        # Added manually, see above.
 534        NEEDS_SSL_WITH_CURL = YesPlease
 535        NEEDS_CRYPTO_WITH_SSL = YesPlease
 536        HAVE_DEV_TTY = YesPlease
 537        HAVE_LIBCHARSET_H = YesPlease
 538        HAVE_STRINGS_H = YesPlease
 539        NEEDS_LIBICONV = YesPlease
 540        NEEDS_LIBINTL_BEFORE_LIBICONV = YesPlease
 541        NO_SYS_SELECT_H = UnfortunatelyYes
 542        NO_D_TYPE_IN_DIRENT = YesPlease
 543        NO_GETTEXT = YesPlease
 544        NO_HSTRERROR = YesPlease
 545        NO_STRCASESTR = YesPlease
 546        NO_MEMMEM = YesPlease
 547        NO_STRLCPY = YesPlease
 548        NO_SETENV = YesPlease
 549        NO_UNSETENV = YesPlease
 550        NO_MKDTEMP = YesPlease
 551        # Currently libiconv-1.9.1.
 552        OLD_ICONV = UnfortunatelyYes
 553        NO_REGEX = NeedsStartEnd
 554        NO_PTHREADS = UnfortunatelyYes
 555        FREAD_READS_DIRECTORIES = UnfortunatelyYes
 556
 557        # Not detected (nor checked for) by './configure'.
 558        # We don't have SA_RESTART on NonStop, unfortunalety.
 559        COMPAT_CFLAGS += -DSA_RESTART=0
 560        # Apparently needed in compat/fnmatch/fnmatch.c.
 561        COMPAT_CFLAGS += -DHAVE_STRING_H=1
 562        NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
 563        NO_NSEC = YesPlease
 564        NO_PREAD = YesPlease
 565        NO_MMAP = YesPlease
 566        NO_POLL = YesPlease
 567        NO_INTPTR_T = UnfortunatelyYes
 568        # Bug report 10-120822-4477 submitted to HP NonStop development.
 569        MKDIR_WO_TRAILING_SLASH = YesPlease
 570        # RFE 10-120912-4693 submitted to HP NonStop development.
 571        NO_SETITIMER = UnfortunatelyYes
 572        SANE_TOOL_PATH = /usr/coreutils/bin:/usr/local/bin
 573        SHELL_PATH = /usr/coreutils/bin/bash
 574endif
 575ifneq (,$(findstring MINGW,$(uname_S)))
 576        pathsep = ;
 577        HAVE_ALLOCA_H = YesPlease
 578        NO_PREAD = YesPlease
 579        NEEDS_CRYPTO_WITH_SSL = YesPlease
 580        NO_LIBGEN_H = YesPlease
 581        NO_POLL = YesPlease
 582        NO_SYMLINK_HEAD = YesPlease
 583        NO_UNIX_SOCKETS = YesPlease
 584        NO_SETENV = YesPlease
 585        NO_STRCASESTR = YesPlease
 586        NO_STRLCPY = YesPlease
 587        NO_MEMMEM = YesPlease
 588        NEEDS_LIBICONV = YesPlease
 589        NO_STRTOUMAX = YesPlease
 590        NO_MKDTEMP = YesPlease
 591        NO_SVN_TESTS = YesPlease
 592        RUNTIME_PREFIX = YesPlease
 593        HAVE_WPGMPTR = YesWeDo
 594        NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
 595        USE_WIN32_MMAP = YesPlease
 596        MMAP_PREVENTS_DELETE = UnfortunatelyYes
 597        USE_NED_ALLOCATOR = YesPlease
 598        UNRELIABLE_FSTAT = UnfortunatelyYes
 599        OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
 600        NO_REGEX = YesPlease
 601        NO_PYTHON = YesPlease
 602        ETAGS_TARGET = ETAGS
 603        NO_POSIX_GOODIES = UnfortunatelyYes
 604        DEFAULT_HELP_FORMAT = html
 605        BASIC_LDFLAGS += -municode
 606        COMPAT_CFLAGS += -DNOGDI -Icompat -Icompat/win32
 607        COMPAT_CFLAGS += -DSTRIP_EXTENSION=\".exe\"
 608        COMPAT_OBJS += compat/mingw.o compat/winansi.o \
 609                compat/win32/trace2_win32_process_info.o \
 610                compat/win32/path-utils.o \
 611                compat/win32/pthread.o compat/win32/syslog.o \
 612                compat/win32/dirent.o
 613        BASIC_CFLAGS += -DWIN32 -DPROTECT_NTFS_DEFAULT=1
 614        EXTLIBS += -lws2_32
 615        GITLIBS += git.res
 616        PTHREAD_LIBS =
 617        RC = windres -O coff
 618        NATIVE_CRLF = YesPlease
 619        X = .exe
 620ifneq (,$(wildcard ../THIS_IS_MSYSGIT))
 621        htmldir = doc/git/html/
 622        prefix =
 623        INSTALL = /bin/install
 624        EXTLIBS += /mingw/lib/libz.a
 625        NO_R_TO_GCC_LINKER = YesPlease
 626        INTERNAL_QSORT = YesPlease
 627        HAVE_LIBCHARSET_H = YesPlease
 628        NO_GETTEXT = YesPlease
 629        COMPAT_CFLAGS += -D__USE_MINGW_ACCESS
 630else
 631        ifneq ($(shell expr "$(uname_R)" : '1\.'),2)
 632                # MSys2
 633                prefix = /usr/
 634                # Enable DEP
 635                BASIC_LDFLAGS += -Wl,--nxcompat
 636                # Enable ASLR (unless debugging)
 637                ifneq (,$(findstring -O,$(filter-out -O0 -Og,$(CFLAGS))))
 638                        BASIC_LDFLAGS += -Wl,--dynamicbase
 639                endif
 640                ifeq (MINGW32,$(MSYSTEM))
 641                        prefix = /mingw32
 642                        HOST_CPU = i686
 643                        BASIC_LDFLAGS += -Wl,--pic-executable,-e,_mainCRTStartup
 644                endif
 645                ifeq (MINGW64,$(MSYSTEM))
 646                        prefix = /mingw64
 647                        HOST_CPU = x86_64
 648                        BASIC_LDFLAGS += -Wl,--pic-executable,-e,mainCRTStartup
 649                else
 650                        COMPAT_CFLAGS += -D_USE_32BIT_TIME_T
 651                        BASIC_LDFLAGS += -Wl,--large-address-aware
 652                endif
 653                CC = gcc
 654                COMPAT_CFLAGS += -D__USE_MINGW_ANSI_STDIO=0 -DDETECT_MSYS_TTY
 655                EXTLIBS += -lntdll
 656                INSTALL = /bin/install
 657                NO_R_TO_GCC_LINKER = YesPlease
 658                INTERNAL_QSORT = YesPlease
 659                HAVE_LIBCHARSET_H = YesPlease
 660                NO_GETTEXT =
 661                USE_GETTEXT_SCHEME = fallthrough
 662                USE_LIBPCRE= YesPlease
 663                NO_LIBPCRE1_JIT = UnfortunatelyYes
 664                NO_CURL =
 665                USE_NED_ALLOCATOR = YesPlease
 666        else
 667                COMPAT_CFLAGS += -D__USE_MINGW_ANSI_STDIO
 668                NO_CURL = YesPlease
 669        endif
 670endif
 671endif
 672ifeq ($(uname_S),QNX)
 673        COMPAT_CFLAGS += -DSA_RESTART=0
 674        EXPAT_NEEDS_XMLPARSE_H = YesPlease
 675        HAVE_STRINGS_H = YesPlease
 676        NEEDS_SOCKET = YesPlease
 677        NO_GETPAGESIZE = YesPlease
 678        NO_ICONV = YesPlease
 679        NO_MEMMEM = YesPlease
 680        NO_MKDTEMP = YesPlease
 681        NO_NSEC = YesPlease
 682        NO_PTHREADS = YesPlease
 683        NO_R_TO_GCC_LINKER = YesPlease
 684        NO_STRCASESTR = YesPlease
 685        NO_STRLCPY = YesPlease
 686endif