blob: 77fcb6c4cce08e6606dc4755a5ce1419f62d4a31 [file] [log] [blame]
Harald Welte20a58c62017-12-13 01:04:42 +01001#!/bin/sh
2
3# Wrapper around the TITAN make file generator to work in Debian.
4#
5# TITAN has a makefile generator, but somehow Debian seems to install
6# the binaries to different paths without patching the make file
7# generator, leading in inconsistent non-working Makefiles.
8#
Max00fcc492018-12-11 12:33:37 +01009# See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=884303 for details.
10#
Harald Welte20a58c62017-12-13 01:04:42 +010011# The regexes below patch the generated Makefile to work on Debian 9 and
12# unstable, so far tested with TITAN 6.1.0, 6.2.0 and 6.3.0
Maxdbf15f82017-12-13 11:34:44 +010013#
Harald Welte20a58c62017-12-13 01:04:42 +010014
Pau Espin Pedrolef85dfa2018-01-29 11:48:38 +010015test -x "$(which ttcn3_makefilegen 2>/dev/null)" || { echo "ERROR: ttcn3_makefilegen not in PATH"; exit 1; }
16
Stefan Sperling526895e2018-03-31 16:19:40 +020017# Enable ccache if it can be found in path.
18# This speeds up repeated builds of the TTCN3 tests by an order of magnitude
19# since most of the generated C++ source files don't change very often.
20# Roughly, for an initial build which takes N minutes, a complete rebuild
21# after 'make clean' will only take N seconds with ccache.
22# Note that ccache cannot speed up compilation of .o files to .so files.
23if [ -z "$USE_CCACHE" ] && which ccache 2>/dev/null; then
24 USE_CCACHE=1
25fi
26
Harald Weltedf277252018-02-20 15:49:30 +010027ttcn3_makefilegen -p -l -f $*
Daniel Willmannf6c5da92019-02-13 17:58:25 +010028
29TITAN_VERSION=$(ttcn3_makefilegen -v 2>&1 |grep "Product number" |cut --delimiter="/" -f 2-| sed -e "s/[A-Z ]//g")
30
Harald Welte20a58c62017-12-13 01:04:42 +010031sed -i -e 's/# TTCN3_DIR = /TTCN3_DIR = \/usr/' Makefile
32sed -i -e 's/LDFLAGS = /LDFLAGS = -L \/usr\/lib\/titan /' Makefile
33#sed -i -e 's/TTCN3_LIB = ttcn3-parallel/TTCN3_LIB = ttcn3/' Makefile
Maxdbf15f82017-12-13 11:34:44 +010034
35# The -DMAKEDEPEND_RUN is a workaround for Debian packaging issue,
36# see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=879816 for details
Daniel Willmannf6c5da92019-02-13 17:58:25 +010037if [ $(($TITAN_VERSION >= 65)) = 1 ]; then
38 sed -i -e 's/CPPFLAGS = -D$(PLATFORM)/CPPFLAGS = -D$(PLATFORM) -DMAKEDEPEND_RUN -DUSE_SCTP/' Makefile
39else
40 sed -i -e 's/CPPFLAGS = -D$(PLATFORM) -I$(TTCN3_DIR)\/include/CPPFLAGS = -D$(PLATFORM) -DMAKEDEPEND_RUN -DUSE_SCTP -I$(TTCN3_DIR)\/include -I\/usr\/include\/titan/' Makefile
41fi
Harald Welte20a58c62017-12-13 01:04:42 +010042
Max8b9e69f2018-12-11 14:02:49 +010043#remove -Wall from CXXFLAGS: we're not interested in generic warnings for autogenerated code cluttering the logs
44sed -i -e 's/-Wall//' Makefile
45
Harald Weltedf277252018-02-20 15:49:30 +010046if [ "x$CPPFLAGS_TTCN3" != "x" ]; then
47 sed -i -e 's/CPPFLAGS_TTCN3 =/CPPFLAGS_TTCN3 = '"$CPPFLAGS_TTCN3"'/' Makefile
48fi
49
Harald Welte20a58c62017-12-13 01:04:42 +010050# for TITAN 6.3.0
Pau Espin Pedrol5c9d99f2018-01-29 11:37:25 +010051if cat /etc/issue | grep "Arch Linux" >/dev/null 2>&1; then
52 sed -i -e 's/TTCN3_DIR = $/TTCN3_DIR = \/usr\/ttcn3/' Makefile
53else
54 sed -i -e 's/TTCN3_DIR = $/TTCN3_DIR = \/usr/' Makefile
55fi
Harald Welte20a58c62017-12-13 01:04:42 +010056sed -i -e 's/\/bin\/compiler/\/bin\/ttcn3_compiler/' Makefile
Stefan Sperling526895e2018-03-31 16:19:40 +020057
58if [ "x$USE_CCACHE" = "x1" ]; then
59 # enable ccache
60 sed -i -e 's/^CXX = g++ $/CXX = env CCACHE_SLOPPINESS=time_macros ccache g++/' Makefile
61 # Append the -D option to compiler flags. This option disables timestamps
62 # inside comments in the generated C++ code which interfere with ccache.
63 sed -i -e 's/^COMPILER_FLAGS = \(.*\)/&-D/' Makefile
64fi