]> git.ipfire.org Git - thirdparty/git.git/blame - config.mak.uname
fsmonitor-settings: stub in macOS-specific incompatibility checking
[thirdparty/git.git] / config.mak.uname
CommitLineData
e1b6dbb5
JK
1# Platform specific Makefile tweaks based on uname detection
2
dce7d295
JH
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
e1b6dbb5
JK
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
ebd2e4a1
CMAB
14ifneq ($(findstring MINGW,$(uname_S)),)
15 uname_S := MINGW
16endif
17
e1b6dbb5
JK
18ifdef MSVC
19 # avoid the MingW and Cygwin configuration sections
20 uname_S := Windows
21 uname_O := Windows
dce7d295
JH
22
23 # Generate and include makefile variables that point to the
24 # currently installed set of MSVC command line tools.
25compat/vcbuild/MSVC-DEFS-GEN: compat/vcbuild/find_vs_env.bat
26 @"$<" | tr '\\' / >"$@"
27include compat/vcbuild/MSVC-DEFS-GEN
28
29 # See if vcpkg and the vcpkg-build versions of the third-party
30 # libraries that we use are installed. We include the result
31 # to get $(vcpkg_*) variables defined for the Makefile.
976aaedc 32ifeq (,$(SKIP_VCPKG))
dce7d295
JH
33compat/vcbuild/VCPKG-DEFS: compat/vcbuild/vcpkg_install.bat
34 @"$<"
35include compat/vcbuild/VCPKG-DEFS
e1b6dbb5 36endif
976aaedc 37endif
e1b6dbb5
JK
38
39# We choose to avoid "if .. else if .. else .. endif endif"
40# because maintaining the nesting to match is a pain. If
41# we had "elif" things would have been much nicer...
42
e1b6dbb5
JK
43ifeq ($(uname_S),OSF1)
44 # Need this for u_short definitions et al
45 BASIC_CFLAGS += -D_OSF_SOURCE
46 SOCKLEN_T = int
47 NO_STRTOULL = YesPlease
48 NO_NSEC = YesPlease
49endif
50ifeq ($(uname_S),Linux)
61f76a36 51 HAVE_ALLOCA_H = YesPlease
e1b6dbb5 52 NO_STRLCPY = YesPlease
e1b6dbb5
JK
53 HAVE_PATHS_H = YesPlease
54 LIBC_CONTAINS_LIBINTL = YesPlease
55 HAVE_DEV_TTY = YesPlease
148d6771 56 HAVE_CLOCK_GETTIME = YesPlease
a6c3c638 57 HAVE_CLOCK_MONOTONIC = YesPlease
52fcec75
EW
58 # -lrt is needed for clock_gettime on glibc <= 2.16
59 NEEDS_LIBRT = YesPlease
0cc30e0e 60 HAVE_GETDELIM = YesPlease
e2d90fd1 61 FREAD_READS_DIRECTORIES = UnfortunatelyYes
9806f5a7 62 BASIC_CFLAGS += -DHAVE_SYSINFO
226c0ddd 63 PROCFS_EXECUTABLE_PATH = /proc/self/exe
2f732bf1
ES
64 HAVE_PLATFORM_PROCINFO = YesPlease
65 COMPAT_OBJS += compat/linux/procinfo.o
ffb9f298
DA
66 # centos7/rhel7 provides gcc 4.8.5 and zlib 1.2.7.
67 ifneq ($(findstring .el7.,$(uname_R)),)
68 BASIC_CFLAGS += -std=c99
ffb9f298 69 endif
e1b6dbb5
JK
70endif
71ifeq ($(uname_S),GNU/kFreeBSD)
61f76a36 72 HAVE_ALLOCA_H = YesPlease
e1b6dbb5 73 NO_STRLCPY = YesPlease
e1b6dbb5
JK
74 HAVE_PATHS_H = YesPlease
75 DIR_HAS_BSD_GROUP_SEMANTICS = YesPlease
76 LIBC_CONTAINS_LIBINTL = YesPlease
e2d90fd1 77 FREAD_READS_DIRECTORIES = UnfortunatelyYes
e1b6dbb5
JK
78endif
79ifeq ($(uname_S),UnixWare)
80 CC = cc
81 NEEDS_SOCKET = YesPlease
82 NEEDS_NSL = YesPlease
83 NEEDS_SSL_WITH_CRYPTO = YesPlease
84 NEEDS_LIBICONV = YesPlease
85 SHELL_PATH = /usr/local/bin/bash
86 NO_IPV6 = YesPlease
87 NO_HSTRERROR = YesPlease
e1b6dbb5
JK
88 BASIC_CFLAGS += -Kthread
89 BASIC_CFLAGS += -I/usr/local/include
90 BASIC_LDFLAGS += -L/usr/local/lib
91 INSTALL = ginstall
92 TAR = gtar
93 NO_STRCASESTR = YesPlease
94 NO_MEMMEM = YesPlease
95endif
96ifeq ($(uname_S),SCO_SV)
97 ifeq ($(uname_R),3.2)
98 CFLAGS = -O2
99 endif
100 ifeq ($(uname_R),5)
101 CC = cc
102 BASIC_CFLAGS += -Kthread
103 endif
104 NEEDS_SOCKET = YesPlease
105 NEEDS_NSL = YesPlease
106 NEEDS_SSL_WITH_CRYPTO = YesPlease
107 NEEDS_LIBICONV = YesPlease
108 SHELL_PATH = /usr/bin/bash
109 NO_IPV6 = YesPlease
110 NO_HSTRERROR = YesPlease
e1b6dbb5
JK
111 BASIC_CFLAGS += -I/usr/local/include
112 BASIC_LDFLAGS += -L/usr/local/lib
113 NO_STRCASESTR = YesPlease
114 NO_MEMMEM = YesPlease
115 INSTALL = ginstall
116 TAR = gtar
117endif
118ifeq ($(uname_S),Darwin)
119 NEEDS_CRYPTO_WITH_SSL = YesPlease
120 NEEDS_SSL_WITH_CRYPTO = YesPlease
121 NEEDS_LIBICONV = YesPlease
9eeff2f6
JH
122 # Note: $(uname_R) gives us the underlying Darwin version.
123 # - MacOS 10.0.* and MacOS 10.1.0 = Darwin 1.*
124 # - MacOS 10.x.* = Darwin (x+4).* for (1 <= x)
125 # i.e. "begins with [15678] and a dot" means "10.4.* or older".
e1b6dbb5
JK
126 ifeq ($(shell expr "$(uname_R)" : '[15678]\.'),2)
127 OLD_ICONV = UnfortunatelyYes
9c7a0bee 128 NO_APPLE_COMMON_CRYPTO = YesPlease
e1b6dbb5
JK
129 endif
130 ifeq ($(shell expr "$(uname_R)" : '[15]\.'),2)
131 NO_STRLCPY = YesPlease
132 endif
4e368785
ES
133 ifeq ($(shell test "`expr "$(uname_R)" : '\([0-9][0-9]*\)\.'`" -ge 11 && echo 1),1)
134 HAVE_GETDELIM = YesPlease
135 endif
bbabaad2
JK
136 ifeq ($(shell test "`expr "$(uname_R)" : '\([0-9][0-9]*\)\.'`" -ge 20 && echo 1),1)
137 OPEN_RETURNS_EINTR = UnfortunatelyYes
138 endif
e1b6dbb5
JK
139 NO_MEMMEM = YesPlease
140 USE_ST_TIMESPEC = YesPlease
141 HAVE_DEV_TTY = YesPlease
142 COMPAT_OBJS += compat/precompose_utf8.o
143 BASIC_CFLAGS += -DPRECOMPOSE_UNICODE
a42643aa 144 BASIC_CFLAGS += -DPROTECT_HFS_DEFAULT=1
9529080d 145 HAVE_BSD_SYSCTL = YesPlease
8e178ec4 146 FREAD_READS_DIRECTORIES = UnfortunatelyYes
226c0ddd 147 HAVE_NS_GET_EXECUTABLE_PATH = YesPlease
05cd988d 148 CSPRNG_METHOD = arc4random
a0b31086
JS
149
150 # Workaround for `gettext` being keg-only and not even being linked via
151 # `brew link --force gettext`, should be obsolete as of
152 # https://github.com/Homebrew/homebrew-core/pull/53489
153 ifeq ($(shell test -d /usr/local/opt/gettext/ && echo y),y)
154 BASIC_CFLAGS += -I/usr/local/include -I/usr/local/opt/gettext/include
155 BASIC_LDFLAGS += -L/usr/local/lib -L/usr/local/opt/gettext/lib
156 ifeq ($(shell test -x /usr/local/opt/gettext/bin/msgfmt && echo y),y)
157 MSGFMT = /usr/local/opt/gettext/bin/msgfmt
158 endif
159 endif
f67df255
JH
160
161 # The builtin FSMonitor on MacOS builds upon Simple-IPC. Both require
162 # Unix domain sockets and PThreads.
163 ifndef NO_PTHREADS
164 ifndef NO_UNIX_SOCKETS
165 FSMONITOR_DAEMON_BACKEND = darwin
a85ad67b 166 FSMONITOR_OS_SETTINGS = darwin
f67df255
JH
167 endif
168 endif
169
170 BASIC_LDFLAGS += -framework CoreServices
e1b6dbb5
JK
171endif
172ifeq ($(uname_S),SunOS)
173 NEEDS_SOCKET = YesPlease
174 NEEDS_NSL = YesPlease
175 SHELL_PATH = /bin/bash
176 SANE_TOOL_PATH = /usr/xpg6/bin:/usr/xpg4/bin
61f76a36 177 HAVE_ALLOCA_H = YesPlease
e1b6dbb5
JK
178 NO_STRCASESTR = YesPlease
179 NO_MEMMEM = YesPlease
180 NO_MKDTEMP = YesPlease
e1b6dbb5 181 NO_REGEX = YesPlease
e1b6dbb5
JK
182 NO_MSGFMT_EXTENDED_OPTIONS = YesPlease
183 HAVE_DEV_TTY = YesPlease
184 ifeq ($(uname_R),5.6)
185 SOCKLEN_T = int
186 NO_HSTRERROR = YesPlease
187 NO_IPV6 = YesPlease
188 NO_SOCKADDR_STORAGE = YesPlease
189 NO_UNSETENV = YesPlease
190 NO_SETENV = YesPlease
191 NO_STRLCPY = YesPlease
192 NO_STRTOUMAX = YesPlease
193 GIT_TEST_CMP = cmp
194 endif
195 ifeq ($(uname_R),5.7)
196 NEEDS_RESOLV = YesPlease
197 NO_IPV6 = YesPlease
198 NO_SOCKADDR_STORAGE = YesPlease
199 NO_UNSETENV = YesPlease
200 NO_SETENV = YesPlease
201 NO_STRLCPY = YesPlease
202 NO_STRTOUMAX = YesPlease
203 GIT_TEST_CMP = cmp
204 endif
205 ifeq ($(uname_R),5.8)
206 NO_UNSETENV = YesPlease
207 NO_SETENV = YesPlease
208 NO_STRTOUMAX = YesPlease
209 GIT_TEST_CMP = cmp
210 endif
211 ifeq ($(uname_R),5.9)
212 NO_UNSETENV = YesPlease
213 NO_SETENV = YesPlease
214 NO_STRTOUMAX = YesPlease
215 GIT_TEST_CMP = cmp
216 endif
217 INSTALL = /usr/ucb/install
218 TAR = gtar
61f76a36 219 BASIC_CFLAGS += -D__EXTENSIONS__ -D__sun__
e1b6dbb5
JK
220endif
221ifeq ($(uname_O),Cygwin)
222 ifeq ($(shell expr "$(uname_R)" : '1\.[1-6]\.'),4)
223 NO_D_TYPE_IN_DIRENT = YesPlease
e1b6dbb5
JK
224 NO_STRCASESTR = YesPlease
225 NO_MEMMEM = YesPlease
e1b6dbb5
JK
226 NO_SYMLINK_HEAD = YesPlease
227 NO_IPV6 = YesPlease
228 OLD_ICONV = UnfortunatelyYes
f593ef77
ML
229 # There are conflicting reports about this.
230 # On some boxes NO_MMAP is needed, and not so elsewhere.
231 # Try commenting this out if you suspect MMAP is more efficient
232 NO_MMAP = YesPlease
92f63d2b
ML
233 else
234 NO_REGEX = UnfortunatelyYes
e1b6dbb5 235 endif
61f76a36 236 HAVE_ALLOCA_H = YesPlease
e1b6dbb5
JK
237 NEEDS_LIBICONV = YesPlease
238 NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes
e1b6dbb5 239 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
e1b6dbb5 240 X = .exe
e1b6dbb5 241 UNRELIABLE_FSTAT = UnfortunatelyYes
e53a64b9 242 OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
5b633610 243 MMAP_PREVENTS_DELETE = UnfortunatelyYes
1cadad6f 244 COMPAT_OBJS += compat/win32/path-utils.o
a5956d6a 245 FREAD_READS_DIRECTORIES = UnfortunatelyYes
e1b6dbb5
JK
246endif
247ifeq ($(uname_S),FreeBSD)
248 NEEDS_LIBICONV = YesPlease
6c6ce21b
ES
249 # Versions up to 10.1 require OLD_ICONV; 10.2 and beyond don't.
250 # A typical version string looks like "10.2-RELEASE".
251 ifeq ($(shell expr "$(uname_R)" : '[1-9]\.'),2)
252 OLD_ICONV = YesPlease
253 endif
254 ifeq ($(firstword $(subst -, ,$(uname_R))),10.0)
255 OLD_ICONV = YesPlease
256 endif
257 ifeq ($(firstword $(subst -, ,$(uname_R))),10.1)
258 OLD_ICONV = YesPlease
259 endif
e1b6dbb5
JK
260 NO_MEMMEM = YesPlease
261 BASIC_CFLAGS += -I/usr/local/include
262 BASIC_LDFLAGS += -L/usr/local/lib
263 DIR_HAS_BSD_GROUP_SEMANTICS = YesPlease
264 USE_ST_TIMESPEC = YesPlease
265 ifeq ($(shell expr "$(uname_R)" : '4\.'),2)
266 PTHREAD_LIBS = -pthread
267 NO_UINTMAX_T = YesPlease
268 NO_STRTOUMAX = YesPlease
269 endif
270 PYTHON_PATH = /usr/local/bin/python
259f22af 271 PERL_PATH = /usr/local/bin/perl
e1b6dbb5 272 HAVE_PATHS_H = YesPlease
9529080d 273 HAVE_BSD_SYSCTL = YesPlease
226c0ddd 274 HAVE_BSD_KERN_PROC_SYSCTL = YesPlease
05cd988d 275 CSPRNG_METHOD = arc4random
995bc22d 276 PAGER_ENV = LESS=FRX LV=-c MORE=FRX
e2d90fd1 277 FREAD_READS_DIRECTORIES = UnfortunatelyYes
18a4f6be 278 FILENO_IS_A_MACRO = UnfortunatelyYes
e1b6dbb5
JK
279endif
280ifeq ($(uname_S),OpenBSD)
281 NO_STRCASESTR = YesPlease
282 NO_MEMMEM = YesPlease
283 USE_ST_TIMESPEC = YesPlease
284 NEEDS_LIBICONV = YesPlease
285 BASIC_CFLAGS += -I/usr/local/include
286 BASIC_LDFLAGS += -L/usr/local/lib
287 HAVE_PATHS_H = YesPlease
9529080d 288 HAVE_BSD_SYSCTL = YesPlease
226c0ddd 289 HAVE_BSD_KERN_PROC_SYSCTL = YesPlease
05cd988d 290 CSPRNG_METHOD = arc4random
226c0ddd 291 PROCFS_EXECUTABLE_PATH = /proc/curproc/file
4e3ecbd4 292 FREAD_READS_DIRECTORIES = UnfortunatelyYes
18a4f6be 293 FILENO_IS_A_MACRO = UnfortunatelyYes
92164af9
BS
294endif
295ifeq ($(uname_S),MirBSD)
296 NO_STRCASESTR = YesPlease
297 NO_MEMMEM = YesPlease
298 USE_ST_TIMESPEC = YesPlease
299 NEEDS_LIBICONV = YesPlease
300 HAVE_PATHS_H = YesPlease
9529080d 301 HAVE_BSD_SYSCTL = YesPlease
05cd988d 302 CSPRNG_METHOD = arc4random
e1b6dbb5
JK
303endif
304ifeq ($(uname_S),NetBSD)
305 ifeq ($(shell expr "$(uname_R)" : '[01]\.'),2)
306 NEEDS_LIBICONV = YesPlease
307 endif
308 BASIC_CFLAGS += -I/usr/pkg/include
309 BASIC_LDFLAGS += -L/usr/pkg/lib $(CC_LD_DYNPATH)/usr/pkg/lib
310 USE_ST_TIMESPEC = YesPlease
e1b6dbb5 311 HAVE_PATHS_H = YesPlease
9529080d 312 HAVE_BSD_SYSCTL = YesPlease
226c0ddd 313 HAVE_BSD_KERN_PROC_SYSCTL = YesPlease
05cd988d 314 CSPRNG_METHOD = arc4random
226c0ddd 315 PROCFS_EXECUTABLE_PATH = /proc/curproc/exe
e1b6dbb5
JK
316endif
317ifeq ($(uname_S),AIX)
318 DEFAULT_PAGER = more
319 NO_STRCASESTR = YesPlease
320 NO_MEMMEM = YesPlease
321 NO_MKDTEMP = YesPlease
e1b6dbb5
JK
322 NO_STRLCPY = YesPlease
323 NO_NSEC = YesPlease
0e6d899f 324 NO_REGEX = NeedsStartEnd
e1b6dbb5
JK
325 FREAD_READS_DIRECTORIES = UnfortunatelyYes
326 INTERNAL_QSORT = UnfortunatelyYes
327 NEEDS_LIBICONV = YesPlease
328 BASIC_CFLAGS += -D_LARGE_FILES
ee662bf5 329 FILENO_IS_A_MACRO = UnfortunatelyYes
400caafb 330 NEED_ACCESS_ROOT_HANDLER = UnfortunatelyYes
e1b6dbb5
JK
331 ifeq ($(shell expr "$(uname_V)" : '[1234]'),1)
332 NO_PTHREADS = YesPlease
333 else
334 PTHREAD_LIBS = -lpthread
335 endif
336 ifeq ($(shell expr "$(uname_V).$(uname_R)" : '5\.1'),3)
337 INLINE = ''
338 endif
339 GIT_TEST_CMP = cmp
340endif
341ifeq ($(uname_S),GNU)
342 # GNU/Hurd
61f76a36 343 HAVE_ALLOCA_H = YesPlease
e1b6dbb5 344 NO_STRLCPY = YesPlease
e1b6dbb5
JK
345 HAVE_PATHS_H = YesPlease
346 LIBC_CONTAINS_LIBINTL = YesPlease
274a1328 347 FREAD_READS_DIRECTORIES = UnfortunatelyYes
e1b6dbb5
JK
348endif
349ifeq ($(uname_S),IRIX)
350 NO_SETENV = YesPlease
351 NO_UNSETENV = YesPlease
352 NO_STRCASESTR = YesPlease
353 NO_MEMMEM = YesPlease
e1b6dbb5
JK
354 NO_MKDTEMP = YesPlease
355 # When compiled with the MIPSpro 7.4.4m compiler, and without pthreads
356 # (i.e. NO_PTHREADS is set), and _with_ MMAP (i.e. NO_MMAP is not set),
357 # git dies with a segmentation fault when trying to access the first
358 # entry of a reflog. The conservative choice is made to always set
359 # NO_MMAP. If you suspect that your compiler is not affected by this
360 # issue, comment out the NO_MMAP statement.
361 NO_MMAP = YesPlease
362 NO_REGEX = YesPlease
e1b6dbb5
JK
363 SNPRINTF_RETURNS_BOGUS = YesPlease
364 SHELL_PATH = /usr/gnu/bin/bash
365 NEEDS_LIBGEN = YesPlease
366endif
367ifeq ($(uname_S),IRIX64)
368 NO_SETENV = YesPlease
369 NO_UNSETENV = YesPlease
370 NO_STRCASESTR = YesPlease
371 NO_MEMMEM = YesPlease
e1b6dbb5
JK
372 NO_MKDTEMP = YesPlease
373 # When compiled with the MIPSpro 7.4.4m compiler, and without pthreads
374 # (i.e. NO_PTHREADS is set), and _with_ MMAP (i.e. NO_MMAP is not set),
375 # git dies with a segmentation fault when trying to access the first
376 # entry of a reflog. The conservative choice is made to always set
377 # NO_MMAP. If you suspect that your compiler is not affected by this
378 # issue, comment out the NO_MMAP statement.
379 NO_MMAP = YesPlease
380 NO_REGEX = YesPlease
e1b6dbb5
JK
381 SNPRINTF_RETURNS_BOGUS = YesPlease
382 SHELL_PATH = /usr/gnu/bin/bash
383 NEEDS_LIBGEN = YesPlease
384endif
385ifeq ($(uname_S),HP-UX)
386 INLINE = __inline
387 NO_IPV6 = YesPlease
388 NO_SETENV = YesPlease
389 NO_STRCASESTR = YesPlease
390 NO_MEMMEM = YesPlease
e1b6dbb5
JK
391 NO_STRLCPY = YesPlease
392 NO_MKDTEMP = YesPlease
393 NO_UNSETENV = YesPlease
394 NO_HSTRERROR = YesPlease
395 NO_SYS_SELECT_H = YesPlease
e1b6dbb5
JK
396 SNPRINTF_RETURNS_BOGUS = YesPlease
397 NO_NSEC = YesPlease
398 ifeq ($(uname_R),B.11.00)
399 NO_INET_NTOP = YesPlease
400 NO_INET_PTON = YesPlease
401 endif
402 ifeq ($(uname_R),B.10.20)
403 # Override HP-UX 11.x setting:
404 INLINE =
405 SOCKLEN_T = size_t
406 NO_PREAD = YesPlease
407 NO_INET_NTOP = YesPlease
408 NO_INET_PTON = YesPlease
409 endif
410 GIT_TEST_CMP = cmp
411endif
412ifeq ($(uname_S),Windows)
413 GIT_VERSION := $(GIT_VERSION).MSVC
414 pathsep = ;
dce7d295
JH
415 # Assume that this is built in Git for Windows' SDK
416 ifeq (MINGW32,$(MSYSTEM))
417 prefix = /mingw32
418 else
419 prefix = /mingw64
420 endif
421 # Prepend MSVC 64-bit tool-chain to PATH.
422 #
423 # A regular Git Bash *does not* have cl.exe in its $PATH. As there is a
424 # link.exe next to, and required by, cl.exe, we have to prepend this
425 # onto the existing $PATH.
426 #
427 SANE_TOOL_PATH ?= $(msvc_bin_dir_msys)
61f76a36 428 HAVE_ALLOCA_H = YesPlease
e1b6dbb5
JK
429 NO_PREAD = YesPlease
430 NEEDS_CRYPTO_WITH_SSL = YesPlease
431 NO_LIBGEN_H = YesPlease
432 NO_POLL = YesPlease
433 NO_SYMLINK_HEAD = YesPlease
434 NO_IPV6 = YesPlease
435 NO_UNIX_SOCKETS = YesPlease
436 NO_SETENV = YesPlease
e1b6dbb5
JK
437 NO_STRCASESTR = YesPlease
438 NO_STRLCPY = YesPlease
e1b6dbb5 439 NO_MEMMEM = YesPlease
dce7d295 440 NEEDS_LIBICONV = YesPlease
e1b6dbb5 441 NO_STRTOUMAX = YesPlease
e1b6dbb5 442 NO_MKDTEMP = YesPlease
dce7d295 443 NO_INTTYPES_H = YesPlease
05cd988d 444 CSPRNG_METHOD = rtlgenrandom
dce7d295
JH
445 # VS2015 with UCRT claims that snprintf and friends are C99 compliant,
446 # so we don't need this:
447 #
448 # SNPRINTF_RETURNS_BOGUS = YesPlease
62c73671
JH
449
450 # The builtin FSMonitor requires Named Pipes and Threads on Windows.
451 # These are always available, so we do not have to conditionally
452 # support it.
453 FSMONITOR_DAEMON_BACKEND = win32
d33c804d
JH
454 FSMONITOR_OS_SETTINGS = win32
455
e1b6dbb5 456 NO_SVN_TESTS = YesPlease
e1b6dbb5 457 RUNTIME_PREFIX = YesPlease
86e25458 458 HAVE_WPGMPTR = YesWeDo
e1b6dbb5 459 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
59c7b881 460 USE_WIN32_IPC = YesPlease
e1b6dbb5 461 USE_WIN32_MMAP = YesPlease
5b633610 462 MMAP_PREVENTS_DELETE = UnfortunatelyYes
e1b6dbb5
JK
463 # USE_NED_ALLOCATOR = YesPlease
464 UNRELIABLE_FSTAT = UnfortunatelyYes
465 OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
466 NO_REGEX = YesPlease
bad866a2 467 NO_GETTEXT = YesPlease
e1b6dbb5 468 NO_PYTHON = YesPlease
e0492c5b 469 ETAGS_TARGET = ETAGS
e1b6dbb5
JK
470 NO_POSIX_GOODIES = UnfortunatelyYes
471 NATIVE_CRLF = YesPlease
472 DEFAULT_HELP_FORMAT = html
fb5e3378
JS
473ifeq (/mingw64,$(subst 32,64,$(prefix)))
474 # Move system config into top-level /etc/
475 ETC_GITCONFIG = ../etc/gitconfig
476 ETC_GITATTRIBUTES = ../etc/gitattributes
477endif
e1b6dbb5
JK
478
479 CC = compat/vcbuild/scripts/clink.pl
480 AR = compat/vcbuild/scripts/lib.pl
481 CFLAGS =
dce7d295 482 BASIC_CFLAGS = -nologo -I. -Icompat/vcbuild/include -DWIN32 -D_CONSOLE -DHAVE_STRING_H -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE
e1b6dbb5 483 COMPAT_OBJS = compat/msvc.o compat/winansi.o \
22c3634c 484 compat/win32/path-utils.o \
e1b6dbb5 485 compat/win32/pthread.o compat/win32/syslog.o \
353d3d77 486 compat/win32/trace2_win32_process_info.o \
e1b6dbb5 487 compat/win32/dirent.o
dce7d295 488 COMPAT_CFLAGS = -D__USE_MINGW_ACCESS -DDETECT_MSYS_TTY -DNOGDI -DHAVE_STRING_H -Icompat -Icompat/regex -Icompat/win32 -DSTRIP_EXTENSION=\".exe\"
396ff754 489 BASIC_LDFLAGS = -IGNORE:4217 -IGNORE:4049 -NOLOGO -ENTRY:wmainCRTStartup -SUBSYSTEM:CONSOLE
dce7d295
JH
490 # invalidcontinue.obj allows Git's source code to close the same file
491 # handle twice, or to access the osfhandle of an already-closed stdout
492 # See https://msdn.microsoft.com/en-us/library/ms235330.aspx
493 EXTLIBS = user32.lib advapi32.lib shell32.lib wininet.lib ws2_32.lib invalidcontinue.obj kernel32.lib ntdll.lib
e1b6dbb5
JK
494 PTHREAD_LIBS =
495 lib =
dce7d295
JH
496 BASIC_CFLAGS += $(vcpkg_inc) $(sdk_includes) $(msvc_includes)
497ifndef DEBUG
498 BASIC_CFLAGS += $(vcpkg_rel_lib)
499else
500 BASIC_CFLAGS += $(vcpkg_dbg_lib)
501endif
502 BASIC_CFLAGS += $(sdk_libs) $(msvc_libs)
503
556702f8
JH
504ifneq ($(USE_MSVC_CRTDBG),)
505 # Optionally enable memory leak reporting.
506 BASIC_CFLAGS += -DUSE_MSVC_CRTDBG
507endif
dce7d295
JH
508 # Always give "-Zi" to the compiler and "-debug" to linker (even in
509 # release mode) to force a PDB to be generated (like RelWithDebInfo).
510 BASIC_CFLAGS += -Zi
511 BASIC_LDFLAGS += -debug -Zf
512
513ifdef NO_SAFESEH
514 LDFLAGS += -SAFESEH:NO
515endif
516
e1b6dbb5 517ifndef DEBUG
dce7d295
JH
518 BASIC_CFLAGS += -GL -Gy -O2 -Oy- -MD -DNDEBUG
519 BASIC_LDFLAGS += -release -LTCG /OPT:REF /OPT:ICF /INCREMENTAL:NO /DEBUGTYPE:CV,FIXUP
e1b6dbb5
JK
520 AR += -LTCG
521else
dce7d295 522 BASIC_CFLAGS += -MDd -DDEBUG -D_DEBUG
e1b6dbb5
JK
523endif
524 X = .exe
963e1543
JS
525
526compat/msvc.o: compat/msvc.c compat/mingw.c GIT-CFLAGS
e1b6dbb5
JK
527endif
528ifeq ($(uname_S),Interix)
529 NO_INITGROUPS = YesPlease
530 NO_IPV6 = YesPlease
531 NO_MEMMEM = YesPlease
532 NO_MKDTEMP = YesPlease
533 NO_STRTOUMAX = YesPlease
534 NO_NSEC = YesPlease
e1b6dbb5
JK
535 ifeq ($(uname_R),3.5)
536 NO_INET_NTOP = YesPlease
537 NO_INET_PTON = YesPlease
538 NO_SOCKADDR_STORAGE = YesPlease
e1b6dbb5
JK
539 endif
540 ifeq ($(uname_R),5.2)
541 NO_INET_NTOP = YesPlease
542 NO_INET_PTON = YesPlease
543 NO_SOCKADDR_STORAGE = YesPlease
e1b6dbb5
JK
544 endif
545endif
546ifeq ($(uname_S),Minix)
547 NO_IPV6 = YesPlease
548 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
549 NO_NSEC = YesPlease
550 NEEDS_LIBGEN =
551 NEEDS_CRYPTO_WITH_SSL = YesPlease
e1b6dbb5
JK
552 NEEDS_RESOLV =
553 NO_HSTRERROR = YesPlease
554 NO_MMAP = YesPlease
555 NO_CURL =
556 NO_EXPAT =
557endif
558ifeq ($(uname_S),NONSTOP_KERNEL)
559 # Needs some C99 features, "inline" is just one of them.
560 # INLINE='' would just replace one set of warnings with another and
561 # still not compile in c89 mode, due to non-const array initializations.
562 CC = cc -c99
71fb089c
RB
563 # Build down-rev compatible objects that don't use our new getopt_long.
564 ifeq ($(uname_R).$(uname_V),J06.21)
565 CC += -WRVU=J06.20
566 endif
567 ifeq ($(uname_R).$(uname_V),L17.02)
568 CC += -WRVU=L16.05
569 endif
e1b6dbb5
JK
570 # Disable all optimization, seems to result in bad code, with -O or -O2
571 # or even -O1 (default), /usr/local/libexec/git-core/git-pack-objects
572 # abends on "git push". Needs more investigation.
71fb089c 573 CFLAGS = -g -O0 -Winline
e1b6dbb5
JK
574 # We'd want it to be here.
575 prefix = /usr/local
71fb089c
RB
576 # perl and python must be in /usr/bin on NonStop - supplied by HPE
577 # with operating system in that managed directory.
578 PERL_PATH = /usr/bin/perl
579 PYTHON_PATH = /usr/bin/python
580 # The current /usr/coreutils/rm at lowest support level does not work
581 # with the git test structure. Long paths as in
582 # 'trash directory...' cause rm to terminate prematurely without fully
583 # removing the directory at OS releases J06.21 and L17.02.
584 # Default to the older rm until those two releases are deprecated.
585 RM = /bin/rm -f
71fb089c
RB
586 NEEDS_CRYPTO_WITH_SSL = YesPlease
587 HAVE_DEV_TTY = YesPlease
e1b6dbb5
JK
588 HAVE_LIBCHARSET_H = YesPlease
589 HAVE_STRINGS_H = YesPlease
590 NEEDS_LIBICONV = YesPlease
591 NEEDS_LIBINTL_BEFORE_LIBICONV = YesPlease
592 NO_SYS_SELECT_H = UnfortunatelyYes
593 NO_D_TYPE_IN_DIRENT = YesPlease
71fb089c 594 NO_GETTEXT = YesPlease
e1b6dbb5
JK
595 NO_HSTRERROR = YesPlease
596 NO_STRCASESTR = YesPlease
e1b6dbb5
JK
597 NO_MEMMEM = YesPlease
598 NO_STRLCPY = YesPlease
599 NO_SETENV = YesPlease
600 NO_UNSETENV = YesPlease
601 NO_MKDTEMP = YesPlease
e1b6dbb5
JK
602 # Currently libiconv-1.9.1.
603 OLD_ICONV = UnfortunatelyYes
71fb089c 604 NO_REGEX = NeedsStartEnd
e1b6dbb5 605 NO_PTHREADS = UnfortunatelyYes
243a4c7e 606 FREAD_READS_DIRECTORIES = UnfortunatelyYes
e1b6dbb5
JK
607
608 # Not detected (nor checked for) by './configure'.
609 # We don't have SA_RESTART on NonStop, unfortunalety.
610 COMPAT_CFLAGS += -DSA_RESTART=0
611 # Apparently needed in compat/fnmatch/fnmatch.c.
612 COMPAT_CFLAGS += -DHAVE_STRING_H=1
613 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
614 NO_NSEC = YesPlease
615 NO_PREAD = YesPlease
616 NO_MMAP = YesPlease
617 NO_POLL = YesPlease
618 NO_INTPTR_T = UnfortunatelyYes
05cd988d 619 CSPRNG_METHOD = openssl
e1b6dbb5 620 SANE_TOOL_PATH = /usr/coreutils/bin:/usr/local/bin
f0ec22bb 621 SHELL_PATH = /usr/coreutils/bin/bash
e1b6dbb5 622endif
ebd2e4a1 623ifeq ($(uname_S),MINGW)
e1b6dbb5 624 pathsep = ;
22f4c27e 625 HAVE_ALLOCA_H = YesPlease
e1b6dbb5
JK
626 NO_PREAD = YesPlease
627 NEEDS_CRYPTO_WITH_SSL = YesPlease
628 NO_LIBGEN_H = YesPlease
629 NO_POLL = YesPlease
630 NO_SYMLINK_HEAD = YesPlease
631 NO_UNIX_SOCKETS = YesPlease
632 NO_SETENV = YesPlease
e1b6dbb5
JK
633 NO_STRCASESTR = YesPlease
634 NO_STRLCPY = YesPlease
e1b6dbb5
JK
635 NO_MEMMEM = YesPlease
636 NEEDS_LIBICONV = YesPlease
e1b6dbb5
JK
637 NO_STRTOUMAX = YesPlease
638 NO_MKDTEMP = YesPlease
e1b6dbb5 639 NO_SVN_TESTS = YesPlease
62c73671
JH
640
641 # The builtin FSMonitor requires Named Pipes and Threads on Windows.
642 # These are always available, so we do not have to conditionally
643 # support it.
644 FSMONITOR_DAEMON_BACKEND = win32
d33c804d
JH
645 FSMONITOR_OS_SETTINGS = win32
646
e1b6dbb5 647 RUNTIME_PREFIX = YesPlease
86e25458 648 HAVE_WPGMPTR = YesWeDo
e1b6dbb5 649 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
59c7b881 650 USE_WIN32_IPC = YesPlease
e1b6dbb5 651 USE_WIN32_MMAP = YesPlease
5b633610 652 MMAP_PREVENTS_DELETE = UnfortunatelyYes
e1b6dbb5
JK
653 USE_NED_ALLOCATOR = YesPlease
654 UNRELIABLE_FSTAT = UnfortunatelyYes
655 OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
656 NO_REGEX = YesPlease
657 NO_PYTHON = YesPlease
e1b6dbb5 658 ETAGS_TARGET = ETAGS
e1b6dbb5 659 NO_POSIX_GOODIES = UnfortunatelyYes
65db0443 660 DEFAULT_HELP_FORMAT = html
b7e6a416 661 HAVE_PLATFORM_PROCINFO = YesPlease
05cd988d 662 CSPRNG_METHOD = rtlgenrandom
396ff754 663 BASIC_LDFLAGS += -municode
7b40ae86 664 COMPAT_CFLAGS += -DNOGDI -Icompat -Icompat/win32
e1b6dbb5
JK
665 COMPAT_CFLAGS += -DSTRIP_EXTENSION=\".exe\"
666 COMPAT_OBJS += compat/mingw.o compat/winansi.o \
353d3d77 667 compat/win32/trace2_win32_process_info.o \
1cadad6f 668 compat/win32/path-utils.o \
e1b6dbb5
JK
669 compat/win32/pthread.o compat/win32/syslog.o \
670 compat/win32/dirent.o
7c9fbda6 671 BASIC_CFLAGS += -DWIN32
e1b6dbb5 672 EXTLIBS += -lws2_32
ce39c2e0 673 GITLIBS += git.res
e1b6dbb5 674 PTHREAD_LIBS =
ce39c2e0 675 RC = windres -O coff
95f31e9a 676 NATIVE_CRLF = YesPlease
e1b6dbb5 677 X = .exe
e1b6dbb5
JK
678ifneq (,$(wildcard ../THIS_IS_MSYSGIT))
679 htmldir = doc/git/html/
680 prefix =
681 INSTALL = /bin/install
682 EXTLIBS += /mingw/lib/libz.a
e1b6dbb5
JK
683 INTERNAL_QSORT = YesPlease
684 HAVE_LIBCHARSET_H = YesPlease
ca354871 685 NO_GETTEXT = YesPlease
6a1ce2ed 686 COMPAT_CFLAGS += -D__USE_MINGW_ACCESS
e1b6dbb5 687else
aeb582a9 688 ifneq ($(shell expr "$(uname_R)" : '1\.'),2)
df5218b4 689 # MSys2
7b40ae86 690 prefix = /usr/
ce6a1585
İD
691 # Enable DEP
692 BASIC_LDFLAGS += -Wl,--nxcompat
693 # Enable ASLR (unless debugging)
694 ifneq (,$(findstring -O,$(filter-out -O0 -Og,$(CFLAGS))))
695 BASIC_LDFLAGS += -Wl,--dynamicbase
696 endif
7b40ae86
JS
697 ifeq (MINGW32,$(MSYSTEM))
698 prefix = /mingw32
bb02e7a5 699 HOST_CPU = i686
598b6c3a 700 BASIC_LDFLAGS += -Wl,--pic-executable,-e,_mainCRTStartup
7b40ae86
JS
701 endif
702 ifeq (MINGW64,$(MSYSTEM))
703 prefix = /mingw64
bb02e7a5 704 HOST_CPU = x86_64
598b6c3a 705 BASIC_LDFLAGS += -Wl,--pic-executable,-e,mainCRTStartup
7b40ae86
JS
706 else
707 COMPAT_CFLAGS += -D_USE_32BIT_TIME_T
708 BASIC_LDFLAGS += -Wl,--large-address-aware
709 endif
df5218b4 710 CC = gcc
a1c5e906
JS
711 COMPAT_CFLAGS += -D__USE_MINGW_ANSI_STDIO=0 -DDETECT_MSYS_TTY \
712 -fstack-protector-strong
f7f90e0f 713 EXTLIBS += -lntdll
df5218b4 714 INSTALL = /bin/install
df5218b4
JS
715 INTERNAL_QSORT = YesPlease
716 HAVE_LIBCHARSET_H = YesPlease
f9206ce2 717 NO_GETTEXT =
b640b77f 718 USE_GETTEXT_SCHEME = fallthrough
ebbf5d2b 719 USE_LIBPCRE = YesPlease
df5218b4
JS
720 NO_CURL =
721 USE_NED_ALLOCATOR = YesPlease
fb5e3378
JS
722 ifeq (/mingw64,$(subst 32,64,$(prefix)))
723 # Move system config into top-level /etc/
724 ETC_GITCONFIG = ../etc/gitconfig
725 ETC_GITATTRIBUTES = ../etc/gitattributes
726 endif
df5218b4
JS
727 else
728 COMPAT_CFLAGS += -D__USE_MINGW_ANSI_STDIO
729 NO_CURL = YesPlease
730 endif
e1b6dbb5
JK
731endif
732endif
733ifeq ($(uname_S),QNX)
734 COMPAT_CFLAGS += -DSA_RESTART=0
081fd8d0 735 EXPAT_NEEDS_XMLPARSE_H = YesPlease
e1b6dbb5
JK
736 HAVE_STRINGS_H = YesPlease
737 NEEDS_SOCKET = YesPlease
e1b6dbb5
JK
738 NO_GETPAGESIZE = YesPlease
739 NO_ICONV = YesPlease
740 NO_MEMMEM = YesPlease
741 NO_MKDTEMP = YesPlease
e1b6dbb5
JK
742 NO_NSEC = YesPlease
743 NO_PTHREADS = YesPlease
e1b6dbb5
JK
744 NO_STRCASESTR = YesPlease
745 NO_STRLCPY = YesPlease
746endif
976aaedc
JS
747
748vcxproj:
749 # Require clean work tree
750 git update-index -q --refresh && \
751 git diff-files --quiet && \
752 git diff-index --cached --quiet HEAD --
753
754 # Make .vcxproj files and add them
755 unset QUIET_GEN QUIET_BUILT_IN; \
756 perl contrib/buildsystems/generate -g Vcxproj
757 git add -f git.sln {*,*/lib,t/helper/*}/*.vcxproj
758
030a628b 759 # Generate the LinkOrCopyBuiltins.targets and LinkOrCopyRemoteHttp.targets file
b18ae14a
JS
760 (echo '<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">' && \
761 echo ' <Target Name="CopyBuiltins_AfterBuild" AfterTargets="AfterBuild">' && \
762 for name in $(BUILT_INS);\
763 do \
764 echo ' <Copy SourceFiles="$$(OutDir)\git.exe" DestinationFiles="$$(OutDir)\'"$$name"'" SkipUnchangedFiles="true" UseHardlinksIfPossible="true" />'; \
765 done && \
030a628b
JS
766 echo ' </Target>' && \
767 echo '</Project>') >git/LinkOrCopyBuiltins.targets
768 (echo '<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">' && \
769 echo ' <Target Name="CopyBuiltins_AfterBuild" AfterTargets="AfterBuild">' && \
b18ae14a
JS
770 for name in $(REMOTE_CURL_ALIASES); \
771 do \
772 echo ' <Copy SourceFiles="$$(OutDir)\'"$(REMOTE_CURL_PRIMARY)"'" DestinationFiles="$$(OutDir)\'"$$name"'" SkipUnchangedFiles="true" UseHardlinksIfPossible="true" />'; \
773 done && \
774 echo ' </Target>' && \
030a628b
JS
775 echo '</Project>') >git-remote-http/LinkOrCopyRemoteHttp.targets
776 git add -f git/LinkOrCopyBuiltins.targets git-remote-http/LinkOrCopyRemoteHttp.targets
b18ae14a 777
7c3c0a99
ÆAB
778 # Add generated headers
779 $(MAKE) MSVC=1 SKIP_VCPKG=1 prefix=/mingw64 $(GENERATED_H)
780 git add -f $(GENERATED_H)
976aaedc
JS
781
782 # Add scripts
783 rm -f perl/perl.mak
5d65ad17 784 $(MAKE) MSVC=1 SKIP_VCPKG=1 prefix=/mingw64 $(SCRIPT_LIB) $(SCRIPTS)
976aaedc
JS
785 # Strip out the sane tool path, needed only for building
786 sed -i '/^git_broken_path_fix ".*/d' git-sh-setup
5d65ad17 787 git add -f $(SCRIPT_LIB) $(SCRIPTS)
976aaedc
JS
788
789 # Add Perl module
790 $(MAKE) $(LIB_PERL_GEN)
791 git add -f perl/build
792
793 # Add bin-wrappers, for testing
794 rm -rf bin-wrappers/
795 $(MAKE) MSVC=1 SKIP_VCPKG=1 prefix=/mingw64 $(test_bindir_programs)
796 # Ensure that the GIT_EXEC_PATH is a Unix-y one, and that the absolute
797 # path of the repository is not hard-coded (GIT_EXEC_PATH will be set
798 # by test-lib.sh according to the current setup)
799 sed -i -e 's/^\(GIT_EXEC_PATH\)=.*/test -n "$${\1##*:*}" ||\
800 \1="$$(cygpath -u "$$\1")"/' \
801 -e "s|'$$(pwd)|\"\$$GIT_EXEC_PATH\"'|g" bin-wrappers/*
802 # Ensure that test-* helpers find the .dll files copied to top-level
803 sed -i 's|^PATH=.*|&:"$$GIT_EXEC_PATH"|' bin-wrappers/test-*
804 # We do not want to force hard-linking builtins
805 sed -i 's|\(git\)-\([-a-z]*\)\.exe"|\1.exe" \2|g' \
806 bin-wrappers/git-{receive-pack,upload-archive}
807 git add -f $(test_bindir_programs)
808 # remote-ext is a builtin, but invoked as if it were external
809 sed 's|receive-pack|remote-ext|g' \
810 <bin-wrappers/git-receive-pack >bin-wrappers/git-remote-ext
811 git add -f bin-wrappers/git-remote-ext
812
813 # Add templates
814 $(MAKE) -C templates
815 git add -f templates/boilerplates.made templates/blt/
816
5d65ad17
JS
817 # Add the translated messages
818 make MSVC=1 SKIP_VCPKG=1 prefix=/mingw64 $(MOFILES)
819 git add -f $(MOFILES)
820
976aaedc
JS
821 # Add build options
822 $(MAKE) MSVC=1 SKIP_VCPKG=1 prefix=/mingw64 GIT-BUILD-OPTIONS
823 git add -f GIT-BUILD-OPTIONS
824
825 # Commit the whole shebang
826 git commit -m "Generate Visual Studio solution" \
827 -m "Auto-generated by \`$(MAKE)$(MAKEFLAGS) $@\`"