]> git.saurik.com Git - apple/icu.git/blame_incremental - icuSources/config/mh-cygwin-msvc
ICU-8.11.tar.gz
[apple/icu.git] / icuSources / config / mh-cygwin-msvc
... / ...
CommitLineData
1## Cygwin with Microsoft Visual C++ compiler specific setup
2## Copyright (c) 2001-2006, International Business Machines Corporation and
3## others. All Rights Reserved.
4
5# We install sbin tools into the same bin directory because
6# pkgdata needs some of the tools in sbin, and we can't always depend on
7# icu-config working on Windows.
8sbindir=$(bindir)
9
10## Commands to generate dependency files
11GEN_DEPS.c= :
12GEN_DEPS.cc= :
13#GEN_DEPS.c= $(COMPILE.c) /E
14#GEN_DEPS.cc= $(COMPILE.cc) /E
15
16## Flags to create/use a static library
17ifneq ($(ENABLE_SHARED),YES)
18## Make sure that the static libraries can be built and used
19CPPFLAGS += -DU_STATIC_IMPLEMENTATION#M#
20else
21## Make sure that the static libraries can be built
22STATICCPPFLAGS = -DU_STATIC_IMPLEMENTATION
23endif
24
25## Flags for position independent code
26SHAREDLIBCFLAGS =
27SHAREDLIBCXXFLAGS =
28SHAREDLIBCPPFLAGS =
29
30## Additional flags when building libraries and with threads
31LIBCPPFLAGS =
32
33ifeq ($(ENABLE_RELEASE),1)
34# Make sure that assertions are disabled
35CPPFLAGS+=-DU_RELEASE=1
36endif
37
38ifeq ($(ENABLE_DEBUG),1)
39# Pass debugging flag through
40CPPFLAGS+=-D_DEBUG=1
41ICULIBSUFFIX:=$(ICULIBSUFFIX)d
42endif
43
44# /GF pools strings and places them into read-only memory
45# /EHsc enables exception handling
46# /Zc:wchar_t makes wchar_t a native type. Required for C++ ABI compatibility.
47CFLAGS+=/GF /nologo
48CXXFLAGS+=/GF /nologo /EHsc /Zc:wchar_t
49DEFS+=-DWIN32
50LDFLAGS+=/nologo
51
52# Commands to compile
53COMPILE.c= $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) /c
54COMPILE.cc= $(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) /c
55
56# Commands to link
57LINK.c= LINK.EXE /subsystem:console $(LDFLAGS)
58LINK.cc= LINK.EXE /subsystem:console $(LDFLAGS)
59
60## Commands to make a shared library
61SHLIB.c= LINK.EXE /subsystem:console /DLL $(LDFLAGS)
62SHLIB.cc= LINK.EXE /subsystem:console /DLL $(LDFLAGS)
63
64## Compiler switch to embed a runtime search path
65LD_RPATH=
66LD_RPATH_PRE=
67
68## Compiler switch to embed a library name
69LD_SONAME = /IMPLIB:$(SO_TARGET:.dll=.lib)
70
71## Shared object suffix
72SO = dll
73## Non-shared intermediate object suffix
74STATIC_O = ao
75# OUTOPT is for creating a specific output name
76OUTOPT = /out:
77
78# Static library prefix and file extension
79LIBSICU = $(STATIC_PREFIX)$(ICUPREFIX)
80A = lib
81
82## An import library is needed for z/OS and MSVC
83IMPORT_LIB_EXT = .lib
84
85LIBPREFIX=
86DEFAULT_LIBS = advapi32.lib
87
88# Change the stubnames so that poorly working FAT disks and installation programs can work.
89# This is also for backwards compatibility.
90DATA_STUBNAME = dt
91I18N_STUBNAME = in
92LIBICU = $(STATIC_PREFIX_WHEN_USED)$(ICUPREFIX)
93
94## Link commands to link to ICU libs
95LIBICUDT= $(top_builddir)/stubdata/$(LIBICU)$(DATA_STUBNAME)$(ICULIBSUFFIX).lib
96LIBICUUC= $(LIBDIR)/$(LIBICU)$(COMMON_STUBNAME)$(ICULIBSUFFIX).lib $(LIBICUDT)
97LIBICUI18N= $(LIBDIR)/$(LIBICU)$(I18N_STUBNAME)$(ICULIBSUFFIX).lib
98LIBICULE= $(LIBDIR)/$(LIBICU)$(LAYOUT_STUBNAME)$(ICULIBSUFFIX).lib
99LIBICULX= $(LIBDIR)/$(LIBICU)$(LAYOUTEX_STUBNAME)$(ICULIBSUFFIX).lib
100LIBICUIO= $(LIBDIR)/$(LIBICU)$(IO_STUBNAME)$(ICULIBSUFFIX).lib
101LIBCTESTFW= $(top_builddir)/tools/ctestfw/$(LIBICU)$(CTESTFW_STUBNAME)$(ICULIBSUFFIX).lib
102LIBICUTOOLUTIL= $(LIBDIR)/$(LIBICU)$(TOOLUTIL_STUBNAME)$(ICULIBSUFFIX).lib
103
104## These are the library specific LDFLAGS
105LDFLAGSICUDT= /base:"0x4ad00000" /NOENTRY# The NOENTRY option is required for creating a resource-only DLL.
106LDFLAGSICUUC= /base:"0x4a800000"# in-uc = 1MB
107LDFLAGSICUI18N= /base:"0x4a900000"# io-in = 2MB
108LDFLAGSICUIO= /base:"0x4ab00000"# le-io = 1MB
109LDFLAGSICULE= /base:"0x4ac00000"# lx-le = 512KB
110LDFLAGSICULX= /base:"0x4ac80000"
111LDFLAGSCTESTFW=# Unused for now.
112LDFLAGSICUTOOLUTIL= /base:"0x4ac00000"# Same as layout. Layout and tools probably won't mix.
113
114# The #M# is used to delete lines for icu-config
115# Current full path directory.
116CURR_FULL_DIR=$(subst \,/,$(shell cygpath -da .))#M# -m isn't used because it doesn't work on Win98
117# Current full path directory for use in source code in a -D compiler option.
118CURR_SRCCODE_FULL_DIR=$(subst \,\\,$(shell cygpath -da .))#M#
119
120ifeq ($(srcdir),.)
121SOURCE_FILE=$<
122else
123SOURCE_FILE=$(shell cygpath -dma $<)#M#
124endif
125
126## Compilation rules
127%.$(STATIC_O): $(srcdir)/%.c
128 $(COMPILE.c) $(STATICCPPFLAGS) $(STATICCFLAGS) /Fo$@ $(SOURCE_FILE)
129%.o: $(srcdir)/%.c
130 $(COMPILE.c) $(DYNAMICCPPFLAGS) $(DYNAMICCFLAGS) /Fo$@ $(SOURCE_FILE)
131
132%.$(STATIC_O): $(srcdir)/%.cpp
133 $(COMPILE.cc) $(STATICCPPFLAGS) $(STATICCXXFLAGS) /Fo$@ $(SOURCE_FILE)
134%.o: $(srcdir)/%.cpp
135 $(COMPILE.cc) $(DYNAMICCPPFLAGS) $(DYNAMICCXXFLAGS) /Fo$@ $(SOURCE_FILE)
136
137
138## Dependency rules
139## This is a start to how depdendencies could work
140# The commented out rules may not properly delete the file when ^C is pressed
141# or the compiler fails.
142# make currently doesn't like rules with C:\\PROGRA~1\\.. in the depedency.
143# So system headers are ignored by ignoring \\
144%.d : $(srcdir)/%.c
145 @echo "generating dependency information for $<"
146 @$(GEN_DEPS.c) $< > $@
147# @echo -n "generating dependency information for "
148# @echo -n "$@ $(basename $<).o : " > $@
149# @$(SHELL) -ec '$(GEN_DEPS.c) $< \
150# | grep "#line 1 " | grep -v \\\\ | cut -d " " -f 3 \
151# | /usr/bin/sort -u | sed s/\"$$/\\\\/ | sed s/^\"/\ / >> $@ \
152# || (rm -f $@ && echo $@ && false)'
153
154%.d : $(srcdir)/%.cpp
155 @echo "generating dependency information for $<"
156 @$(GEN_DEPS.cc) $< > $@
157# @echo -n "generating dependency information for "
158# @echo -n "$@ $(basename $<).o : " > $@
159# @$(SHELL) -ec '$(GEN_DEPS.cc) $< \
160# | grep "#line 1 " | grep -v \\\\ | cut -d " " -f 3 \
161# | /usr/bin/sort -u | sed s/\"$$/\\\\/ | sed s/^\"/\ / >> $@ \
162# || (rm -f $@ && echo $@ && false)'
163
164## Compile a Windows resource file
165%.res : $(srcdir)/%.rc
166 rc.exe /fo$@ $(CPPFLAGS) $(SOURCE_FILE)
167
168## Versioned target for a shared library.
169FINAL_SO_TARGET= $(basename $(SO_TARGET))$(SO_TARGET_VERSION_MAJOR).$(SO)
170MIDDLE_SO_TARGET=$(FINAL_SO_TARGET)
171
172## Special pkgdata information that is needed
173PKGDATA_VERSIONING = -r $(SO_TARGET_VERSION_MAJOR)
174ICUPKGDATA_INSTALL_DIR = $(shell cygpath -dma $(DESTDIR)$(ICUPKGDATA_DIR))#M#
175ICUPKGDATA_INSTALL_LIBDIR = $(shell cygpath -dma $(DESTDIR)$(libdir))#M#
176
177## Versioned import library names. The library names are versioned,
178## but the import libraries do not need versioning.
179IMPORT_LIB = $(basename $(SO_TARGET))$(IMPORT_LIB_EXT)#M#
180MIDDLE_IMPORT_LIB = $(IMPORT_LIB)#M#
181FINAL_IMPORT_LIB = $(MIDDLE_IMPORT_LIB)#M#
182
183# The following is for Makefile.inc's use.
184ICULIBSUFFIX_VERSION = $(LIB_VERSION_MAJOR)
185
186## Versioned libraries rules
187#%$(SO_TARGET_VERSION_MAJOR).$(SO): %$(SO_TARGET_VERSION).$(SO)
188# $(RM) $@ && cp ${<F} $@
189# The following rule is a no op. We don't want symbolic links
190%.$(SO): %$(SO_TARGET_VERSION_MAJOR).$(SO)
191 @echo -n
192# $(RM) $@ && ln -s ${<F} $@
193
194## Install libraries as executable
195INSTALL-L=$(INSTALL_PROGRAM)
196
197# Environment variable to set a runtime search path
198LDLIBRARYPATH_ENVVAR = PATH
199
200# These are needed to allow the pkgdata nmake files to work
201PKGDATA_OPTS = -v
202PKGDATA_INVOKE_OPTS = MAKEFLAGS=
203
204# Include the version information in the shared library
205ENABLE_SO_VERSION_DATA=1
206
207## End Cygwin-specific setup
208