diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2021-01-05 21:43:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-05 21:43:20 +0100 |
commit | 22292c1f52b89ec5966d860ccaef9649a2cbf39e (patch) | |
tree | f544136184357ed67524798e8927298c6824e584 /ACE/include | |
parent | 0aa67056f2397d224d948d038cb46ff1eabe2ffc (diff) | |
parent | 2815569ae3ec537e4bdf219761b08ecfe1a6b039 (diff) | |
download | ATCD-22292c1f52b89ec5966d860ccaef9649a2cbf39e.tar.gz |
Merge pull request #1388 from jwillemsen/jwi-cegcc
Removed support for CE GCC, not maintained for a long time, closes #1387
Diffstat (limited to 'ACE/include')
-rw-r--r-- | ACE/include/makeinclude/platform_cegcc.GNU | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/ACE/include/makeinclude/platform_cegcc.GNU b/ACE/include/makeinclude/platform_cegcc.GNU deleted file mode 100644 index 6456f9b1c08..00000000000 --- a/ACE/include/makeinclude/platform_cegcc.GNU +++ /dev/null @@ -1,61 +0,0 @@ -# -# This file should allow to build ACE for Windows CE with GCC tools. -# -# Don't forget to define the ACE_ROOT environment variable! -# - -# -# Chose your target CPU (by default we set it to ARM. In your -# platform_macros.GNU file you can override this to pentium, i486 or i386 -# -TCPU ?= arm - -cygwin32 = 1 - -# Cygwin doesn't have rwho -rwho = 0 - -# Cygwin doesn't allow to add the version number of ACE to the dll name -# because fe ace.dll.5.2.3 isn't a valid dll name -versioned_so=0 - -ACE_CE_VER ?= 0x600 - -qos ?= 1 - -# Disable auto-import warnings. The Cygwin linker has a problem with imports -# See https://sourceforge.net/tracker/?func=detail&atid=102435&aid=683455&group_id=2435 -# for the details why to do this. -LDFLAGS += -Wl,--enable-auto-import -CPPFLAGS += -DACE_HAS_CEGCC - -CPPFLAGS += -D_WIN32_WCE=$(ACE_CE_VER) -DUNICODE -D_UNICODE -D_WINDOWS -DCEVER -DWIN32 -D_WINSOCKAPI_ -RCFLAGS += -D_WIN32_WCE=$(ACE_CE_VER) -DUNICODE -D_UNICODE -D_WINDOWS -DCEVER -DWIN32 -D_WINSOCKAPI_ -D_WIN32_IE=0x0500 - -cpumodelflag=0 -tunemodelflag=0 - -CROSS_COMPILE ?= i386-mingw32ce- - -LIBS += -lcoredll -lmingw32 -lmingwex -lws2 -lsupc++ -liphlpapi - -no_hidden_visibility ?= 1 -qos ?= 1 - -ifdef COMSPEC - HOST_EXE_EXT = .exe -endif - -ifneq (,$(HOST_ROOT)) -TAO_IDLFLAGS += -g $(HOST_ROOT)/bin/ace_gperf -TAO_IDL = $(HOST_ROOT)/bin/tao_idl$(HOST_EXE_EXT) -TAO_IDL3_TO_IDL2 = $(HOST_ROOT)/bin/tao_idl3_to_idl2$(HOST_EXE_EXT) -TAO_IDL_DEP = $(TAO_IDL) -TAO_IDL3_TO_IDL2_DEP = $(TAO_IDL3_TO_IDL2) -else -# Append the HOST_EXE_EXT if it's not already there -TAO_IDL_DEP = $(TAO_IDL:$(HOST_EXE_EXT)=)$(HOST_EXE_EXT) -TAO_IDL3_TO_IDL2_DEP = $(TAO_IDL3_TO_IDL2:$(HOST_EXE_EXT)=)$(HOST_EXE_EXT) -endif - -include $(ACE_ROOT)/include/makeinclude/platform_gnuwin32_common.GNU |