Skip to content
Snippets Groups Projects
Commit 5aa453d1 authored by Adam Knapp's avatar Adam Knapp
Browse files

Deleting some unnecessary files from the repo


Signed-off-by: default avatarAdam Knapp <adam.knapp@ericsson.com>
parent 35398fd3
No related branches found
No related tags found
1 merge request!225Deleting some unnecessary files from the repo
Showing
with 0 additions and 755 deletions
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
###############################################################################
# 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
###############################################################################
# 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 ..
###############################################################################
# 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
###############################################################################
# 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
##############################################################################
# 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
##############################################################################
# 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)
OPENSSL_DIR := default
JDKDIR := /usr/lib/jvm/java-7-openjdk-amd64
##############################################################################
# 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
##############################################################################
# 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
##############################################################################
# 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
##############################################################################
# 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
##############################################################################
# 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
##############################################################################
# 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
##############################################################################
# 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
##############################################################################
# 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
##############################################################################
# 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
##############################################################################
# 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
##############################################################################
# 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
##############################################################################
# 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment