]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/tools.mk
Auto merge of #68506 - tmandry:rollup-kz9d33v, r=tmandry
[rust.git] / src / test / run-make-fulldeps / tools.mk
1 # These deliberately use `=` and not `:=` so that client makefiles can
2 # augment HOST_RPATH_DIR / TARGET_RPATH_DIR.
3 HOST_RPATH_ENV = \
4     $(LD_LIB_PATH_ENVVAR)="$(TMPDIR):$(HOST_RPATH_DIR):$($(LD_LIB_PATH_ENVVAR))"
5 TARGET_RPATH_ENV = \
6     $(LD_LIB_PATH_ENVVAR)="$(TMPDIR):$(TARGET_RPATH_DIR):$($(LD_LIB_PATH_ENVVAR))"
7
8 RUSTC_ORIGINAL := $(RUSTC)
9 BARE_RUSTC := $(HOST_RPATH_ENV) '$(RUSTC)'
10 BARE_RUSTDOC := $(HOST_RPATH_ENV) '$(RUSTDOC)'
11 RUSTC := $(BARE_RUSTC) --out-dir $(TMPDIR) -L $(TMPDIR) $(RUSTFLAGS)
12 RUSTDOC := $(BARE_RUSTDOC) -L $(TARGET_RPATH_DIR)
13 ifdef RUSTC_LINKER
14 RUSTC := $(RUSTC) -Clinker=$(RUSTC_LINKER)
15 RUSTDOC := $(RUSTDOC) -Clinker=$(RUSTC_LINKER)
16 endif
17 #CC := $(CC) -L $(TMPDIR)
18 HTMLDOCCK := '$(PYTHON)' '$(S)/src/etc/htmldocck.py'
19 CGREP := "$(S)/src/etc/cat-and-grep.sh"
20
21 # This is the name of the binary we will generate and run; use this
22 # e.g. for `$(CC) -o $(RUN_BINFILE)`.
23 RUN_BINFILE = $(TMPDIR)/$(1)
24
25 # RUN and FAIL are basic way we will invoke the generated binary.  On
26 # non-windows platforms, they set the LD_LIBRARY_PATH environment
27 # variable before running the binary.
28
29 RLIB_GLOB = lib$(1)*.rlib
30 BIN = $(1)
31
32 UNAME = $(shell uname)
33
34 ifeq ($(UNAME),Darwin)
35 RUN = $(TARGET_RPATH_ENV) $(RUN_BINFILE)
36 FAIL = $(TARGET_RPATH_ENV) $(RUN_BINFILE) && exit 1 || exit 0
37 DYLIB_GLOB = lib$(1)*.dylib
38 DYLIB = $(TMPDIR)/lib$(1).dylib
39 STATICLIB = $(TMPDIR)/lib$(1).a
40 STATICLIB_GLOB = lib$(1)*.a
41 else
42 ifdef IS_WINDOWS
43 RUN = PATH="$(PATH):$(TARGET_RPATH_DIR)" $(RUN_BINFILE)
44 FAIL = PATH="$(PATH):$(TARGET_RPATH_DIR)" $(RUN_BINFILE) && exit 1 || exit 0
45 DYLIB_GLOB = $(1)*.dll
46 DYLIB = $(TMPDIR)/$(1).dll
47 STATICLIB = $(TMPDIR)/$(1).lib
48 STATICLIB_GLOB = $(1)*.lib
49 BIN = $(1).exe
50 LLVM_FILECHECK := $(shell cygpath -u "$(LLVM_FILECHECK)")
51 else
52 RUN = $(TARGET_RPATH_ENV) $(RUN_BINFILE)
53 FAIL = $(TARGET_RPATH_ENV) $(RUN_BINFILE) && exit 1 || exit 0
54 DYLIB_GLOB = lib$(1)*.so
55 DYLIB = $(TMPDIR)/lib$(1).so
56 STATICLIB = $(TMPDIR)/lib$(1).a
57 STATICLIB_GLOB = lib$(1)*.a
58 endif
59 endif
60
61 ifdef IS_MSVC
62 COMPILE_OBJ = $(CC) -c -Fo:`cygpath -w $(1)` $(2)
63 COMPILE_OBJ_CXX = $(CXX) -EHs -c -Fo:`cygpath -w $(1)` $(2)
64 NATIVE_STATICLIB_FILE = $(1).lib
65 NATIVE_STATICLIB = $(TMPDIR)/$(call NATIVE_STATICLIB_FILE,$(1))
66 OUT_EXE=-Fe:`cygpath -w $(TMPDIR)/$(call BIN,$(1))` \
67         -Fo:`cygpath -w $(TMPDIR)/$(1).obj`
68 else
69 COMPILE_OBJ = $(CC) -c -o $(1) $(2)
70 COMPILE_OBJ_CXX = $(CXX) -c -o $(1) $(2)
71 NATIVE_STATICLIB_FILE = lib$(1).a
72 NATIVE_STATICLIB = $(call STATICLIB,$(1))
73 OUT_EXE=-o $(TMPDIR)/$(1)
74 endif
75
76
77 # Extra flags needed to compile a working executable with the standard library
78 ifdef IS_WINDOWS
79 ifdef IS_MSVC
80         EXTRACFLAGS := ws2_32.lib userenv.lib advapi32.lib
81 else
82         EXTRACFLAGS := -lws2_32 -luserenv
83         EXTRACXXFLAGS := -lstdc++
84         # So this is a bit hacky: we can't use the DLL version of libstdc++ because
85         # it pulls in the DLL version of libgcc, which means that we end up with 2
86         # instances of the DW2 unwinding implementation. This is a problem on
87         # i686-pc-windows-gnu because each module (DLL/EXE) needs to register its
88         # unwind information with the unwinding implementation, and libstdc++'s
89         # __cxa_throw won't see the unwinding info we registered with our statically
90         # linked libgcc.
91         #
92         # Now, simply statically linking libstdc++ would fix this problem, except
93         # that it is compiled with the expectation that pthreads is dynamically
94         # linked as a DLL and will fail to link with a statically linked libpthread.
95         #
96         # So we end up with the following hack: we link use static-nobundle to only
97         # link the parts of libstdc++ that we actually use, which doesn't include
98         # the dependency on the pthreads DLL.
99         EXTRARSCXXFLAGS := -l static-nobundle=stdc++
100 endif
101 else
102 ifeq ($(UNAME),Darwin)
103         EXTRACFLAGS := -lresolv
104         EXTRACXXFLAGS := -lc++
105         EXTRARSCXXFLAGS := -lc++
106 else
107 ifeq ($(UNAME),FreeBSD)
108         EXTRACFLAGS := -lm -lpthread -lgcc_s
109 else
110 ifeq ($(UNAME),SunOS)
111         EXTRACFLAGS := -lm -lpthread -lposix4 -lsocket -lresolv
112 else
113 ifeq ($(UNAME),OpenBSD)
114         EXTRACFLAGS := -lm -lpthread -lc++abi
115         RUSTC := $(RUSTC) -C linker="$(word 1,$(CC:ccache=))"
116 else
117         EXTRACFLAGS := -lm -lrt -ldl -lpthread
118         EXTRACXXFLAGS := -lstdc++
119         EXTRARSCXXFLAGS := -lstdc++
120 endif
121 endif
122 endif
123 endif
124 endif
125
126 REMOVE_DYLIBS     = rm $(TMPDIR)/$(call DYLIB_GLOB,$(1))
127 REMOVE_RLIBS      = rm $(TMPDIR)/$(call RLIB_GLOB,$(1))
128
129 %.a: %.o
130         $(AR) crus $@ $<
131 ifdef IS_MSVC
132 %.lib: lib%.o
133         $(MSVC_LIB) -out:`cygpath -w $@` $<
134 else
135 %.lib: lib%.o
136         $(AR) crus $@ $<
137 endif
138 %.dylib: %.o
139         $(CC) -dynamiclib -Wl,-dylib -o $@ $<
140 %.so: %.o
141         $(CC) -o $@ $< -shared
142
143 ifdef IS_MSVC
144 %.dll: lib%.o
145         $(CC) $< -link -dll -out:`cygpath -w $@`
146 else
147 %.dll: lib%.o
148         $(CC) -o $@ $< -shared
149 endif
150
151 $(TMPDIR)/lib%.o: %.c
152         $(call COMPILE_OBJ,$@,$<)