2000-02-17 20:38:33 +01:00
|
|
|
# Makefile.common - common definitions for the winsup directory
|
|
|
|
#
|
2005-07-26 02:38:54 +02:00
|
|
|
# Copyright 2000, 2001, 2002, 2003, 2004, 2005 Red Hat, Inc.
|
2000-02-17 20:38:33 +01:00
|
|
|
#
|
|
|
|
# This file is part of Cygwin.
|
|
|
|
#
|
|
|
|
# This software is a copyrighted work licensed under the terms of the
|
|
|
|
# Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
# details.
|
|
|
|
|
|
|
|
# This makefile requires GNU make.
|
|
|
|
|
2005-10-11 20:17:59 +02:00
|
|
|
CFLAGS_COMMON:=-Wall -Wstrict-aliasing -Wwrite-strings -fno-common -pipe -fbuiltin -fmessage-length=0# -finline-functions
|
2000-10-23 00:43:47 +02:00
|
|
|
MALLOC_DEBUG:=#-DMALLOC_DEBUG -I/cygnus/src/uberbaum/winsup/cygwin/dlmalloc
|
|
|
|
MALLOC_OBJ:=#/cygnus/src/uberbaum/winsup/cygwin/dlmalloc/malloc.o
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-04-18 02:37:04 +02:00
|
|
|
override srcdir:=${shell cd $(srcdir); pwd}
|
2000-04-10 05:51:39 +02:00
|
|
|
ifneq (,${filter-out /%,$(srcdir)})
|
2000-02-17 20:38:33 +01:00
|
|
|
updir:=$(srcdir)/..
|
|
|
|
updir1:=$(updir)/..
|
|
|
|
else
|
|
|
|
updir:=${patsubst %:::,%,${patsubst %/:::,%,$(dir $(srcdir)):::}}
|
|
|
|
ifneq (,${findstring /,$(updir)})
|
|
|
|
updir1:=${patsubst %:::,%,${patsubst %/:::,%,$(dir $(updir)):::}}
|
|
|
|
else
|
|
|
|
updir1:=$(updir)/..
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
pwd:=${shell pwd}
|
2001-05-15 07:11:55 +02:00
|
|
|
ifneq "${filter winsup%,${notdir $(pwd)}}" ""
|
|
|
|
here:=${pwd}/cygwin
|
|
|
|
else
|
|
|
|
here:=${dir $(pwd)}cygwin
|
|
|
|
endif
|
2000-09-01 16:20:30 +02:00
|
|
|
bupdir:=${shell cd $(here)/..; pwd}
|
|
|
|
ifneq (,${filter-out /%,$(bupdir)})
|
2000-02-17 20:38:33 +01:00
|
|
|
bupdir1:=../..
|
2000-08-24 21:05:38 +02:00
|
|
|
bupdir2:=../../..
|
2000-02-17 20:38:33 +01:00
|
|
|
else
|
|
|
|
ifneq (,${findstring /,$(bupdir)})
|
|
|
|
bupdir1:=${patsubst %:::,%,${patsubst %/:::,%,$(dir $(bupdir)):::}}
|
|
|
|
else
|
|
|
|
bupdir1:=$(bupdir)/..
|
|
|
|
endif
|
2000-08-24 21:05:38 +02:00
|
|
|
ifneq (,${findstring /,$(bupdir1)})
|
|
|
|
bupdir2:=${patsubst %:::,%,${patsubst %/:::,%,$(dir $(bupdir1)):::}}
|
|
|
|
else
|
|
|
|
bupdir2:=$(bupdir1)/..
|
|
|
|
endif
|
2000-02-17 20:38:33 +01:00
|
|
|
endif
|
|
|
|
|
2001-12-14 19:23:19 +01:00
|
|
|
zlib_source:=$(updir)/zlib
|
|
|
|
zlib_build:=$(bupdir)/zlib
|
|
|
|
bz2lib_source:=$(updir)/bz2lib
|
|
|
|
bz2lib_build:=$(bupdir)/bz2lib
|
2000-02-17 20:38:33 +01:00
|
|
|
w32api_source:=$(updir)/w32api
|
|
|
|
w32api_build:=$(bupdir)/w32api
|
|
|
|
w32api_lib:=$(w32api_build)/lib
|
|
|
|
newlib_source:=$(updir1)/newlib
|
|
|
|
newlib_build:=$(bupdir1)/newlib
|
|
|
|
cygwin_build:=$(bupdir)/cygwin
|
|
|
|
cygwin_source:=$(updir)/cygwin
|
|
|
|
mingw_build:=$(bupdir)/mingw
|
|
|
|
mingw_source:=$(updir)/mingw
|
|
|
|
utils_build:=$(bupdir)/utils
|
|
|
|
utils_source:=$(updir)/utils
|
2001-10-12 14:52:05 +02:00
|
|
|
ifeq (,${findstring $(newlib_source)/libc/include,$(CFLAGS) $(CXXFLAGS) $(CXX) $(CC)})
|
2001-10-10 03:57:43 +02:00
|
|
|
newlib_include:=-I$(newlib_source)/libc/include
|
2001-10-12 14:52:05 +02:00
|
|
|
endif
|
2001-10-10 03:57:43 +02:00
|
|
|
ifeq (,${findstring $(cygwin_source)/include,$(CFLAGS) $(CXXFLAGS) $(CXX) $(CC)})
|
|
|
|
cygwin_include:=-I$(cygwin_source)/include
|
|
|
|
endif
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-04-19 03:02:51 +02:00
|
|
|
# Try to determine what directories are available in winsup.
|
|
|
|
# Attempt to properly detect missing mingw or w32api and adjust command
|
|
|
|
# line parameters appropriately
|
|
|
|
|
2005-03-23 04:22:27 +01:00
|
|
|
# nostdinc:=${shell [ -d "$(updir)/w32api" ] && echo "-nostdinc"}
|
|
|
|
# ifneq (,$(nostdinc))
|
2003-08-06 04:06:43 +02:00
|
|
|
nostdincxx:=-nostdinc++
|
2005-03-23 04:22:27 +01:00
|
|
|
# ifeq (,${findstring $(w32api_source),$(CFLAGS) $(CXXFLAGS) $(CXX) $(CC)})
|
2003-04-19 03:02:51 +02:00
|
|
|
w32api_include:=-I$(w32api_source)/include
|
2005-03-23 04:22:27 +01:00
|
|
|
# endif
|
|
|
|
# endif
|
2003-04-19 03:02:51 +02:00
|
|
|
|
|
|
|
mingw_include:=${shell [ -d "$(mingw_source)/include" ] && echo "-I$(mingw_source)/include"}
|
|
|
|
ifneq (,$(mingw_include))
|
|
|
|
nostdlib:=-nostdlib
|
|
|
|
else
|
|
|
|
nostdlib:=
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq (,${nostdlib})
|
|
|
|
nostdinc:=
|
|
|
|
endif
|
|
|
|
|
2003-05-12 13:06:00 +02:00
|
|
|
INCLUDES:=-I. $(cygwin_include) -I$(cygwin_source) $(newlib_include) $(w32api_include)
|
2000-02-17 20:38:33 +01:00
|
|
|
ifdef CONFIG_DIR
|
|
|
|
INCLUDES+=-I$(CONFIG_DIR)
|
|
|
|
endif
|
|
|
|
|
2003-04-19 03:02:51 +02:00
|
|
|
MINGW_INCLUDES:=${mingw_include} $(w32api_include)
|
2002-07-07 02:42:09 +02:00
|
|
|
MINGW_CFLAGS:=-mno-cygwin $(MINGW_INCLUDES)
|
|
|
|
MINGW_CXXFLAGS:=${filter-out $(newlib_source)/%,$(CXXFLAGS)} -mno-cygwin $(MINGW_INCLUDES)
|
2003-01-22 18:10:02 +01:00
|
|
|
MINGW_LDFLAGS:=-B${mingw_build} -B${mingw_build}/mingwex
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
GCC_DEFAULT_OPTIONS:=$(CFLAGS_COMMON) $(CFLAGS_CONFIG) $(INCLUDES)
|
|
|
|
|
|
|
|
# Link in libc and libm from newlib
|
|
|
|
|
|
|
|
LIBC:=$(newlib_build)/libc/libc.a
|
|
|
|
LIBM:=$(newlib_build)/libm/libm.a
|
2003-05-12 13:06:00 +02:00
|
|
|
CRT0:=$(cygwin_build)/crt0.o
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
ALL_CFLAGS:=$(DEFS) $(MALLOC_DEBUG) $(CFLAGS) $(GCC_DEFAULT_OPTIONS)
|
2003-03-29 05:15:52 +01:00
|
|
|
ALL_CXXFLAGS=$(DEFS) $(MALLOC_DEBUG) $(CXXFLAGS) $(GCC_DEFAULT_OPTIONS)
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
ifndef PREPROCESS
|
|
|
|
c=-c
|
|
|
|
o=.o
|
|
|
|
else
|
2005-03-23 04:22:27 +01:00
|
|
|
c=-E -dD
|
2000-02-17 20:38:33 +01:00
|
|
|
o=.E
|
|
|
|
endif
|
|
|
|
|
2000-12-03 06:40:45 +01:00
|
|
|
libgcc:=${subst \,/,${shell $(CC_FOR_TARGET) -print-libgcc-file-name}}
|
2001-10-10 03:57:43 +02:00
|
|
|
gcc_libdir:=${word 1,${dir $(libgcc)}}
|
|
|
|
ifeq (,${findstring $(gcc_libdir),$(CFLAGS) $(CXXFLAGS) $(CXX) $(CC)})
|
2003-03-09 20:22:15 +01:00
|
|
|
GCC_INCLUDE:=${subst //,/,-I$(gcc_libdir)/include}
|
2001-10-10 03:57:43 +02:00
|
|
|
endif
|
2000-02-17 20:38:33 +01:00
|
|
|
|
winsup/ChangeLog:
* Makefile.common (COMPILE_CXX): Add support for per-file overrides
to exclude $(nostdinc) and $(nostdincxx) from compiler flags.
(COMPILE_CC): Likewise for $(nostdinc).
winsup/cygwin/ChangeLog:
* Makefile.in (DLL_OFILES): Add libstdcxx_wrapper.o
(libstdcxx_wrapper_CFLAGS): Add flags for new module.
(_cygwin_crt0_common_STDINCFLAGS): Define per-file override.
(libstdcxx_wrapper_STDINCFLAGS, cxx_STDINCFLAGS): Likewise.
* cxx.cc: Include "cygwin-cxx.h".
(operator new): Tweak prototype for full standards compliance.
(operator new[]): Likewise.
(operator new (nothrow)): New fallback function.
(operator new[] (nothrow), operator delete (nothrow),
operator delete[] (nothrow)): Likewise.
(default_cygwin_cxx_malloc): New struct of pointers to the above,
for final last-resort fallback default.
* cygwin-cxx.h: New file.
(struct per_process_cxx_malloc): Define.
(default_cygwin_cxx_malloc): Declare extern.
* cygwin.din (__wrap__ZdaPv): Export new wrapper.
(__wrap__ZdaPvRKSt9nothrow_t, __wrap__ZdlPv,
__wrap__ZdlPvRKSt9nothrow_t, __wrap__Znaj,
__wrap__ZnajRKSt9nothrow_t, __wrap__Znwj,
__wrap__ZnwjRKSt9nothrow_t): Likewise.
* globals.cc (__cygwin_user_data): Init newly-repurposed 'forkee'
field (now 'cxx_malloc') to point to default_cygwin_cxx_malloc.
* libstdcxx_wrapper.cc: New file.
(__wrap__ZdaPv, __wrap__ZdaPvRKSt9nothrow_t, __wrap__ZdlPv,
__wrap__ZdlPvRKSt9nothrow_t, __wrap__Znaj,
__wrap__ZnajRKSt9nothrow_t, __wrap__Znwj,
__wrap__ZnwjRKSt9nothrow_t): Define wrapper functions for libstdc++
malloc operators and their overrides.
* winsup.h (default_cygwin_cxx_malloc): Declare extern.
* include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
* include/sys/cygwin.h (struct per_process_cxx_malloc): Forward
declare here.
(struct per_process::forkee): Rename and repurpose from this ...
(struct per_process::cxx_malloc): ... to this.
* lib/_cygwin_crt0_common.cc: Include cygwin-cxx.h.
(WEAK): Define shorthand helper macro.
(__cygwin_cxx_malloc): Define and populate with weak references
to whatever libstdc++ malloc operators will be visible at final
link time for Cygwin apps and dlls.
(_cygwin_crt0_common): Always look up cygwin DLL's internal
per_process data, and don't test for (impossible) failure. Inherit
any members of __cygwin_cxx_malloc that we don't have overrides
for from the DLL's default and store the resulting overall set of
overrides back into the DLL's global per_process data.
2009-07-07 22:12:44 +02:00
|
|
|
COMPILE_CXX=$(CXX) $c $(if $($(*F)_STDINCFLAGS),,$(nostdincxx) $(nostdinc)) \
|
|
|
|
$(ALL_CXXFLAGS) $(GCC_INCLUDE) -fno-rtti -fno-exceptions
|
|
|
|
COMPILE_CC=$(CC) $c $(if $($(*F)_STDINCFLAGS),,$(nostdinc)) $(ALL_CFLAGS) $(GCC_INCLUDE)
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
vpath %.a $(cygwin_build):$(w32api_lib):$(newlib_build)/libc:$(newlib_build)/libm
|
|
|
|
|
2000-04-09 08:15:43 +02:00
|
|
|
MAKEOVERRIDES_WORKAROUND=${wordlist 2,1,a b c}
|
|
|
|
|
|
|
|
ifneq ($(MAKEOVERRIDES_WORKAROUND),)
|
|
|
|
override MAKE:=$(MAKE) $(MAKEOVERRIDES)
|
|
|
|
MAKEOVERRIDES:=
|
|
|
|
export MAKEOVERRIDES
|
|
|
|
endif
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-10-01 06:32:36 +02:00
|
|
|
ifdef RPATH_ENVVAR
|
|
|
|
VERBOSE=1
|
|
|
|
endif
|
|
|
|
|
2000-10-02 04:05:23 +02:00
|
|
|
ifneq "${findstring -B,$(COMPILE_CXX) $(COMPILE_CC)}" ""
|
|
|
|
VERBOSE=1
|
|
|
|
endif
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
.PRECIOUS: %.o
|
|
|
|
|
|
|
|
%.o: %.cc
|
|
|
|
ifdef VERBOSE
|
|
|
|
$(COMPILE_CXX) -o $(@D)/$(*F)$o $<
|
|
|
|
else
|
2000-12-03 06:40:45 +01:00
|
|
|
@echo $(CXX) $c $(CXXFLAGS) ... $(*F).cc
|
2000-05-24 20:54:10 +02:00
|
|
|
@$(COMPILE_CXX) -o $(@D)/$(*F)$o $<
|
2000-02-17 20:38:33 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
%.o: %.c
|
|
|
|
ifdef VERBOSE
|
|
|
|
$(COMPILE_CC) -o $(@D)/$(*F)$o $<
|
|
|
|
else
|
2000-05-24 20:54:10 +02:00
|
|
|
@echo $(CC) $c $(CFLAGS) ... $(*F).c
|
|
|
|
@$(COMPILE_CC) -o $(@D)/$(*F)$o $<
|
2000-02-17 20:38:33 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
$(bupdir1)/libiberty/%.o: $(updir1)/libiberty/%.c
|
2000-04-10 05:51:39 +02:00
|
|
|
@$(MAKE) -C $(@D) $(@F)
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
$(w32api_lib)/%.a: $(w32api_lib)/Makefile
|
2000-04-10 05:51:39 +02:00
|
|
|
@$(MAKE) --no-print-dir -C $(@D) $(@F)
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-12-14 19:26:43 +01:00
|
|
|
$(bz2lib)/%.a: $(bz2lib)/Makefile
|
2001-12-14 19:23:19 +01:00
|
|
|
@$(MAKE) --no-print-dir -C $(@D) $(@F)
|
|
|
|
|
2001-12-14 19:26:43 +01:00
|
|
|
$(zlib)/%.a: $(zlib)/Makefile
|
2001-12-14 19:23:19 +01:00
|
|
|
@$(MAKE) --no-print-dir -C $(@D) $(@F)
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
all:
|
|
|
|
|
|
|
|
# For auto-rebuilding the Makefile
|
|
|
|
|
|
|
|
.PRECIOUS: Makefile
|
|
|
|
|
|
|
|
Makefile: Makefile.in $(srcdir)/configure.in config.status
|
|
|
|
$(SHELL) config.status
|
|
|
|
|
|
|
|
config.status: configure
|
|
|
|
$(SHELL) config.status --recheck
|