]> granicus.if.org Git - gc/blob - NT_MAKEFILE
Do not hold GC_fault_handler_lock when in Sleep (Win32)
[gc] / NT_MAKEFILE
1 # Makefile for Windows NT.  Assumes Microsoft compiler.
2 # Should be invoked as "nmake -f NT_MAKEFILE [<args>]"; the optional arguments
3 # are: "cpu=AMD64" - to target x64, "cpu=i386" - to target x86,
4 # "enable_static=1" - to build it as a static library, "nodebug=1" - to produce
5 # the release variant of the library, "disable_threads=1" - to build the
6 # library and the tests without threads support.
7
8 cc = cl
9 link = link
10 rc = rc
11
12 !IF !DEFINED(CPU) || "$(CPU)" == ""
13 CPU = $(PROCESSOR_ARCHITECTURE)
14 !ENDIF
15 !IF "$(CPU)" == "I386" || "$(CPU)" == "X86" || "$(CPU)" == "x86"
16 CPU = i386
17 !ELSEIF "$(CPU)" == "X64" || "$(CPU)" == "x64" || "$(CPU)" == "amd64"
18 CPU = AMD64
19 !ENDIF
20
21 !IF !DEFINED(NMAKE_WINVER)
22 NMAKE_WINVER = 0x0600
23 !ENDIF
24
25 cflags = $(cflags) -c -DCRTAPI1=_cdecl -DCRTAPI2=_cdecl -GS -D_WINNT -W4
26 !IF "$(CPU)" == "i386"
27 cflags = $(cflags) -D_X86_=1  -DWIN32 -D_WIN32
28 !ELSEIF "$(CPU)" == "AMD64"
29 cflags = $(cflags) -D_AMD64_=1 -DWIN64 -D_WIN64  -DWIN32 -D_WIN32
30 !ENDIF
31 cflags = $(cflags) -D_WIN32_WINNT=$(NMAKE_WINVER) -DWINVER=$(NMAKE_WINVER)
32
33 !IFDEF NODEBUG
34 cvarsmt = -D_MT -MT
35 cdebug = -Ox -DNDEBUG
36 rcvars = -DWIN32 -D_WIN32 -DWINVER=$(NMAKE_WINVER)
37 ldebug = /RELEASE
38 !ELSE
39 cvarsmt = -D_MT -MTd
40 cdebug = -Zi -Od -DDEBUG
41 rcvars = -DWIN32 -D_WIN32 -DWINVER=$(NMAKE_WINVER) -DDEBUG -D_DEBUG
42 ldebug = /DEBUG /DEBUGTYPE:cv
43 !ENDIF
44
45 !IF "$(CPU)" == "i386"
46 CVTRES_CPU=X86
47 !ELSEIF "$(CPU)" == "AMD64"
48 CVTRES_CPU=X64
49 !ENDIF
50
51 !IFNDEF NODEBUG
52 CFLAGS_DEBUG=-DGC_ASSERTIONS
53 !ENDIF
54
55 !IFDEF ENABLE_STATIC
56 CFLAGS_GCDLL=-DGC_NOT_DLL
57 CORDFLAG=
58 !ELSE
59 CFLAGS_GCDLL=-DGC_DLL
60 # cord.dll and its clients should not link C library statically otherwise
61 # FILE-related functions might not work (because own set of opened FILEs
62 # is maintained by each copy of the C library thus making impossible to pass
63 # FILE pointer from .exe code to .dll code).
64 cvarsmt=
65 !IFDEF NODEBUG
66 CORDFLAG=-MD
67 !ELSE
68 CORDFLAG=-MDd
69 !ENDIF
70 !ENDIF
71
72 !IFNDEF DISABLE_THREADS
73 CFLAGS_MT=$(cvarsmt) -DGC_THREADS -DTHREAD_LOCAL_ALLOC -DPARALLEL_MARK
74 !ENDIF
75
76 CFLAGS_SPECIFIC=$(CFLAGS_DEBUG) $(CFLAGS_GCDLL) $(CFLAGS_MT)
77
78 CFLAGS_DEFAULT=-DALL_INTERIOR_POINTERS -DENABLE_DISCLAIM -DGC_ATOMIC_UNCOLLECTABLE -DGC_GCJ_SUPPORT -DJAVA_FINALIZATION -DNO_EXECUTE_PERMISSION -DUSE_MUNMAP
79
80 # Make sure that .cc is not viewed as a suffix.  It is for VC++2005, but
81 # not earlier versions.  We can deal with either, but not inconsistency.
82 .SUFFIXES:
83 .SUFFIXES: .obj .cpp .c
84
85 # Atomic_ops installation directory.  For win32, the source directory
86 # should do, since we only need the headers.
87 # We assume this was manually unpacked.
88 AO_SRC_DIR=libatomic_ops/src
89 AO_INCLUDE_DIR=$(AO_SRC_DIR)
90
91 !IFDEF ENABLE_STATIC
92 OBJS= misc.obj win32_threads.obj alloc.obj reclaim.obj allchblk.obj mach_dep.obj os_dep.obj mark_rts.obj headers.obj mark.obj obj_map.obj blacklst.obj finalize.obj new_hblk.obj dbg_mlc.obj fnlz_mlc.obj malloc.obj dyn_load.obj typd_mlc.obj ptr_chck.obj gcj_mlc.obj mallocx.obj extra\msvc_dbg.obj thread_local_alloc.obj
93 !ELSE
94 OBJS= extra\gc.obj extra\msvc_dbg.obj
95 !ENDIF
96
97 COBJS= cord\cordbscs.obj cord\cordxtra.obj cord\cordprnt.obj
98
99 all: gc.lib cord.lib gccpp.lib
100
101 check: gctest.exe test_cpp.exe cordtest.exe de.exe
102         gctest.exe
103         cordtest.exe
104         test_cpp.exe
105
106 .c.obj:
107         $(cc) $(cdebug) $(cflags) $(CFLAGS_SPECIFIC) $(CORDFLAG) -Iinclude -I$(AO_INCLUDE_DIR) $(CFLAGS_DEFAULT) -D_CRT_SECURE_NO_DEPRECATE $*.c /Fo$*.obj /wd4100 /wd4127 /wd4701
108 # Disable crt security warnings, since unfortunately they warn about all sorts
109 # of safe uses of strncpy.  It would be nice to leave the rest enabled.
110
111 .cpp.obj:
112         $(cc) $(cdebug) $(cflags) $(CFLAGS_SPECIFIC) -Iinclude $(CFLAGS_DEFAULT) -D_CRT_SECURE_NO_DEPRECATE $*.cpp /Fo$*.obj
113
114 $(OBJS) tests\test.obj: include\private\gc_priv.h include\private\gc_hdrs.h include\gc.h include\private\gcconfig.h include\private\gc_locks.h include\private\gc_pmark.h include\gc_mark.h include\gc_disclaim.h include\private\msvc_dbg.h
115
116 !IFDEF ENABLE_STATIC
117
118 gc.lib: $(OBJS)
119         lib /out:gc.lib /MACHINE:$(CPU) $(OBJS)
120
121 cord.lib: $(COBJS)
122         lib /out:cord.lib /MACHINE:$(CPU) $(COBJS)
123
124 gccpp.lib: gc_cpp.obj
125         lib /out:gccpp.lib /MACHINE:$(CPU) gc_cpp.obj
126
127 !ELSE
128
129 gc.lib: $(OBJS)
130         $(link) $(ldebug) kernel32.lib user32.lib /subsystem:windows /dll /INCREMENTAL:NO /pdb:"gc.pdb" /out:gc.dll /implib:gc.lib /MACHINE:$(CPU) $(OBJS)
131
132 cord.lib: $(COBJS) gc.lib
133         $(link) $(ldebug) gc.lib /subsystem:windows /dll /INCREMENTAL:NO /pdb:"cord.pdb" /out:cord.dll /implib:cord.lib /MACHINE:$(CPU) $(COBJS)
134
135 gccpp.lib: gc_cpp.obj gc.lib
136         $(link) $(ldebug) gc.lib /subsystem:windows /dll /INCREMENTAL:NO /pdb:"gccpp.pdb" /out:gccpp.dll /implib:gccpp.lib /MACHINE:$(CPU) gc_cpp.obj
137
138 !ENDIF
139
140 gctest.exe: gc.lib tests\test.obj
141         $(link) /MACHINE:$(CPU) /INCREMENTAL:NO $(ldebug) $(lflags) user32.lib -out:$*.exe tests\test.obj gc.lib
142 #       mapsympe -n -o gctest.sym gctest.exe
143 # This produces a GUI app that opens no window and writes to gctest.gc.log.
144
145 cord\tests\de_win.rbj: cord\tests\de_win.res
146         cvtres /MACHINE:$(CVTRES_CPU) /OUT:cord\tests\de_win.rbj cord\tests\de_win.res
147
148 cord\tests\de.obj cord\tests\de_win.obj: include\cord.h include\cord_pos.h cord\tests\de_win.h cord\tests\de_cmds.h
149
150 cord\tests\de_win.res: cord\tests\de_win.rc cord\tests\de_win.h cord\tests\de_cmds.h
151         $(rc) $(rcvars) -r -fo cord\tests\de_win.res cord\tests\de_win.rc
152
153 # Cord/de is a real win32 GUI app.
154 de.exe: cord\tests\de.obj cord\tests\de_win.obj cord\tests\de_win.rbj gc.lib cord.lib
155         $(link) /MACHINE:$(CPU) /INCREMENTAL:NO $(ldebug) $(lflags) -out:de.exe cord\tests\de.obj cord\tests\de_win.obj cord\tests\de_win.rbj gc.lib cord.lib gdi32.lib user32.lib
156
157 cordtest.exe: cord\tests\cordtest.obj gc.lib cord.lib
158         $(link) /subsystem:console /MACHINE:$(CPU) /INCREMENTAL:NO $(ldebug) $(lflags) -out:cordtest.exe cord\tests\cordtest.obj gc.lib cord.lib user32.lib
159
160 gc_cpp.obj: gc_cpp.cc include\gc_cpp.h include\gc.h
161
162 test_cpp.cpp: tests\test_cpp.cc
163         copy tests\test_cpp.cc test_cpp.cpp
164
165 # This generates the C++ test executable.  The executable expects
166 # a single numeric argument, which is the number of iterations.
167 # The output appears in test_cpp.gc.log file.
168 test_cpp.exe: test_cpp.obj include\gc_cpp.h include\gc.h gc.lib gccpp.lib
169         $(link) /MACHINE:$(CPU) /INCREMENTAL:NO $(ldebug) $(lflags) user32.lib -out:test_cpp.exe test_cpp.obj gc.lib gccpp.lib
170
171 $(AO_SRC_DIR):
172         tar xvfz $(AO_SRC_DIR).tar.gz
173
174 clean:
175         del *.dll *.exe *.exp *.lib *.log *.obj *.pdb cordtst*.tmp cord\*.obj cord\tests\*.rbj cord\tests\*.res cord\tests\*.obj extra\*.obj test_cpp.cpp tests\*.obj 2> nul