diff --git a/etc/solaris/README b/etc/solaris/README deleted file mode 100644 index 7fb3fdd9c0bda952949cc749b47f78f01e9ba256..0000000000000000000000000000000000000000 --- a/etc/solaris/README +++ /dev/null @@ -1,17 +0,0 @@ -tools for building titan on solaris -(there might not be enough space for a gcc build..) - -get.sh - download source tar.gz of dependencies -build.sh - build gcc etc on solaris (manually set package versions and paths) -path.sh - sets the PATH environment (when sourced with . ./path.sh) -titan.sh - build titan - -ip of the solaris machine in the lab: -172.31.21.76 - -root passwd is the usual -creating user can be with useradd+making home directory - -path.sh can be used to set up the PATH for a build because -the binaries and library dependencies are in many different -directories diff --git a/etc/solaris/build.sh b/etc/solaris/build.sh deleted file mode 100755 index 7252f4775166253f9b879c6e3926b6e44791bebe..0000000000000000000000000000000000000000 --- a/etc/solaris/build.sh +++ /dev/null @@ -1,148 +0,0 @@ -############################################################################### -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# > -# Balasko, Jeno -# -############################################################################### -#!/bin/sh - -set -ex - -[ "`uname -sr`" = "SunOS 5.10" ] || { - echo 'unsupported OS' - exit 1 -} - -P=/mnt/TTCN/Tools -LC_ALL=C -export LC_ALL - -# version of packages in src/ -V_zlib=zlib-1.2.8 -V_tar=tar-1.26 -V_make=make-3.82 -V_m4=m4-1.4.16 -V_gmp=gmp-5.1.1 -V_mpc=mpc-1.0.1 -V_mpfr=mpfr-3.1.2 -V_gcc=gcc-4.7.3 -V_binutils=binutils-2.23.2 -V_bison=bison-2.7 -V_flex=flex-2.5.37 -V_libiconv=libiconv-1.14 -V_libxml2=libxml2-2.7.8 -V_openssl=openssl-0.9.8y -V_tcl=tcl8.6.0 -V_expect=expect5.45 - -buildcommon() { - V=$1 - C=$2 - shift - shift - if [ -f src/$V.tar.gz ] - then - gunzip -c src/$V.tar.gz | tar -xf - - else - bunzip2 -c src/$V.tar.bz2 | tar -xf - - fi - cd $V - ./$C --prefix=$P/$V "$@" - { make || kill $$; } |tee make.log - { make install || kill $$; } |tee make.install.log - cd .. - rm -rf $V -} - -build() { - V=$1 - shift - buildcommon $V configure "$@" -} - -buildtcl() { - buildcommon $V_tcl unix/configure "$@" -} - -buildopenssl() { - buildcommon $V_openssl Configure shared --openssldir=$P/$V_openssl solaris-x86-gcc - chmod u+w $P/$V_openssl/lib/lib*.so.0.9.* -} - -# uncomment/comment the build commands of the packages -# should be original gcc and binutils paths -GCC0=$P/$V_gcc -BINUTILS0=$P/$V_binutils -PATH=$BINUTILS0/bin:$GCC0/bin:/usr/bin -LD_LIBRARY_PATH=$BINUTILS0/lib:$GCC0/lib:/lib:/usr/lib -export PATH LD_LIBRARY_PATH - -#build $V_zlib -LD_LIBRARY_PATH=$P/$V_zlib/lib:$LD_LIBRARY_PATH -export LD_LIBRARY_PATH - -build $V_binutils -PATH=$P/$V_binutils/bin:$PATH -LD_LIBRARY_PATH=$P/$V_binutils/lib:$LD_LIBRARY_PATH -export PATH LD_LIBRARY_PATH - -#build $V_libiconv -LD_LIBRARY_PATH=$P/$V_libiconv/lib:$LD_LIBRARY_PATH -export LD_LIBRARY_PATH - -# solaris tar had some issues with the gcc and openssl tar.gz -#build $V_tar --with-libiconv-prefix=$P/$V_libiconv --with-gnu-ld -PATH=$P/$V_tar/bin:$PATH -export PATH - -#build $V_make -PATH=$P/$V_make/bin:$PATH -export PATH - -#build $V_m4 -PATH=$P/$V_m4/bin:$PATH -export PATH - -#build $V_gmp -LD_LIBRARY_PATH=$P/$V_gmp/lib:$LD_LIBRARY_PATH -export LD_LIBRARY_PATH - -#build $V_mpfr --with-gmp=$P/$V_gmp -LD_LIBRARY_PATH=$P/$V_mpfr/lib:$LD_LIBRARY_PATH -export LD_LIBRARY_PATH - -#build $V_mpc --with-gmp=$P/$V_gmp --with-mpfr=$P/$V_mpfr -LD_LIBRARY_PATH=$P/$V_mpc/lib:$LD_LIBRARY_PATH -export LD_LIBRARY_PATH - -build $V_gcc --enable-languages=c,c++ \ - --disable-multilib \ - --with-gmp=$P/$V_gmp \ - --with-mpfr=$P/$V_mpfr \ - --with-mpc=$P/$V_mpc \ - --with-gnu-as --with-as=$P/$V_binutils/bin/as \ - --with-gnu-ld --with-ld=$P/$V_binutils/bin/ld -PATH=$P/$V_gcc/bin:$PATH -LD_LIBRARY_PATH=$P/$V_gcc/lib:$LD_LIBRARY_PATH -export PATH LD_LIBRARY_PATH - -#buildopenssl -PATH=$P/$V_openssl/bin:$PATH -LD_LIBRARY_PATH=$P/$V_openssl/lib:$LD_LIBRARY_PATH -export PATH LD_LIBRARY_PATH - -#build bison -#build flex -#buildtcl -#buildexpect --exec-prefix=$P -#build libxml2 -#build wget --with-ssl=openssl - -echo $PATH -echo $LD_LIBRARY_PATH diff --git a/etc/solaris/get.sh b/etc/solaris/get.sh deleted file mode 100755 index 67477b6325185bb9fe92c5373bc28b079ae633a8..0000000000000000000000000000000000000000 --- a/etc/solaris/get.sh +++ /dev/null @@ -1,56 +0,0 @@ -############################################################################### -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# > -# Balasko, Jeno -# -############################################################################### -#!/bin/sh - -# download package sources with given version into src/ - -set -ex - -V_zlib=zlib-1.2.8 -V_tar=tar-1.26 -V_make=make-3.82 -V_m4=m4-1.4.16 -V_gmp=gmp-5.1.1 -V_mpc=mpc-1.0.1 -V_mpfr=mpfr-3.1.2 -V_gcc=gcc-4.7.3 -V_binutils=binutils-2.23.2 -V_bison=bison-2.7 -V_flex=flex-2.5.37 -V_libiconv=libiconv-1.14 -V_libxml2=libxml2-2.7.8 -V_openssl=openssl-0.9.8y -V_tcl=tcl8.6.0 -V_expect=expect5.45 - -mkdir -p src -cd src - -[ -f $V_make.tar.gz ] || wget http://mirrors.kernel.org/gnu/make/$V_make.tar.gz -[ -f $V_tar.tar.gz ] || wget http://mirrors.kernel.org/gnu/tar/$V_tar.tar.gz -[ -f $V_zlib.tar.gz ] || wget http://zlib.net/$V_zlib.tar.gz -[ -f $V_binutils.tar.gz ] || wget http://mirrors.kernel.org/gnu/binutils/$V_binutils.tar.gz -[ -f $V_mpfr.tar.gz ] || wget http://mirrors.kernel.org/gnu/mpfr/$V_mpfr.tar.gz -[ -f $V_mpc.tar.gz ] || wget http://mirrors.kernel.org/gnu/mpc/$V_mpc.tar.gz -[ -f $V_gmp.tar.bz2 ] || wget http://mirrors.kernel.org/gnu/gmp/$V_gmp.tar.bz2 -[ -f $V_gcc.tar.gz ] || wget http://mirrors.kernel.org/gnu/gcc/$V_gcc/$V_gcc.tar.gz -[ -f $V_libiconv.tar.gz ] || wget http://mirrors.kernel.org/gnu/libiconv/$V_libiconv.tar.gz -[ -f $V_bison.tar.gz ] || wget http://mirrors.kernel.org/gnu/bison/$V_bison.tar.gz -[ -f $V_flex.tar.gz ] || wget http://prdownloads.sourceforge.net/flex/$V_flex.tar.gz -[ -f $V_m4.tar.gz ] || wget http://mirrors.kernel.org/gnu/m4/$V_m4.tar.gz -[ -f $V_libxml2.tar.gz ] || wget ftp://xmlsoft.org/libxml2/$V_libxml2.tar.gz -[ -f $V_openssl.tar.gz ] || wget http://www.openssl.org/source/$V_openssl.tar.gz -[ -f $V_expect.tar.gz ] || wget http://downloads.sourceforge.net/project/expect/Expect/`echo $V |sed 's/expect//'`/$V.tar.gz -[ -f $V_tcl.tar.gz ] || wget -O $V_tcl.tar.gz http://prdownloads.sourceforge.net/tcl/$V_tcl-src.tar.gz - -cd .. diff --git a/etc/solaris/path.sh b/etc/solaris/path.sh deleted file mode 100755 index fc16e9f23c75ae3af2aefb22eb61fd582b2c1095..0000000000000000000000000000000000000000 --- a/etc/solaris/path.sh +++ /dev/null @@ -1,41 +0,0 @@ -############################################################################### -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# > -# Balasko, Jeno -# -############################################################################### -#!/bin/sh - -# source this file on solaris shell to get usable environment - -P=/mnt/TTCN/Tools - -V_zlib=zlib-1.2.8 -V_tar=tar-1.26 -V_make=make-3.82 -V_m4=m4-1.4.16 -V_gmp=gmp-5.1.1 -V_mpc=mpc-1.0.1 -V_mpfr=mpfr-3.1.2 -V_gcc=gcc-4.7.3 -V_binutils=binutils-2.23.2 -V_bison=bison-2.7 -V_flex=flex-2.5.37 -V_libiconv=libiconv-1.14 -V_libxml2=libxml2-2.7.8 -V_openssl=openssl-0.9.8y -V_tcl=tcl8.6.0 -V_expect=expect5.45 - -PATH=$P/$V_binutils/bin:$P/$V_make/bin:$P/$V_tar/bin:$P/$V_m4/bin:$P/$V_gcc/bin:/usr/bin -LD_LIBRARY_PATH=$P/$V_zlib/lib:$P/$V_libiconv/lib:$P/$V_openssl/lib:$P/$V_libxml2/lib:$P/$V_gmp/lib:$P/$V_mpc/lib:$P/$V_mpfr/lib:$P/$V_gcc/lib:/lib:/usr/lib - -TTCN3_LICENSE_FILE=$HOME/license.dat - -export PATH LD_LIBRARY_PATH TTCN3_LICENSE_FILE diff --git a/etc/solaris/titan.sh b/etc/solaris/titan.sh deleted file mode 100755 index 4010a954f2510eed3c2924821edaeb6bfd17ff6f..0000000000000000000000000000000000000000 --- a/etc/solaris/titan.sh +++ /dev/null @@ -1,29 +0,0 @@ -############################################################################### -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# > -# Balasko, Jeno -# -############################################################################### -#!/bin/sh - -set -xe - -# set environment -. ./path.sh - -# build titan from source on solaris -mkdir -p titan -cd titan -# .tar is exported with git archive -o t.tar -tar xf ../src/t.tar -cp ../Makefile.personal . -{ make || kill $$; } |tee make.log -{ make install || kill $$; } |tee make.install.log -# TODO: make release, cp doc/*.pdf - diff --git a/makefiles/Makefile.personal.bangjohansen b/makefiles/Makefile.personal.bangjohansen deleted file mode 100644 index 315f77b63a05d20b9a852d71b2bd5036f6fbc222..0000000000000000000000000000000000000000 --- a/makefiles/Makefile.personal.bangjohansen +++ /dev/null @@ -1,39 +0,0 @@ -############################################################################## -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# Baji, Laszlo -# Balasko, Jeno -# Ormandi, Matyas -# Pandi, Krisztian -# -############################################################################## - -FLEX := /mnt/TTCN/Tools/flex-2.5.33/bin/flex -BISON := /mnt/TTCN/Tools/bison-2.3/bin/bison - -#CC := /mnt/TTCN/Tools/gcc-4.1.1-sol10/bin/gcc -#CXX:= /mnt/TTCN/Tools/gcc-4.1.1-sol10/bin/g++ - -# Do not use on bangjohansen, ever! -# This is GCC 3.4.6 --with-as=/usr/ccs/bin/as --with-ld=/usr/ccs/bin/ld -# Linking shared fails in core. -#CC := gcc -#CXX:= g++ -# -# The following are --with-gnu-ld -CC := /mnt/TTCN/Tools/gcc-3.4.6-sol10/bin/gcc -CXX:= /mnt/TTCN/Tools/gcc-3.4.6-sol10/bin/g++ - -JDKDIR := /usr/jdk/instances/jdk1.5.0 - -export XMLDIR := /mnt/TTCN/Tools/libxml2-2.7.1 - -AR := ar - -FOO = bar -STRIP := /mnt/TTCN/Tools/binutils-2.17-sol10/bin/strip diff --git a/makefiles/Makefile.personal.ehubuux110 b/makefiles/Makefile.personal.ehubuux110 deleted file mode 100644 index 4ae2e7192b631b236bf88ea88d5a1cb3113d0d89..0000000000000000000000000000000000000000 --- a/makefiles/Makefile.personal.ehubuux110 +++ /dev/null @@ -1,30 +0,0 @@ -############################################################################## -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# Baji, Laszlo -# Balasko, Jeno -# Ormandi, Matyas -# Pandi, Krisztian -# -############################################################################## -SHELL=/bin/bash - -# GCC versions on Korsch: 2.95.3 3.0.4 3.3.6 3.4.6 4.1.2 4.2.1(sol6 only) -# Default should be 3.0.4 -GCCVER := 4.3.2 -GCCLOC = /mnt/TTCN/Tools/gcc-$(GCCVER)-sol8 - -CC := $(GCCLOC)/bin/gcc -CXX := $(GCCLOC)/bin/g++ - -CPPFLAGS += -DYY_NO_INPUT - -CXXFLAGS += -Wno-char-subscripts - -# Useless to try to build on rhea (link will only succeed on korsch) - diff --git a/makefiles/Makefile.personal.elx1pjld12-hz b/makefiles/Makefile.personal.elx1pjld12-hz deleted file mode 100644 index 8f80e04b711c1f975c226967b7edcb2b43829066..0000000000000000000000000000000000000000 --- a/makefiles/Makefile.personal.elx1pjld12-hz +++ /dev/null @@ -1,2 +0,0 @@ -OPENSSL_DIR := default -JDKDIR := /usr/lib/jvm/java-7-openjdk-amd64 diff --git a/makefiles/Makefile.personal.esekilxxen1843.rnd.ericsson.se b/makefiles/Makefile.personal.esekilxxen1843.rnd.ericsson.se deleted file mode 100644 index f3339cc4596218a5333aa2195a1a4c4ab977715e..0000000000000000000000000000000000000000 --- a/makefiles/Makefile.personal.esekilxxen1843.rnd.ericsson.se +++ /dev/null @@ -1,22 +0,0 @@ -############################################################################## -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# Baji, Laszlo -# Balasko, Jeno -# Ormandi, Matyas -# -############################################################################## -CC := /usr/bin/gcc -CXX := /usr/bin/g++ - -FLEX := /usr/bin/flex -BISON := /usr/bin/bison - -JDKDIR := /proj/TTCN/Tools/jdk1.6.0_34 -XMLDIR := /usr -OPENSSL_DIR := /usr diff --git a/makefiles/Makefile.personal.esekits1024 b/makefiles/Makefile.personal.esekits1024 deleted file mode 100644 index 7874f6b42dec727465f3b89ce3f56b2d75d06d51..0000000000000000000000000000000000000000 --- a/makefiles/Makefile.personal.esekits1024 +++ /dev/null @@ -1,39 +0,0 @@ -############################################################################## -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# Baji, Laszlo -# Balasko, Jeno -# Ormandi, Matyas -# -############################################################################## -##Made with autoconf configure - -# The target directory where the Test Executor will be installed to: -#TTCN3_DIR := ${WORKSPACE}/TTCNv3/Install - -# Utility for building lexical analyzers (tokenizers): -FLEX := /proj/TTCN/Tools/flex-2.5.35/bin/flex - -# Utility for building parsers: -BISON := /proj/TTCN/Tools/bison-2.4.3/bin/bison - -# The C compiler used for building: -CC := /proj/TTCN/Tools/gcc-3.4.6-sol10/bin/gcc - -# The C++ compiler used for building: -CXX := /proj/TTCN/Tools/gcc-3.4.6-sol10/bin/g++ - -# Path of the Java Developement Kit installation -# (must be at least version 1.5.0_10) -JDKDIR := /proj/TTCN/Tools/jdk1.6.0_23 - -# Path of OpenSSL installation: (always required) -OPENSSL_DIR := /proj/TTCN/Tools/openssl-0.9.8r - -# Location of libxml2 -XMLDIR := /proj/TTCN/Tools/libxml2-2.7.8 diff --git a/makefiles/Makefile.personal.esekits1080 b/makefiles/Makefile.personal.esekits1080 deleted file mode 100644 index fae33202c2222f44f6ad9a8fa501d77b96a9aee7..0000000000000000000000000000000000000000 --- a/makefiles/Makefile.personal.esekits1080 +++ /dev/null @@ -1,24 +0,0 @@ -############################################################################## -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# -# Baji, Laszlo -# Balasko, Jeno -# -############################################################################## - -GCCDIR := /app/gcc/4.1.2 -CC := $(GCCDIR)/bin/gcc -CXX := $(GCCDIR)/bin/g++ - -FLEX := /proj/TTCN/Tools/flex-2.5.35/bin/flex -BISON := /proj/TTCN/Tools/bison-2.4.3/bin/bison -JDKDIR := /proj/TTCN/Tools/jdk1.6.0_23 -XMLDIR := /proj/TTCN/Tools/libxml2-2.7.8 - -OPENSSL_DIR := /proj/TTCN/Tools/openssl-0.9.8r diff --git a/makefiles/Makefile.personal.esekits3013 b/makefiles/Makefile.personal.esekits3013 deleted file mode 100644 index 0c0bcd9bda6ae692b69eec0868f0124bca85442d..0000000000000000000000000000000000000000 --- a/makefiles/Makefile.personal.esekits3013 +++ /dev/null @@ -1,24 +0,0 @@ -############################################################################## -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# Baji, Laszlo -# Balasko, Jeno -# Beres, Szabolcs -# -############################################################################## - -GCCDIR := /proj/TTCN/Tools/gcc-3.4.6-sol8 -CC := $(GCCDIR)/bin/gcc -CXX := $(GCCDIR)/bin/g++ - -FLEX := /proj/TTCN/Tools/flex-2.5.35/bin/flex -BISON := /proj/TTCN/Tools/bison-2.4.3/bin/bison -JDKDIR := /proj/TTCN/Tools/jdk1.6.0_23 -XMLDIR := /proj/TTCN/Tools/libxml2-2.7.8 - -OPENSSL_DIR := /proj/TTCN/Tools/openssl-0.9.8r diff --git a/makefiles/Makefile.personal.esekiux5120 b/makefiles/Makefile.personal.esekiux5120 deleted file mode 100644 index 8adeafa1ab98a7f487223cb20fd025c44f9c223c..0000000000000000000000000000000000000000 --- a/makefiles/Makefile.personal.esekiux5120 +++ /dev/null @@ -1,23 +0,0 @@ -############################################################################## -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# Balasko, Jeno -# Pilisi, Gergely -# -############################################################################## - -GCCDIR := /app/gcc/4.1.2 -CC := $(GCCDIR)/bin/gcc -CXX := $(GCCDIR)/bin/g++ - -FLEX := /proj/TTCN/Tools/flex-2.5.35/bin/flex -BISON := /proj/TTCN/Tools/bison-2.4.3/bin/bison -JDKDIR := /proj/TTCN/Tools/jdk1.6.0_23 -XMLDIR := /app/libxml/2.9.1 - -OPENSSL_DIR := /proj/TTCN/Tools/openssl-0.9.8r diff --git a/makefiles/Makefile.personal.tcclab1 b/makefiles/Makefile.personal.tcclab1 deleted file mode 100644 index 4233b229026b4a2ef65bfb1be61745dac87ea456..0000000000000000000000000000000000000000 --- a/makefiles/Makefile.personal.tcclab1 +++ /dev/null @@ -1,40 +0,0 @@ -############################################################################## -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# Baji, Laszlo -# Balasko, Jeno -# Ormandi, Matyas -# Pandi, Krisztian -# Raduly, Csaba -# -############################################################################## -## Based on /etc/autotest/titan_builder_cfg.py - -# DEBUG can not be changed here - -FLEX := /usr/bin/flex -BISON := /usr/bin/bison - -COMPILERFLAGS += -fPIC -Wlogical-op -LDFLAGS += -fPIC - -CC := /usr/bin/gcc -CXX := /usr/bin/g++ - -OPENSSL_DIR := default - -JDKDIR := /mnt/TTCN/Tools/jdk1.6.0_14 - -XMLDIR := default - -#### GCC version-dependent flags #### -# We must run the compiler because the path may not contain the version (e.g. simply g++) - -GCCDETECT := $(shell $(CXX) -v 2>&1 | perl -nwle 'print $$1 if /version.+?(\d\.\d+\.\d)/') -GCCNODOT := $(subst ., ,$(GCCDETECT)) # now separated by space - diff --git a/makefiles/Makefile.personal.tcclab2 b/makefiles/Makefile.personal.tcclab2 deleted file mode 100644 index 062f400d4f0f0199b800462051b5a3b1e27a4978..0000000000000000000000000000000000000000 --- a/makefiles/Makefile.personal.tcclab2 +++ /dev/null @@ -1,46 +0,0 @@ -############################################################################## -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# -# Baji, Laszlo -# Balasko, Jeno -# Ormandi, Matyas -# Pandi, Krisztian -# Pilisi, Gergely -# Raduly, Csaba -# Szabados, Kristof -# -############################################################################## -# Based on /etc/autotest/titan_builder_cfg.py - -# DEBUG can not be changed here - -FLEX := /usr/bin/flex -BISON := /usr/bin/bison - -COMPILERFLAGS += -Wall -Wlogical-op - -ifeq ($(DEBUG), yes) -#COMPILERFLAGS += -fvar-tracking -O1 -else -COMPILERFLAGS += -g -LDFLAGS += -g -endif - -LDFLAGS += -ldl - -CC := /usr/bin/gcc -CXX := /usr/bin/g++ - -OPENSSL_DIR := default - -JDKDIR := /usr/lib/jvm/java-7-openjdk-amd64 - -XMLDIR := default - -AR := ar diff --git a/makefiles/Makefile.personal.tcclab3 b/makefiles/Makefile.personal.tcclab3 deleted file mode 100644 index 63acdd6a2aa5d1a301f406331162d7f0857053d1..0000000000000000000000000000000000000000 --- a/makefiles/Makefile.personal.tcclab3 +++ /dev/null @@ -1,36 +0,0 @@ -############################################################################## -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# Baji, Laszlo -# Balasko, Jeno -# Ormandi, Matyas -# Pandi, Krisztian -# Raduly, Csaba -# -############################################################################## -## Based on /etc/autotest/titan_builder_cfg.py - -# DEBUG can not be changed here - -FLEX := /usr/bin/flex -BISON := /usr/bin/bison - -#COMPILER_FLAGS += -pedantic -#CXXFLAGS += -g --coverage -#LDFLAGS += -g --coverage - -CC := /usr/bin/gcc -CXX:= /usr/bin/g++ - -OPENSSL_DIR := default - -JDKDIR := /mnt/TTCN/Tools/jdk1.6.0_14 - -XMLDIR := default - -AR := ar diff --git a/makefiles/Makefile.personal.tcclab4 b/makefiles/Makefile.personal.tcclab4 deleted file mode 100644 index 252bdc8f89cab229d45742a21e70987df675fa51..0000000000000000000000000000000000000000 --- a/makefiles/Makefile.personal.tcclab4 +++ /dev/null @@ -1,36 +0,0 @@ -############################################################################## -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# Baji, Laszlo -# Balasko, Jeno -# Ormandi, Matyas -# Pandi, Krisztian -# Raduly, Csaba -# -############################################################################## -## Based on /etc/autotest/titan_builder_cfg.py - -# DEBUG can not be changed here - -FLEX := /usr/bin/flex -BISON := /usr/bin/bison - -COMPILERFLAGS += -Wno-covered-switch-default -#CXXFLAGS += -g --coverage -#LDFLAGS += -g --coverage - -CC := /usr/bin/gcc -CXX:= /usr/bin/g++ - -OPENSSL_DIR := default - -JDKDIR := /usr/lib/jvm/java-1.6.0-openjdk - -XMLDIR := default - -AR := ar diff --git a/makefiles/Makefile.personal.tcclab5 b/makefiles/Makefile.personal.tcclab5 deleted file mode 100644 index 181cc129321ce445d9732023857278a95b43e40a..0000000000000000000000000000000000000000 --- a/makefiles/Makefile.personal.tcclab5 +++ /dev/null @@ -1,21 +0,0 @@ -############################################################################## -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# Baji, Laszlo -# Balasko, Jeno -# Ormandi, Matyas -# Pandi, Krisztian -# -############################################################################## -## Based on /etc/autotest/titan_builder_cfg.py - -OPENSSL_DIR := default - -JDKDIR := /home/titanrt/jenkins/jdk/jdk64 - -XMLDIR := default diff --git a/makefiles/Makefile.personal.tcclab6 b/makefiles/Makefile.personal.tcclab6 deleted file mode 100644 index 548e526308eb03640af7496f688491e21c92e18c..0000000000000000000000000000000000000000 --- a/makefiles/Makefile.personal.tcclab6 +++ /dev/null @@ -1,42 +0,0 @@ -############################################################################## -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# Baji, Laszlo -# Balasko, Jeno -# Pilisi, Gergely -# -############################################################################## -# Based on /etc/autotest/titan_builder_cfg.py -# tcclab6 has clang - -# DEBUG can not be changed here - -FLEX := /usr/bin/flex -BISON := /usr/bin/bison - -COMPILERFLAGS += -Wall -Wlogical-op -I/home/titanrt/jenkins/jdk/jdk64/include -I/usr/include - -ifeq ($(DEBUG), yes) -#COMPILERFLAGS += -fvar-tracking -O1 -else -COMPILERFLAGS += -g -LDFLAGS += -g -endif - -CC := /usr/bin/gcc -CXX := /usr/bin/g++ -CXXFLAGS += - -OPENSSL_DIR := default - -JDKDIR := /home/titanrt/jenkins/jdk/jdk64 - - -XMLDIR := default - -AR := ar diff --git a/makefiles/Makefile.personal.tcclab7 b/makefiles/Makefile.personal.tcclab7 deleted file mode 100644 index 6a69755cb4b897681fe0b7a38b9a49e0c630199f..0000000000000000000000000000000000000000 --- a/makefiles/Makefile.personal.tcclab7 +++ /dev/null @@ -1,40 +0,0 @@ -############################################################################## -# Copyright (c) 2000-2021 Ericsson Telecom AB -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html -# -# Contributors: -# Baji, Laszlo -# Balasko, Jeno -# Pilisi, Gergely -# -############################################################################## -# Based on /etc/autotest/titan_builder_cfg.py - -# DEBUG can not be changed here - -FLEX := /usr/bin/flex -BISON := /usr/bin/bison - -COMPILERFLAGS += -Wall -Wlogical-op -I/home/titanrt/jenkins/jdk/jdk64/include -I/usr/include - -ifeq ($(DEBUG), yes) -#COMPILERFLAGS += -fvar-tracking -O1 -else -COMPILERFLAGS += -g -LDFLAGS += -g -endif - -CC := /usr/bin/gcc -CXX := /usr/bin/g++ - -OPENSSL_DIR := default - -JDKDIR := /home/titanrt/jenkins/jdk/jdk64 - - -XMLDIR := default - -AR := ar