summaryrefslogtreecommitdiff
path: root/build-0.3/cxx/configure
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2024-03-06 10:24:11 +0100
committerJörg Frings-Fürst <debian@jff.email>2024-03-06 10:24:11 +0100
commit4538829ab86b5a1cd4e845e7eab165029c9d6d46 (patch)
treebbadf39aed0610c8f8f7b41fefff47773b8ac205 /build-0.3/cxx/configure
parent23d41842168ac1a1580111b9c5c73500ceee3d57 (diff)
parentaad5ad9bf0c02aa4e79bc6b7d6c934612fff4026 (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/configure')
-rwxr-xr-xbuild-0.3/cxx/configure166
1 files changed, 0 insertions, 166 deletions
diff --git a/build-0.3/cxx/configure b/build-0.3/cxx/configure
deleted file mode 100755
index f4607ad..0000000
--- a/build-0.3/cxx/configure
+++ /dev/null
@@ -1,166 +0,0 @@
-#! /usr/bin/env bash
-
-# file : build/cxx/configure
-# copyright : Copyright (c) 2004-2012 Code Synthesis Tools CC
-# license : GNU GPL v2; see accompanying LICENSE file
-
-# $1 out file
-# $2 origin of the cxx_pp_options make variable
-# $3 origin of the cxx_options make variable
-# $4 origin of the cxx_ld_options make variable
-# $5 origin of the cxx_libs make variable
-#
-# bld_root - build root
-# project_name - project name
-#
-
-source $bld_root/dialog.bash
-
-
-$echo
-$echo
-$echo "configuring '$project_name'"
-$echo
-$echo
-
-$echo
-$echo "Please select the C++ compiler you would like to use:"
-$echo
-$echo "(1) GNU C++ (g++)"
-$echo "(2) Intel C++ (icc)"
-$echo "(3) Other C++ compiler"
-$echo
-
-id=`read_option "gnu intel generic" "gnu"`
-
-if [ "$id" != "generic" ]; then
-
- $echo
- $echo "Would you like the C++ compiler to optimize generated code?"
- $echo
-
- optimize=`read_y_n y`
-
-
- $echo
- $echo "Would you like the C++ compiler to generate debug information?"
- $echo
-
- debug=`read_y_n y`
-
- $echo
- $echo "Embed dynamic library paths into executables (rpath)?"
- $echo
-
- rpath=`read_y_n y`
-
-fi
-
-# pp_options
-#
-if [ "$2" != "undefined" ]; then
-
- pp_options=$cxx_pp_options
-
- if [ "$pp_options" ]; then
- $echo
- $echo "Extra C++ preprocessor options: $pp_options"
- $echo
- fi
-else
-
- $echo
- $echo "Please enter any extra C++ preprocessor options."
- $echo
-
- read -e -p "[]: " pp_options
-fi
-
-
-# options
-#
-if [ "$3" != "undefined" ]; then
-
- options=$cxx_options
-
- if [ "$options" ]; then
- $echo
- $echo "Extra C++ compiler options: $options"
- $echo
- fi
-else
-
- $echo
- $echo "Please enter any extra C++ compiler options."
- $echo
-
- read -p "[]: " options
-fi
-
-
-# ld_options
-#
-if [ "$4" != "undefined" ]; then
-
- ld_options=$cxx_ld_options
-
- if [ "$ld_options" ]; then
- $echo
- $echo "Extra C++ linker options: $ld_options"
- $echo
- fi
-else
-
- $echo
- $echo "Please enter any extra C++ linker options."
- $echo
-
- read -e -p "[]: " ld_options
-fi
-
-
-# libs
-#
-if [ "$5" != "undefined" ]; then
-
- libs=$cxx_libs
-
- if [ "$libs" ]; then
- $echo
- $echo "Extra C++ libraries: $libs"
- $echo
- fi
-else
-
- $echo
- $echo "Please enter any extra C++ libraries."
- $echo
-
- read -e -p "[]: " libs
-fi
-
-
-# Extract -L paths from the ld options.
-#
-paths=
-
-if [ "$ld_options" ]; then
- paths=`echo "$ld_options" | sed -e 's/-L *\([^ ]*\)/\\
--L\1\\
-/g' | sed -e 's/^-L\([^ ]*\)$/\1/' -e t -e d`
- paths=`echo $paths | sed -e 's/ /:/g'`
-fi
-
-echo "cxx_id := $id" >$1
-
-if [ "$id" != "generic" ]; then
- echo "cxx_optimize := $optimize" >>$1
- echo "cxx_debug := $debug" >>$1
- echo "cxx_rpath := $rpath" >>$1
-fi
-
-echo "cxx_pp_extra_options := $pp_options" >>$1
-echo "cxx_extra_options := $options" >>$1
-echo "cxx_ld_extra_options := $ld_options" >>$1
-echo "cxx_extra_libs := $libs" >>$1
-echo "cxx_extra_lib_paths := $paths" >>$1