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