From 6b0c12d18ef2535c84bf043a2c03efc30ff93f9b Mon Sep 17 00:00:00 2001 From: zimoch Date: Wed, 27 Nov 2013 10:59:26 +0000 Subject: [PATCH] new in 3.14.12.4 --- configure/os/CONFIG.Common.cygwin-x86_64 | 14 +++++++++++++ configure/os/CONFIG.Common.linux-microblaze | 21 +++++++++++++++++++ configure/os/CONFIG.Common.windows-x64-mingw | 15 +++++++++++++ configure/os/CONFIG.cygwin-x86_64.Common | 10 +++++++++ .../os/CONFIG.cygwin-x86_64.cygwin-x86_64 | 11 ++++++++++ configure/os/CONFIG.linux-arm.Common | 10 +++++++++ configure/os/CONFIG.linux-arm.linux-arm | 10 +++++++++ configure/os/CONFIG.windows-x64-mingw.Common | 11 ++++++++++ ...CONFIG.windows-x64-mingw.windows-x64-mingw | 11 ++++++++++ configure/os/CONFIG_SITE.Common.cygwin-x86_64 | 14 +++++++++++++ .../os/CONFIG_SITE.Common.linux-microblaze | 14 +++++++++++++ .../os/CONFIG_SITE.Common.linux-xscale_be | 9 ++++++++ .../os/CONFIG_SITE.darwinCommon.darwinCommon | 20 ++++++++++++++++++ configure/os/CONFIG_SITE.linux-arm.linux-arm | 7 +++++++ ...G_SITE.windows-x64-mingw.windows-x64-mingw | 9 ++++++++ 15 files changed, 186 insertions(+) create mode 100644 configure/os/CONFIG.Common.cygwin-x86_64 create mode 100644 configure/os/CONFIG.Common.linux-microblaze create mode 100644 configure/os/CONFIG.Common.windows-x64-mingw create mode 100644 configure/os/CONFIG.cygwin-x86_64.Common create mode 100644 configure/os/CONFIG.cygwin-x86_64.cygwin-x86_64 create mode 100644 configure/os/CONFIG.linux-arm.Common create mode 100644 configure/os/CONFIG.linux-arm.linux-arm create mode 100644 configure/os/CONFIG.windows-x64-mingw.Common create mode 100644 configure/os/CONFIG.windows-x64-mingw.windows-x64-mingw create mode 100644 configure/os/CONFIG_SITE.Common.cygwin-x86_64 create mode 100644 configure/os/CONFIG_SITE.Common.linux-microblaze create mode 100644 configure/os/CONFIG_SITE.Common.linux-xscale_be create mode 100644 configure/os/CONFIG_SITE.darwinCommon.darwinCommon create mode 100644 configure/os/CONFIG_SITE.linux-arm.linux-arm create mode 100644 configure/os/CONFIG_SITE.windows-x64-mingw.windows-x64-mingw diff --git a/configure/os/CONFIG.Common.cygwin-x86_64 b/configure/os/CONFIG.Common.cygwin-x86_64 new file mode 100644 index 000000000..040a6042a --- /dev/null +++ b/configure/os/CONFIG.Common.cygwin-x86_64 @@ -0,0 +1,14 @@ +# CONFIG.Common.cygwin-x86_64 +# +# Revision-Id: anj@aps.anl.gov-20131120005049-xcx9o8ohtimzbib1 +# This file is maintained by the build community. +# +# Definitions for cygwin-x86_64 target builds +# Sites may override these definitions in CONFIG_SITE.Common.cygwin-x86_64 +#------------------------------------------------------- + +include $(CONFIG)/os/CONFIG.Common.cygwin-x86 + +ARCH_DEP_CFLAGS = -m64 +ARCH_DEP_LDFLAGS = -m64 + diff --git a/configure/os/CONFIG.Common.linux-microblaze b/configure/os/CONFIG.Common.linux-microblaze new file mode 100644 index 000000000..21ecb03ac --- /dev/null +++ b/configure/os/CONFIG.Common.linux-microblaze @@ -0,0 +1,21 @@ +# CONFIG.Common.linux-microblaze +# +# This file is maintained by the build community. +# +# Definitions for Xilinx MicroBlaze FPGA Soft Core Processor target builds. +# This target has been tested with the Xilinx Spartan 6 MicroBlaze. + +# Site-specific overrides of these definitions should be made in the file +# CONFIG_SITE.Common.linux-microblaze +#------------------------------------------------------- + +# Include definitions common to all Linux targets +include $(CONFIG)/os/CONFIG.Common.linuxCommon + +ARCH_CLASS = microblaze + +ifeq ($(BUILD_CLASS),CROSS) + VALID_BUILDS = Ioc + GNU_TARGET = microblazeel-unknown-linux-gnu + CMPLR_PREFIX = $(addsuffix -,$(GNU_TARGET)) +endif diff --git a/configure/os/CONFIG.Common.windows-x64-mingw b/configure/os/CONFIG.Common.windows-x64-mingw new file mode 100644 index 000000000..79abb349a --- /dev/null +++ b/configure/os/CONFIG.Common.windows-x64-mingw @@ -0,0 +1,15 @@ +# CONFIG.Common.windows-x64-mingw +# +# Revision-Id: anj@aps.anl.gov-20131120005049-xcx9o8ohtimzbib1 +# This file is maintained by the build community. +# +# Definitions for windows-x64-mingw target builds +# Sites may override these definitions in CONFIG_SITE.Common.windows-x64-mingw +#------------------------------------------------------- + +include $(CONFIG)/os/CONFIG.Common.win32-x86-mingw + +ARCH_CLASS = x64 + +ARCH_DEP_CFLAGS = -m64 +ARCH_DEP_LDFLAGS = -m64 diff --git a/configure/os/CONFIG.cygwin-x86_64.Common b/configure/os/CONFIG.cygwin-x86_64.Common new file mode 100644 index 000000000..8b35f2e35 --- /dev/null +++ b/configure/os/CONFIG.cygwin-x86_64.Common @@ -0,0 +1,10 @@ +# CONFIG.cygwin-x86_64.Common +# +# Revision-Id: anj@aps.anl.gov-20131120005049-xcx9o8ohtimzbib1 +# This file is maintained by the build community. +# +# Definitions for cygwin-x86_64 host archs +# Sites may override these definitions in CONFIG_SITE.cygwin-x86_64.Common +#------------------------------------------------------- + +include $(CONFIG)/os/CONFIG.cygwin-x86.Common diff --git a/configure/os/CONFIG.cygwin-x86_64.cygwin-x86_64 b/configure/os/CONFIG.cygwin-x86_64.cygwin-x86_64 new file mode 100644 index 000000000..a22295dd0 --- /dev/null +++ b/configure/os/CONFIG.cygwin-x86_64.cygwin-x86_64 @@ -0,0 +1,11 @@ +# CONFIG.cygwin-x86_64.cygwin-x86_64 +# +# Revision-Id: anj@aps.anl.gov-20131120005049-xcx9o8ohtimzbib1 +# +# Definitions for cygwin-x86_64 host - cygwin-x86_64 target builds +# Sites may override these definitions in CONFIG_SITE.cygwin-x86_64.cygwin-x86_64 +#------------------------------------------------------- + +# Include common gnu compiler definitions +include $(CONFIG)/os/CONFIG.cygwin-x86.cygwin-x86 + diff --git a/configure/os/CONFIG.linux-arm.Common b/configure/os/CONFIG.linux-arm.Common new file mode 100644 index 000000000..35514db4f --- /dev/null +++ b/configure/os/CONFIG.linux-arm.Common @@ -0,0 +1,10 @@ +# CONFIG.linux-arm.Common +# +# Revision-Id: anj@aps.anl.gov-20120730225030-kxdpux061bt13ng1 +# +# Definitions for linux-arm host builds +# Sites may override these definitions in CONFIG_SITE.linux-arm.Common +#------------------------------------------------------- + +#Include definitions common to unix hosts +include $(CONFIG)/os/CONFIG.UnixCommon.Common diff --git a/configure/os/CONFIG.linux-arm.linux-arm b/configure/os/CONFIG.linux-arm.linux-arm new file mode 100644 index 000000000..1fd6be019 --- /dev/null +++ b/configure/os/CONFIG.linux-arm.linux-arm @@ -0,0 +1,10 @@ +# CONFIG.linux-arm.linux-arm +# +# Revision-Id: anj@aps.anl.gov-20120730225030-kxdpux061bt13ng1 +# +# Definitions for native linux-arm builds +# Sites may override these definitions in CONFIG_SITE.linux-arm.linux-arm +#------------------------------------------------------- + +# Include common gnu compiler definitions +include $(CONFIG)/CONFIG.gnuCommon diff --git a/configure/os/CONFIG.windows-x64-mingw.Common b/configure/os/CONFIG.windows-x64-mingw.Common new file mode 100644 index 000000000..d9ac010fe --- /dev/null +++ b/configure/os/CONFIG.windows-x64-mingw.Common @@ -0,0 +1,11 @@ +# CONFIG.windows-x64-mingw.Common +# +# Revision-Id: anj@aps.anl.gov-20131120005049-xcx9o8ohtimzbib1 +# This file is maintained by the build community. +# +# Definitions for windows-x64-mingw host archs +# Sites may override these definitions in CONFIG_SITE.windows-x64-mingw.Common +#------------------------------------------------------- + +include $(CONFIG)/os/CONFIG.win32-x86-mingw.Common + diff --git a/configure/os/CONFIG.windows-x64-mingw.windows-x64-mingw b/configure/os/CONFIG.windows-x64-mingw.windows-x64-mingw new file mode 100644 index 000000000..a577d99e6 --- /dev/null +++ b/configure/os/CONFIG.windows-x64-mingw.windows-x64-mingw @@ -0,0 +1,11 @@ +# CONFIG.windows-x64-mingw.windows-x64-mingw +# +# Revision-Id: anj@aps.anl.gov-20131120005049-xcx9o8ohtimzbib1 +# This file is maintained by the build community. +# +# Definitions for windows-x64-mingw target archs +# Sites may override these definitions in CONFIG_SITE.windows-x64-mingw.windows-x64-mingw +#------------------------------------------------------- + +# Include common gnu compiler definitions +include $(CONFIG)/os/CONFIG.win32-x86-mingw.win32-x86-mingw diff --git a/configure/os/CONFIG_SITE.Common.cygwin-x86_64 b/configure/os/CONFIG_SITE.Common.cygwin-x86_64 new file mode 100644 index 000000000..262ed5841 --- /dev/null +++ b/configure/os/CONFIG_SITE.Common.cygwin-x86_64 @@ -0,0 +1,14 @@ +# CONFIG_SITE.Common.cygwin-x86_64 +# +# Revision-Id: anj@aps.anl.gov-20131120005049-xcx9o8ohtimzbib1 +# +# Site Specific definitions for cygwin-x86_64 target +# Only the local epics system manager should modify this file + +# If readline is installed uncomment the following line +# to add command-line editing and history support +#COMMANDLINE_LIBRARY = READLINE + +# Uncomment the following line if readline has problems +#LDLIBS_READLINE = -lreadline -lcurses + diff --git a/configure/os/CONFIG_SITE.Common.linux-microblaze b/configure/os/CONFIG_SITE.Common.linux-microblaze new file mode 100644 index 000000000..43c543c2b --- /dev/null +++ b/configure/os/CONFIG_SITE.Common.linux-microblaze @@ -0,0 +1,14 @@ +# CONFIG_SITE.Common.linux-microblaze +# +# Site specific definitions for linux-microblaze target builds. +#------------------------------------------------------- + +# The gnu tools for cross compiling for MicroBlaze (little endian) +# on Linux can be downloaded from the Xilinx git server: +# git clone git://git.xilinx.com/xldk/microblaze_v2.0_le.git +# +# The result contains a .tgz file with the tool-chain in it. +# Set GNU_DIR to point to the un-tarred tool-chain: + +GNU_DIR = /usr/local/vw/microblaze-2.0/microblazeel-unknown-linux-gnu + diff --git a/configure/os/CONFIG_SITE.Common.linux-xscale_be b/configure/os/CONFIG_SITE.Common.linux-xscale_be new file mode 100644 index 000000000..0d28a4e2a --- /dev/null +++ b/configure/os/CONFIG_SITE.Common.linux-xscale_be @@ -0,0 +1,9 @@ +# CONFIG_SITE.Common.linux-xscale_be +# +# Site specific definitions for linux-xscale_be target builds. +#------------------------------------------------------- + +# Set GNU_DIR to point to directory containing the tool-chain + +GNU_DIR = /usr/local/xscale_be + diff --git a/configure/os/CONFIG_SITE.darwinCommon.darwinCommon b/configure/os/CONFIG_SITE.darwinCommon.darwinCommon new file mode 100644 index 000000000..ea507566d --- /dev/null +++ b/configure/os/CONFIG_SITE.darwinCommon.darwinCommon @@ -0,0 +1,20 @@ +# CONFIG_SITE.darwinCommon.darwinCommon +# +# Revision-Id: jba@aps.anl.gov-20120105164520-me74utuxrzkk0jdn +# This file is maintained by the build community. +# +# Site specific definitions for darwin builds +#------------------------------------------------------- + +# Uncomment the following two definitions to enable the use of DarwinPorts packages. +# +#OP_SYS_INCLUDES += -I/opt/local/include +# dir/firstword/wildcard used to avoid warning -L: directory name (...) does not exist +#OP_SYS_LDFLAGS += $(addprefix -L,$(dir $(firstword $(wildcard /opt/local/lib/*)))) + +# Uncomment the following two definitions to enable the use of Fink packages. +# +#OP_SYS_INCLUDES += -I/sw/include +# dir/firstword/wildcard used to avoid warning -L: directory name (...) does not exist +#OP_SYS_LDFLAGS += $(addprefix -L,$(dir $(firstword $(wildcard /sw/lib/*)))) + diff --git a/configure/os/CONFIG_SITE.linux-arm.linux-arm b/configure/os/CONFIG_SITE.linux-arm.linux-arm new file mode 100644 index 000000000..7c12e166a --- /dev/null +++ b/configure/os/CONFIG_SITE.linux-arm.linux-arm @@ -0,0 +1,7 @@ +# CONFIG_SITE.linux-arm.linux-arm +# +# Revision-Id: anj@aps.anl.gov-20120730225030-kxdpux061bt13ng1 +# +# Site specific definitions for native linux-arm builds +#------------------------------------------------------- + diff --git a/configure/os/CONFIG_SITE.windows-x64-mingw.windows-x64-mingw b/configure/os/CONFIG_SITE.windows-x64-mingw.windows-x64-mingw new file mode 100644 index 000000000..586496472 --- /dev/null +++ b/configure/os/CONFIG_SITE.windows-x64-mingw.windows-x64-mingw @@ -0,0 +1,9 @@ +# CONFIG_SITE.windows-x64-mingw.windows-x64-mingw +# +# Revision-Id: anj@aps.anl.gov-20131120005049-xcx9o8ohtimzbib1 +# +# Site Specific definitions for windows-x64-mingw target +# Only the local epics system manager should modify this file + +# Prefix for mingw compiler from cygwin +#CMPLR_PREFIX = x86_64-w64-mingw32-