blob: 813b212e53687dc991fa69ae609edd9bfa6f9cd2 [file] [log] [blame]
Harald Welte20a58c62017-12-13 01:04:42 +01001#!/bin/sh
2
Harald Welte0cdf0712019-06-19 18:15:38 +02003# Copyright 2017-2019 Harald Welte
4# Copyright 2018 sysmocom - s.f.m.c. GmbH
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17
18
Harald Welte20a58c62017-12-13 01:04:42 +010019# Wrapper around the TITAN make file generator to work in Debian.
20#
21# TITAN has a makefile generator, but somehow Debian seems to install
22# the binaries to different paths without patching the make file
23# generator, leading in inconsistent non-working Makefiles.
24#
Max00fcc492018-12-11 12:33:37 +010025# See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=884303 for details.
26#
Harald Welte20a58c62017-12-13 01:04:42 +010027
Pau Espin Pedrolef85dfa2018-01-29 11:48:38 +010028test -x "$(which ttcn3_makefilegen 2>/dev/null)" || { echo "ERROR: ttcn3_makefilegen not in PATH"; exit 1; }
29
Stefan Sperling526895e2018-03-31 16:19:40 +020030# Enable ccache if it can be found in path.
31# This speeds up repeated builds of the TTCN3 tests by an order of magnitude
32# since most of the generated C++ source files don't change very often.
33# Roughly, for an initial build which takes N minutes, a complete rebuild
34# after 'make clean' will only take N seconds with ccache.
35# Note that ccache cannot speed up compilation of .o files to .so files.
36if [ -z "$USE_CCACHE" ] && which ccache 2>/dev/null; then
37 USE_CCACHE=1
38fi
39
Pau Espin Pedrol9f07e3b2024-01-02 19:10:33 +010040ttcn3_makefilegen -g -p -l -U 8 -f $*
Daniel Willmannf6c5da92019-02-13 17:58:25 +010041
Harald Welte20a58c62017-12-13 01:04:42 +010042sed -i -e 's/# TTCN3_DIR = /TTCN3_DIR = \/usr/' Makefile
Harald Welte18ed23c2020-10-04 21:06:24 +020043sed -i -e 's/LDFLAGS = /LDFLAGS = -L \/usr\/lib\/titan/' Makefile
Philipp Maierbb169b22024-03-04 11:09:00 +010044sed -i -e 's/LINUX_LIBS = -lxml2/LINUX_LIBS = -lxml2 -lsctp -lssl/' Makefile
Harald Welte20a58c62017-12-13 01:04:42 +010045#sed -i -e 's/TTCN3_LIB = ttcn3-parallel/TTCN3_LIB = ttcn3/' Makefile
Maxdbf15f82017-12-13 11:34:44 +010046
47# The -DMAKEDEPEND_RUN is a workaround for Debian packaging issue,
48# see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=879816 for details
Philipp Maierbb169b22024-03-04 11:09:00 +010049sed -i -e 's/CPPFLAGS = -D$(PLATFORM)/CPPFLAGS = -D$(PLATFORM) -DMAKEDEPEND_RUN -DUSE_SCTP -DLKSCTP_MULTIHOMING_ENABLED -DAS_USE_SSL/' Makefile
Harald Welte20a58c62017-12-13 01:04:42 +010050
Max8b9e69f2018-12-11 14:02:49 +010051#remove -Wall from CXXFLAGS: we're not interested in generic warnings for autogenerated code cluttering the logs
52sed -i -e 's/-Wall//' Makefile
53
Harald Weltedf277252018-02-20 15:49:30 +010054if [ "x$CPPFLAGS_TTCN3" != "x" ]; then
Oliver Smith2e0e6242021-10-12 12:45:16 +020055 CPPFLAGS_TTCN3="$(echo "$CPPFLAGS_TTCN3" | tr -d '\n' | tr '\t' ' ')"
56 sed -i -e "s/CPPFLAGS_TTCN3 =/CPPFLAGS_TTCN3 = $CPPFLAGS_TTCN3/" Makefile
Harald Weltedf277252018-02-20 15:49:30 +010057fi
58
Harald Welte20a58c62017-12-13 01:04:42 +010059# for TITAN 6.3.0
Pau Espin Pedrol5c9d99f2018-01-29 11:37:25 +010060if cat /etc/issue | grep "Arch Linux" >/dev/null 2>&1; then
61 sed -i -e 's/TTCN3_DIR = $/TTCN3_DIR = \/usr\/ttcn3/' Makefile
62else
63 sed -i -e 's/TTCN3_DIR = $/TTCN3_DIR = \/usr/' Makefile
64fi
Harald Welte20a58c62017-12-13 01:04:42 +010065sed -i -e 's/\/bin\/compiler/\/bin\/ttcn3_compiler/' Makefile
Stefan Sperling526895e2018-03-31 16:19:40 +020066
67if [ "x$USE_CCACHE" = "x1" ]; then
68 # enable ccache
69 sed -i -e 's/^CXX = g++ $/CXX = env CCACHE_SLOPPINESS=time_macros ccache g++/' Makefile
70 # Append the -D option to compiler flags. This option disables timestamps
71 # inside comments in the generated C++ code which interfere with ccache.
Harald Welte01e72d52019-04-30 18:38:31 +020072 sed -i -e 's/^COMPILER_FLAGS = \(.*\)/& -D/' Makefile
Stefan Sperling526895e2018-03-31 16:19:40 +020073fi