samples/samples.mk
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Feb 02 22:00:18 2009 +0000 (2009-02-02)
changeset 1201 c9967a6e3b25
parent 1155 21e86e18f344
child 1618 7f52e1cca71e
permissions -rw-r--r--
Add a patchset for glibc 2_9. Vampirised from the gentoo repository.

/trunk/patches/glibc/2_9/500-ppc-glibc-2.9-atomic.patch | 414 414 0 0 ++++++++++
/trunk/patches/glibc/2_9/140-regex-BZ9697.patch | 111 111 0 0 +++
/trunk/patches/glibc/2_9/190-queue-header-updates.patch | 89 89 0 0 ++
/trunk/patches/glibc/2_9/370-hppa_glibc-2.7-hppa-nptl-carlos.patch | 249 249 0 0 ++++++
/trunk/patches/glibc/2_9/450-alpha-glibc-2.5-no-page-header.patch | 32 32 0 0 +
/trunk/patches/glibc/2_9/270-ldbl-nexttowardf.patch | 68 68 0 0 ++
/trunk/patches/glibc/2_9/330-2.3.3-china.patch | 35 35 0 0 +
/trunk/patches/glibc/2_9/340-new-valencian-locale.patch | 120 120 0 0 +++
/trunk/patches/glibc/2_9/410-2.9-fnmatch.patch | 64 64 0 0 ++
/trunk/patches/glibc/2_9/350-2.4-undefine-__i686.patch | 47 47 0 0 +
/trunk/patches/glibc/2_9/160-i386-x86_64-revert-clone-cfi.patch | 53 53 0 0 +
/trunk/patches/glibc/2_9/420-dont-build-timezone.patch | 19 19 0 0 +
/trunk/patches/glibc/2_9/150-regex-BZ697.patch | 28 28 0 0 +
/trunk/patches/glibc/2_9/290-no-inline-gmon.patch | 38 38 0 0 +
/trunk/patches/glibc/2_9/280-section-comments.patch | 29 29 0 0 +
/trunk/patches/glibc/2_9/180-math-tests.patch | 72 72 0 0 ++
/trunk/patches/glibc/2_9/120-_nss_dns_gethostbyaddr2_r-check-and-adjust-the-buffer-alignment.patch | 35 35 0 0 +
/trunk/patches/glibc/2_9/250-resolv-dynamic.patch | 44 44 0 0 +
/trunk/patches/glibc/2_9/300-2.9-check_native-headers.patch | 22 22 0 0 +
/trunk/patches/glibc/2_9/310-2.3.6-fix-pr631.patch | 50 50 0 0 +
/trunk/patches/glibc/2_9/130-add_prio-macros.patch | 26 26 0 0 +
/trunk/patches/glibc/2_9/260-fadvise64_64.patch | 30 30 0 0 +
/trunk/patches/glibc/2_9/440-alpha-glibc-2.4-xstat.patch | 249 249 0 0 ++++++
/trunk/patches/glibc/2_9/170-2.10-dns-no-gethostbyname4.patch | 35 35 0 0 +
/trunk/patches/glibc/2_9/230-2.3.3-localedef-fix-trampoline.patch | 74 74 0 0 ++
/trunk/patches/glibc/2_9/360-2.8-nscd-one-fork.patch | 45 45 0 0 +
/trunk/patches/glibc/2_9/480-alpha-glibc-2.8-cache-shape.patch | 18 18 0 0 +
/trunk/patches/glibc/2_9/210-2.9-strlen-hack.patch | 109 109 0 0 +++
/trunk/patches/glibc/2_9/320-2.9-assume-pipe2.patch | 59 59 0 0 +
/trunk/patches/glibc/2_9/100-ssp-compat.patch | 193 193 0 0 +++++
/trunk/patches/glibc/2_9/110-respect-env-CPPFLAGS.patch | 30 30 0 0 +
/trunk/patches/glibc/2_9/220-manual-no-perl.patch | 29 29 0 0 +
/trunk/patches/glibc/2_9/390-2.3.3_pre20040117-pt_pax.patch | 35 35 0 0 +
/trunk/patches/glibc/2_9/460-alpha-glibc-2.5-no-asm-elf-header.patch | 38 38 0 0 +
/trunk/patches/glibc/2_9/400-tests-sandbox-libdl-paths.patch | 198 198 0 0 +++++
/trunk/patches/glibc/2_9/240-i386-LOAD_PIC_REG.patch | 23 23 0 0 +
/trunk/patches/glibc/2_9/200-awk-in-C-locale.patch | 23 23 0 0 +
/trunk/patches/glibc/2_9/430-2.7-cross-compile-nptl.patch | 57 57 0 0 +
/trunk/patches/glibc/2_9/380-2.3.6-dl_execstack-PaX-support.patch | 71 71 0 0 ++
/trunk/patches/glibc/2_9/490-ptr-mangling.patch | 114 114 0 0 +++
/trunk/patches/glibc/2_9/470-alpha-glibc-2.8-creat.patch | 19 19 0 0 +
41 files changed, 3094 insertions(+)
yann@166
     1
