diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2024-03-06 10:24:11 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2024-03-06 10:24:11 +0100 |
commit | 4538829ab86b5a1cd4e845e7eab165029c9d6d46 (patch) | |
tree | bbadf39aed0610c8f8f7b41fefff47773b8ac205 /build-0.3/cxx/gnu | |
parent | 23d41842168ac1a1580111b9c5c73500ceee3d57 (diff) | |
parent | aad5ad9bf0c02aa4e79bc6b7d6c934612fff4026 (diff) |
Update upstream source from tag 'upstream/4.2.0'
Update to upstream version '4.2.0'
with Debian dir 1b38df7bbcf313223de3c50107ac0255090fe647
Diffstat (limited to 'build-0.3/cxx/gnu')
-rw-r--r-- | build-0.3/cxx/gnu/configuration-rules.make | 15 | ||||
-rw-r--r-- | build-0.3/cxx/gnu/configuration-static.make | 3 | ||||
-rw-r--r-- | build-0.3/cxx/gnu/configuration.make | 33 | ||||
-rwxr-xr-x | build-0.3/cxx/gnu/configure | 98 | ||||
-rw-r--r-- | build-0.3/cxx/gnu/cxx-d.make | 58 | ||||
-rw-r--r-- | build-0.3/cxx/gnu/cxx-o.make | 40 | ||||
-rw-r--r-- | build-0.3/cxx/gnu/o-e.make | 38 | ||||
-rw-r--r-- | build-0.3/cxx/gnu/o-l.make | 93 |
8 files changed, 0 insertions, 378 deletions
diff --git a/build-0.3/cxx/gnu/configuration-rules.make b/build-0.3/cxx/gnu/configuration-rules.make deleted file mode 100644 index 6d79582..0000000 --- a/build-0.3/cxx/gnu/configuration-rules.make +++ /dev/null @@ -1,15 +0,0 @@ -# file : build/cxx/gnu/configuration-rules.make -# copyright : Copyright (c) 2004-2012 Code Synthesis Tools CC -# license : GNU GPL v2; see accompanying LICENSE file - -$(dcf_root)/cxx/gnu/configuration-dynamic.make: | $(dcf_root)/cxx/gnu/. - $(call message,,$(bld_root)/cxx/gnu/configure $@ $(cxx_optimize) \ -"$(cxx_extra_options)" "$(cxx_ld_extra_options)") - -ifndef %foreign% - -$(dcf_root)/.disfigure:: - $(call message,rm $(dcf_root)/cxx/gnu/configuration-dynamic.make,\ -rm -f $(dcf_root)/cxx/gnu/configuration-dynamic.make) - -endif diff --git a/build-0.3/cxx/gnu/configuration-static.make b/build-0.3/cxx/gnu/configuration-static.make deleted file mode 100644 index d0aee7d..0000000 --- a/build-0.3/cxx/gnu/configuration-static.make +++ /dev/null @@ -1,3 +0,0 @@ -# file : build/cxx/gnu/configuration-static.make -# copyright : Copyright (c) 2004-2012 Code Synthesis Tools CC -# license : GNU GPL v2; see accompanying LICENSE file diff --git a/build-0.3/cxx/gnu/configuration.make b/build-0.3/cxx/gnu/configuration.make deleted file mode 100644 index 2e55f8b..0000000 --- a/build-0.3/cxx/gnu/configuration.make +++ /dev/null @@ -1,33 +0,0 @@ -# file : build/cxx/gnu/configuration.make -# copyright : Copyright (c) 2004-2012 Code Synthesis Tools CC -# license : GNU GPL v2; see accompanying LICENSE file - -$(call include-once,$(bld_root)/cxx/gnu/configuration-rules.make,$(dcf_root)) - -# Static configuration. -# -$(call include,$(bld_root)/cxx/gnu/configuration-static.make) - -ifneq ($(bld_root),$(scf_root)) -$(call -include,$(scf_root)/cxx/gnu/configuration-static.make) -endif - -# Dynamic configuration. -# -cxx_gnu := -cxx_gnu_optimization_options := - -$(call -include,$(dcf_root)/cxx/gnu/configuration-dynamic.make) - -ifdef cxx_gnu - -cxx_gnu_debugging_options := $(if $(findstring y,$(cxx_debug)),-g) - -$(out_root)/%: cxx_gnu_debugging_options := $(cxx_gnu_debugging_options) -$(out_root)/%: cxx_gnu_optimization_options := $(cxx_gnu_optimization_options) - -else - -.NOTPARALLEL: - -endif diff --git a/build-0.3/cxx/gnu/configure b/build-0.3/cxx/gnu/configure deleted file mode 100755 index c551713..0000000 --- a/build-0.3/cxx/gnu/configure +++ /dev/null @@ -1,98 +0,0 @@ -#! /usr/bin/env bash - -# file : build/cxx/gnu/configure -# copyright : Copyright (c) 2004-2012 Code Synthesis Tools CC -# license : GNU GPL v2; see accompanying LICENSE file - -# $1 out file -# $2 optimize (y/n) -# $3 cxx_extra_options -# $4 cxx_ld_extra_options -# -# bld_root - build root -# project_name - project name -# - - -source $bld_root/dialog.bash - -$echo -$echo -$echo "configuring '$project_name'" -$echo -$echo - -$echo -$echo "Please enter the g++ binary you would like to use, for example 'g++-3.4'," -$echo "'/usr/local/bin/g++' or 'distcc g++'." -$echo - -cxx_gnu=`read_path --command g++` - -# Determine the C++ standard. -# -cxx_gnu_standard=`echo "$3" | sed -e 's/.*-std=\([^ ]*\).*/\1/' -e t -e d` - -if [ -z "$cxx_gnu_standard" ]; then - cxx_gnu_standard="gnu++98" -elif [ "$cxx_gnu_standard" = "c++0x" ]; then - cxx_gnu_standard="c++11" -elif [ "$cxx_gnu_standard" = "gnu++0x" ]; then - cxx_gnu_standard="gnu++11" -fi - -# Pass cxx_extra_options and cxx_ld_extra_options since those -# can affect the search paths (e.g., -m32) and target. -# -cxx_gnu_libraries=`$cxx_gnu $3 $4 -print-search-dirs | sed -e 's/libraries: =//p' -e d` - -cxx_gnu_target=`$cxx_gnu $3 $4 -dumpmachine` -cxx_gnu_target=`$bld_root/system/config.sub "$cxx_gnu_target"` - -if [ $? != 0 ]; then - $echo "unable to canonicalize target system '$cxx_gnu_target'" - exit 1 -fi - -cxx_gnu_target_cpu=`echo $cxx_gnu_target | cut -f 1 -d -` -cxx_gnu_target_mf=`echo $cxx_gnu_target | cut -f 2 -d -` -cxx_gnu_target_kernel=`echo $cxx_gnu_target | cut -f 3 -d -` -cxx_gnu_target_os=`echo $cxx_gnu_target | cut -f 4 -d -` - -if [ -z "$cxx_gnu_target_os" ]; then - - # Old format: cpu-mf-os - # - cxx_gnu_target_os=$cxx_gnu_target_kernel - cxx_gnu_target_kernel= -fi - -optimization= - -if [ "$2" == "y" ]; then - - $echo - $echo "Please select the optimization level you would like to use:" - $echo - $echo "(1) -O1 [Tries to reduce code size and execution time, without" - $echo " performing any optimizations that take a great deal of" - $echo " compilation time.]" - $echo "(2) -O2 [Performs nearly all supported optimizations that do not" - $echo " involve a space-speed tradeoff.]" - $echo "(3) -O3 [Optimize even more.]" - $echo "(4) -Os [Optimize for size.]" - $echo - - optimization=`read_option "-O1 -O2 -O3 -Os" "-O2"` - -fi - -echo "cxx_gnu := $cxx_gnu" > $1 -echo "cxx_gnu_standard := $cxx_gnu_standard" >> $1 -echo "cxx_gnu_libraries := $cxx_gnu_libraries" >> $1 -echo "cxx_gnu_optimization_options := $optimization" >> $1 -echo "cxx_gnu_target := $cxx_gnu_target" >> $1 -echo "cxx_gnu_target_cpu := $cxx_gnu_target_cpu" >> $1 -echo "cxx_gnu_target_mf := $cxx_gnu_target_mf" >> $1 -echo "cxx_gnu_target_kernel := $cxx_gnu_target_kernel" >> $1 -echo "cxx_gnu_target_os := $cxx_gnu_target_os" >> $1 diff --git a/build-0.3/cxx/gnu/cxx-d.make b/build-0.3/cxx/gnu/cxx-d.make deleted file mode 100644 index 6611e67..0000000 --- a/build-0.3/cxx/gnu/cxx-d.make +++ /dev/null @@ -1,58 +0,0 @@ -# file : build/cxx/gnu/cxx-o.make -# copyright : Copyright (c) 2004-2012 Code Synthesis Tools CC -# license : GNU GPL v2; see accompanying LICENSE file - -$(call include-once,$(bld_root)/c/cpp-options.make,$(out_base)) -$(call include,$(bld_root)/cxx/gnu/configuration.make) - -# Make will try to build dependecies (since they are ultimately included -# files) during configuartion phase without cxx_gnu being discovered yet. -# This is also why dependecies should be included with -include. -# -ifdef cxx_gnu - -$(out_base)/%.o.d: cxx := $(cxx_gnu) -$(out_base)/%.o.d: cpp_options ?= - -#@@ This needs to be shared with cxx-o. -# -#@@ wrong prefix -# -$(out_base)/%.o.d: expand-cpp-options-impl = \ -$(if $1,$(shell sed -e 's%include: \(.*\)%\1%' -e t -e d $1)) - -$(out_base)/%.o.d: expand-cpp-options = \ -$(call expand-cpp-options-impl,$(filter %.cpp-options,$1)) - -.PRECIOUS: $(out_base)/%.o.d - -ifeq ($(out_base),$(src_base)) -$(out_base)/%.o.d: $(src_base)/%.$(cxx_s_suffix) -else -$(out_base)/%.o.d: $(src_base)/%.$(cxx_s_suffix) | $$(dir $$@). -endif - $(call message,,if test -f $@; then mv $@ $@.old; fi && \ -$(cxx) $(cpp_options) $(call expand-cpp-options,$^) $(cxx_pp_extra_options) \ -$(cxx_extra_options) -M -MG -MP -MQ $@ -MQ $(basename $@) $< | \ -$(bld_root)/c/gnu/dep $(out_base) $(filter %.cpp-options,$^) >$@ && \ -if test -f $@.old; then if cmp -s $@ $@.old; then rm -f $@.old && false; \ -else rm -f $@.old && true; fi fi) - -ifneq ($(out_base),$(src_base)) - -$(out_base)/%.o.d: $(out_base)/%.$(cxx_s_suffix) | $$(dir $$@). - $(call message,,if test -f $@; then mv $@ $@.old; fi && \ -$(cxx) $(cpp_options) $(call expand-cpp-options,$^) $(cxx_pp_extra_options) \ -$(cxx_extra_options) -M -MG -MP -MQ $@ -MQ $(basename $@) $< | \ -$(bld_root)/c/gnu/dep $(out_base) $(filter %.cpp-options,$^) >$@ && \ -if test -f $@.old; then if cmp -s $@ $@.old; then rm -f $@.old && false; \ -else rm -f $@.old && true; fi fi) - -endif - -.PHONY: $(out_base)/%.o.d.$(cxx_s_suffix).clean - -$(out_base)/%.o.d.$(cxx_s_suffix).clean: - $(call message,rm $$1,rm -f $$1,$(basename $(basename $@))) - -endif diff --git a/build-0.3/cxx/gnu/cxx-o.make b/build-0.3/cxx/gnu/cxx-o.make deleted file mode 100644 index 0b751ad..0000000 --- a/build-0.3/cxx/gnu/cxx-o.make +++ /dev/null @@ -1,40 +0,0 @@ -# file : build/cxx/gnu/cxx-o.make -# copyright : Copyright (c) 2004-2012 Code Synthesis Tools CC -# license : GNU GPL v2; see accompanying LICENSE file - -$(call include-once,$(bld_root)/c/cpp-options.make,$(out_base)) -$(call include,$(bld_root)/cxx/gnu/configuration.make) - -$(out_base)/%.o: cxx := $(cxx_gnu) -$(out_base)/%.o: cxx_options := $(cxx_gnu_optimization_options) $(cxx_gnu_debugging_options) - -#@@ wrong prefix -# -$(out_base)/%.o: expand-cpp-options-impl = \ -$(if $1,$(shell sed -e 's%include: \(.*\)%\1%' -e t -e d $1)) - -$(out_base)/%.o: expand-cpp-options = \ -$(call expand-cpp-options-impl,$(filter %.cpp-options,$1)) - -ifeq ($(out_base),$(src_base)) -$(out_base)/%.o: $(src_base)/%.$(cxx_s_suffix) -else -$(out_base)/%.o: $(src_base)/%.$(cxx_s_suffix) | $$(dir $$@). -endif - $(call message,c++ $<,$(cxx) \ -$(cpp_options) $(call expand-cpp-options,$^) $(cxx_pp_extra_options) \ -$(cxx_options) $(cxx_pic_options) $(cxx_extra_options) -o $@ -c $<) - -ifneq ($(out_base),$(src_base)) - -$(out_base)/%.o: $(out_base)/%.$(cxx_s_suffix) | $$(dir $$@). - $(call message,c++ $<,$(cxx) \ -$(cpp_options) $(call expand-cpp-options,$^) $(cxx_pp_extra_options) \ -$(cxx_options) $(cxx_pic_options) $(cxx_extra_options) -o $@ -c $<) - -endif - -.PHONY: $(out_base)/%.o.$(cxx_s_suffix).clean - -$(out_base)/%.o.$(cxx_s_suffix).clean: - $(call message,rm $$1,rm -f $$1,$(basename $(basename $@))) diff --git a/build-0.3/cxx/gnu/o-e.make b/build-0.3/cxx/gnu/o-e.make deleted file mode 100644 index c19e177..0000000 --- a/build-0.3/cxx/gnu/o-e.make +++ /dev/null @@ -1,38 +0,0 @@ -# file : build/cxx/gnu/o-e.make -# copyright : Copyright (c) 2004-2012 Code Synthesis Tools CC -# license : GNU GPL v2; see accompanying LICENSE file - -$(call include,$(bld_root)/cxx/gnu/configuration.make) - -#@@ should it be lib%.so? -# -ifneq ($(cxx_extra_lib_paths),) -vpath %.so $(cxx_extra_lib_paths) -vpath %.a $(cxx_extra_lib_paths) -endif - -ifneq ($(cxx_gnu_libraries),) -vpath %.so $(cxx_gnu_libraries) -vpath %.a $(cxx_gnu_libraries) -endif - -$(out_base)/%: ld := $(cxx_gnu) -$(out_base)/%: ld_options := $(cxx_gnu_optimization_options) $(cxx_gnu_debugging_options) $(cxx_ld_extra_options) - -$(out_base)/%: expand-l = $(if $(subst n,,$(cxx_rpath)),\ -$(shell sed -e 's%^rpath:\(.*\)%-Wl,-rpath,\1%' $1),\ -$(shell sed -e 's%^rpath:\(.*\)%%' $1)) - -ifeq ($(out_base),$(src_base)) -$(out_base)/%: $(out_base)/%.o -else -$(out_base)/%: $(out_base)/%.o | $$(dir $$@). -endif - $(call message,ld $@,$(ld) \ -$(cxx_extra_options) $(ld_options) $(cxx_ld_extra_options) -o $@ \ -$(foreach f,$^,$(if $(patsubst %.l,,$f),$f,$(call expand-l,$f))) $(cxx_extra_libs)) - -.PHONY: $(out_base)/%.o.clean - -$(out_base)/%.o.clean: - $(call message,rm $(basename $(basename $@)),rm -f $(basename $@) $(basename $(basename $@))) diff --git a/build-0.3/cxx/gnu/o-l.make b/build-0.3/cxx/gnu/o-l.make deleted file mode 100644 index ea3e1d1..0000000 --- a/build-0.3/cxx/gnu/o-l.make +++ /dev/null @@ -1,93 +0,0 @@ -# file : build/cxx/gnu/o-l.make -# copyright : Copyright (c) 2004-2012 Code Synthesis Tools CC -# license : GNU GPL v2; see accompanying LICENSE file - -$(call include,$(bld_root)/cxx/gnu/configuration.make) - -ifneq ($(cxx_extra_lib_paths),) -vpath %.so $(cxx_extra_lib_paths) -vpath %.a $(cxx_extra_lib_paths) -endif - -ifneq ($(cxx_gnu_libraries),) -vpath %.so $(cxx_gnu_libraries) -vpath %.a $(cxx_gnu_libraries) -endif - -ifdef ld_lib_type - -.PHONY: $(out_base)/%.l.o.clean - -ifeq ($(ld_lib_type),archive) - -$(out_base)/%.l: ar := $(ld_lib_ar) -$(out_base)/%.l: ar_options ?= -rc - -$(out_base)/%.l: ranlib := $(ld_lib_ranlib) -$(out_base)/%.l: ranlib_options ?= - -ifeq ($(out_base),$(src_base)) -$(out_base)/%.l: -else -$(out_base)/%.l: | $$(dir $$@). -endif - $(call message,ar $@,$(ar) $(ar_options) $(@D)/lib$(basename $(@F)).a $(filter %.o,$^)) - $(call message,,$(ranlib) $(ranlib_options) $(@D)/lib$(basename $(@F)).a) - $(call message,,echo "$(@D)/lib$(basename $(@F)).a" >$@) - $(call message,,echo "$(patsubst %.l,`cat %.l`,$(filter %.a %.so %.l,$^))" | xargs -n 1 echo >>$@) - -$(out_base)/%.l.o.clean: - $(call message,rm $$1,rm -f $$1 $(@D)/$(patsubst %.l.o.clean,lib%.a,$(@F)),$(basename $(basename $@))) - -else - -mingw := $(if $(filter $(cxx_gnu_target_os),mingw32 mingw64),y,n) - -$(out_base)/%.l: ld := $(cxx_gnu) -$(out_base)/%.l: ld_options := $(cxx_gnu_optimization_options) $(cxx_gnu_debugging_options) -ifeq ($(mingw),n) -$(out_base)/%.l: c_pic_options := -fPIC -$(out_base)/%.l: cxx_pic_options := -fPIC -endif -$(out_base)/%.l: comma_ := , - -$(out_base)/%.l: expand-l = $(if $(subst n,,$(cxx_rpath)),\ -$(shell sed -e 's%^rpath:\(.*\)%-Wl,-rpath,\1%' $1),\ -$(shell sed -e 's%^rpath:\(.*\)%%' $1)) - -ifeq ($(out_base),$(src_base)) -$(out_base)/%.l: -else -$(out_base)/%.l: | $$(dir $$@). -endif -ifeq ($(mingw),n) -# Standard version. -# - $(call message,ld $@,$(ld) -shared \ -$(cxx_extra_options) $(ld_options) $(cxx_ld_extra_options) \ --o $(@D)/lib$(basename $(@F)).so -Wl$(comma_)-soname=lib$(basename $(@F)).so \ -$(foreach f,$^,$(if $(patsubst %.l,,$f),$f,$(call expand-l,$f))) $(cxx_extra_libs)) - $(call message,,echo "$(@D)/lib$(basename $(@F)).so" >$@) - $(call message,,echo "rpath:$(@D)" >>$@) - $(call message,,echo "$(patsubst %.l,`cat %.l`,$(filter %.a %.so %.l,$^))" | xargs -n 1 echo >>$@) -else -# MinGW version. -# - $(call message,ld $@,$(ld) -shared \ -$(cxx_extra_options) $(ld_options) $(cxx_ld_extra_options) \ --o $(@D)/$(basename $(@F)).dll -Wl$(comma_)--out-implib$(comma_)$(@D)/lib$(basename $(@F)).a \ -$(foreach f,$^,$(if $(patsubst %.l,,$f),$f,$(call expand-l,$f))) $(cxx_extra_libs)) - $(call message,,echo "$(@D)/lib$(basename $(@F)).a" >$@) - $(call message,,echo "rpath:$(@D)" >>$@) - $(call message,,echo "$(patsubst %.l,`cat %.l`,$(filter %.a %.l,$^))" | xargs -n 1 echo >>$@) -endif - -$(out_base)/%.l.o.clean: -ifeq ($(mingw),n) - $(call message,rm $$1,rm -f $$1 $(@D)/$(patsubst %.l.o.clean,lib%.so,$(@F)),$(basename $(basename $@))) -else - $(call message,rm $$1,rm -f $$1 $(@D)/$(patsubst %.l.o.clean,%.dll,$(@F)) $(@D)/$(patsubst %.l.o.clean,lib%.a,$(@F)),$(basename $(basename $@))) -endif - -endif -endif |