# Makefile to manage samples
yann@63
     2
yann@1001
     3
# ----------------------------------------------------------
yann@166
     4
# Build the list of available samples
yann@182
     5
CT_TOP_SAMPLES := $(patsubst $(CT_TOP_DIR)/samples/%/crosstool.config,%,$(wildcard $(CT_TOP_DIR)/samples/*/crosstool.config))
yann@182
     6
CT_LIB_SAMPLES := $(filter-out $(CT_TOP_SAMPLES),$(patsubst $(CT_LIB_DIR)/samples/%/crosstool.config,%,$(wildcard $(CT_LIB_DIR)/samples/*/crosstool.config)))
yann@1001
     7
CT_SAMPLES := $(sort $(CT_TOP_SAMPLES) $(CT_LIB_SAMPLES))
yann@182
     8
yann@1001
     9
# ----------------------------------------------------------
yann@1001
    10
# This part deals with the samples help entries
yann@63
    11
yann@176
    12
help-config::
yann@333
    13
	@echo  '  saveconfig         - Save current config as a preconfigured target'
yann@176
    14
yann@176
    15
help-samples::
yann@544
    16
	@echo  '  list-samples       - prints the list of all samples (for scripting)'
yann@544
    17
	@echo  '  show-<sample>      - show a brief overview of <sample> (list below)'
yann@544
    18
	@echo  '  <sample>           - preconfigure crosstool-NG with <sample> (list below)'
yann@1025
    19
	@echo  '  build-all[.#]      - Build *all* samples (list below) and install in'
yann@1025
    20
	@echo  '                       $${CT_PREFIX} (which you must set)'
yann@1025
    21
	@echo  '  Available samples:'
yann@182
    22
	@$(CT_LIB_DIR)/scripts/showSamples.sh $(CT_SAMPLES)
yann@176
    23
yann@560
    24
help-distrib::
yann@560
    25
	@echo  '  wiki-samples       - Print a DokuWiki table of samples'
yann@560
    26
yann@1025
    27
help-env::
yann@1025
    28
	@echo  '  CT_PREFIX          - directory in which to auto-install samples'
yann@1025
    29
	@echo  '                       (see action "build-all", above).'
yann@1025
    30
yann@1001
    31
# ----------------------------------------------------------
yann@1001
    32
# This part deals with printing samples information
yann@1001
    33
yann@1001
    34
# Prints the details of a sample
yann@1001
    35
PHONY += $(patsubst %,show-%,$(CT_SAMPLES))
yann@539
    36
$(patsubst %,show-%,$(CT_SAMPLES)):
yann@539
    37
	@$(CT_LIB_DIR)/scripts/showSamples.sh -v $(patsubst show-%,%,$(@))
yann@539
    38
yann@1001
    39
# print the list of all available samples
yann@544
    40
PHONY += list-samples
yann@544
    41
list-samples: .FORCE
yann@1155
    42
	@echo $(CT_SAMPLES) |$(sed) -r -e 's/ /\n/g;' |sort
yann@474
    43
yann@1001
    44
wiki-samples:
yann@1001
    45
	$(SILENT)$(CT_LIB_DIR)/scripts/showSamples.sh -w $(CT_SAMPLES)
yann@1001
    46
yann@1001
    47
# ----------------------------------------------------------
yann@1001
    48
# This part deals with saving/restoring samples
yann@1001
    49
yann@1001
    50
# Save a sample
yann@1001
    51
saveconfig:
yann@1001
    52
	$(SILENT)$(CT_LIB_DIR)/scripts/saveSample.sh
yann@1001
    53
yann@1001
    54
# The 'sample_dir' function prints the directory in which the sample is,
yann@1001
    55
# searching first in local samples, then in global samples
yann@1001
    56
define sample_dir
yann@1001
    57
$$( [ -d $(CT_TOP_DIR)/samples/$(1) ] && echo "$(CT_TOP_DIR)/samples/$(1)" || echo "$(CT_LIB_DIR)/samples/$(1)")
yann@1001
    58
endef
yann@1001
    59
yann@933
    60
# How we do recall one sample
yann@182
    61
PHONY += $(CT_SAMPLES)
yann@166
    62
$(CT_SAMPLES):
yann@940
    63
	$(SILENT)cp $(call sample_dir,$@)/crosstool.config .config
yann@1025
    64
	$(SILENT)$(MAKE) -rf $(CT_NG) V=$(V) oldconfig
yann@935
    65
	@echo
yann@935
    66
	@echo  '***********************************************************'
yann@935
    67
	@echo
yann@940
    68
	$(SILENT)( . $(call sample_dir,$@)/reported.by;                             \
yann@935
    69
	   echo "Initially reported by: $${reporter_name:-Yann E. MORIN}";          \
yann@935
    70
	   echo "URL: $${reporter_url:-http://ymorin.is-a-geek.org/}";              \
yann@935
    71
	   if [ -n "$${reporter_comment}" ]; then                                   \
yann@935
    72
	     echo  ;                                                                \
yann@935
    73
	     echo  "Comment:";                                                      \
yann@935
    74
	     printf "$${reporter_comment}\n";                                       \
yann@935
    75
	   fi;                                                                      \
yann@935
    76
	   echo  ;                                                                  \
yann@935
    77
	   echo  '***********************************************************';     \
yann@935
    78
	 )
yann@1159
    79
	$(SILENT)if $(grep) -E '^CT_EXPERIMENTAL=y$$' .config >/dev/null 2>&1; then \
yann@940
    80
	   echo  ;                                                                  \
yann@940
    81
	   echo  'WARNING! This sample may enable experimental features.';          \
yann@940
    82
	   echo  '         Please be sure to review the configuration prior';       \
yann@940
    83
	   echo  '         to building and using your toolchain!';                  \
yann@940
    84
	   echo  'Now, you have been warned!';                                      \
yann@940
    85
	   echo  ;                                                                  \
yann@940
    86
	   echo  '***********************************************************';     \
yann@822
    87
	 fi
yann@935
    88
	@echo
yann@933
    89
	@echo  'Now configured for "$@"'
yann@182
    90
yann@1001
    91
# ----------------------------------------------------------
yann@1025
    92
# Some helper functions
yann@166
    93
yann@1025
    94
# Create the rule to build a sample
yann@1025
    95
# $1: sample tuple
yann@1025
    96
# $2: prefix
yann@1025
    97
define build_sample
yann@1067
    98
	@$(ECHO) '  CONF  $(1)'
yann@1025
    99
	$(SILENT)cp $(call sample_dir,$(1))/crosstool.config .config
yann@1155
   100
	$(SILENT)$(sed) -i -r -e 's:^(CT_PREFIX_DIR=).*$$:\1"$(2)":;' .config
yann@1155
   101
	$(SILENT)$(sed) -i -r -e 's:^.*(CT_LOG_(WARN|INFO|EXTRA|DEBUG|ALL)).*$$:# \1 is not set:;' .config
yann@1155
   102
	$(SILENT)$(sed) -i -r -e 's:^.*(CT_LOG_ERROR).*$$:\1=y:;' .config
yann@1155
   103
	$(SILENT)$(sed) -i -r -e 's:^(CT_LOG_LEVEL_MAX)=.*$$:\1="ERROR":;' .config
yann@1155
   104
	$(SILENT)$(sed) -i -r -e 's:^.*(CT_LOG_TO_FILE).*$$:\1=y:;' .config
yann@1155
   105
	$(SILENT)$(sed) -i -r -e 's:^.*(CT_LOG_PROGRESS_BAR).*$$:\1=y:;' .config
yann@1067
   106
	$(SILENT)$(MAKE) -rf $(CT_NG) V=0 oldconfig
yann@1025
   107
	@$(ECHO) '  BUILD $(1)'
yann@1067
   108
	$(SILENT)$(MAKE) -rf $(CT_NG) V=0 build
yann@1025
   109
endef
yann@230
   110
yann@1025
   111
# ----------------------------------------------------------
yann@1025
   112
# Build samples for use (not regtest!)
yann@230
   113
yann@1025
   114
# Check that PREFIX is set if building samples
yann@1025
   115
ifneq ($(strip $(MAKECMDGOALS)),)
yann@1025
   116
ifneq ($(strip $(filter $(patsubst %,build-%,$(CT_SAMPLES)) build-all,$(MAKECMDGOALS))),)
yann@230
   117
yann@1025
   118
ifeq ($(strip $(CT_PREFIX)),)
yann@1025
   119
$(error Please set 'CT_PREFIX' to where you want to install generated toolchain samples!)
yann@1025
   120
endif
yann@333
   121
yann@1025
   122
endif # MAKECMDGOALS contains a build sample rule
yann@1025
   123
endif # MAKECMDGOALS != ""
yann@1025
   124
yann@1025
   125
# Build a single sample
yann@1025
   126
$(patsubst %,build-%,$(CT_SAMPLES)):
yann@1025
   127
	$(call build_sample,$(patsubst build-%,%,$@),$(CT_PREFIX)/$(patsubst build-%,%,$@))
yann@1025
   128
yann@1025
   129
# Build al samples
yann@1025
   130
build-all: $(patsubst %,build-%,$(CT_SAMPLES))
yann@1025
   131
yann@1025
   132
# Build all samples, overiding the number of // jobs per sample
yann@1025
   133
build-all.%:
yann@1155
   134
	$(SILENT)$(MAKE) -rf $(CT_NG) V=$(V) $(shell echo "$(@)" |$(sed) -r -e 's|^([^.]+)\.([[:digit:]]+)$$|\1 CT_JOBS=\2|;')
yann@1025
   135