fixed some messages (trunk, HH)
[luatex.git] / build.sh
blobe6182ebf2071465491725fa2753fdfa7f1df0f54
1 #!/usr/bin/env bash
2 # $Id$
4 # Copyright (c) 2005-2011 Martin Schröder <martin@luatex.org>
5 # Copyright (c) 2009-2014 Taco Hoekwater <taco@luatex.org>
6 # Copyright (c) 2012-2014 Luigi Scarso <luigi@luatex.org>
8 # Permission to use, copy, modify, and distribute this software for any
9 # purpose with or without fee is hereby granted, provided that the above
10 # copyright notice and this permission notice appear in all copies.
12 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 # new script to build luatex binaries
21 # ----------
22 # Options:
23 # --jit : also build luajittex
24 # --make : only make, no make distclean; configure
25 # --parallel : make -j 2 -l 3.0
26 # --nostrip : do not strip binary
27 # --warnings= : enable compiler warnings
28 # --mingw : crosscompile for mingw32 from x86_64linux
29 # --mingw32 : crosscompile for mingw32 from x86_64linux
30 # --mingw64 : crosscompile for mingw64 from x86_64linux
31 # --host= : target system for mingw32 cross-compilation
32 # --build= : build system for mingw32 cross-compilation
33 # --arch= : crosscompile for ARCH on OS X
34 # --clang : use clang & clang++
35 # --debug : CFLAGS="-g -O0" --warnings=max --nostrip
36 $DEBUG
38 # try to find bash, in case the standard shell is not capable of
39 # handling the generated configure's += variable assignments
40 if which bash >/dev/null
41 then
42 CONFIG_SHELL=`which bash`
43 export CONFIG_SHELL
46 # try to find gnu make; we may need it
47 MAKE=make;
48 if make -v 2>&1| grep "GNU Make" >/dev/null
49 then
50 echo "Your make is a GNU-make; I will use that"
51 elif gmake -v >/dev/null 2>&1
52 then
53 MAKE=gmake;
54 export MAKE;
55 echo "You have a GNU-make installed as gmake; I will use that"
56 else
57 echo "I can't find a GNU-make; I'll try to use make and hope that works."
58 echo "If it doesn't, please install GNU-make."
61 BUILDJIT=FALSE
62 ONLY_MAKE=FALSE
63 STRIP_LUATEX=TRUE
64 WARNINGS=yes
65 MINGWCROSS=FALSE
66 MINGWCROSS64=FALSE
67 MACCROSS=FALSE
68 CLANG=FALSE
69 CONFHOST=
70 CONFBUILD=
71 JOBS_IF_PARALLEL=${JOBS_IF_PARALLEL:-3}
72 MAX_LOAD_IF_PARALLEL=${MAX_LOAD_IF_PARALLEL:-2}
73 TARGET_CC=gcc
74 TARGET_TCFLAGS=
76 CFLAGS="$CFLAGS"
77 CXXFLAGS="$CXXFLAGS"
79 until [ -z "$1" ]; do
80 case "$1" in
81 --jit ) BUILDJIT=TRUE ;;
82 --nojit ) BUILDJIT=FALSE ;;
83 --make ) ONLY_MAKE=TRUE ;;
84 --nostrip ) STRIP_LUATEX=FALSE ;;
85 --debug ) STRIP_LUATEX=FALSE; WARNINGS=max ; CFLAGS="-O0 -g -g3 $CFLAGS" ; CXXFLAGS="-O0 -g -g3 $CXXFLAGS" ;;
86 --clang ) export CC=clang; export CXX=clang++ ; TARGET_CC=$CC ; CLANG=TRUE ;;
87 --warnings=*) WARNINGS=`echo $1 | sed 's/--warnings=\(.*\)/\1/' ` ;;
88 --mingw ) MINGWCROSS=TRUE ;;
89 --mingw32 ) MINGWCROSS=TRUE ;;
90 --mingw64 ) MINGWCROSS64=TRUE ;;
91 --host=* ) CONFHOST="$1" ;;
92 --build=* ) CONFBUILD="$1" ;;
93 --parallel ) MAKE="$MAKE -j $JOBS_IF_PARALLEL -l $MAX_LOAD_IF_PARALLEL" ;;
94 --arch=* ) MACCROSS=TRUE; ARCH=`echo $1 | sed 's/--arch=\(.*\)/\1/' ` ;;
95 * ) echo "ERROR: invalid build.sh parameter: $1"; exit 1 ;;
96 esac
97 shift
98 done
101 STRIP=strip
102 LUATEXEXEJIT=luajittex
103 LUATEXEXE=luatex
105 case `uname` in
106 MINGW32* ) LUATEXEXEJIT=luajittex.exe ; LUATEXEXE=luatex.exe ;;
107 CYGWIN* ) LUATEXEXEJIT=luajittex.exe ; LUATEXEXE=luatex.exe ;;
108 esac
110 WARNINGFLAGS=--enable-compiler-warnings=$WARNINGS
112 B=build
114 if [ "$CLANG" = "TRUE" ]
115 then
116 B=build-clang
119 if [ "$MINGWCROSS64" = "TRUE" ]
120 then
121 B=build-windows64
122 LUATEXEXEJIT=luajittex.exe
123 LUATEXEXE=luatex.exe
124 OLDPATH=$PATH
125 PATH=/usr/mingw32/bin:$PATH
126 PATH=`pwd`/extrabin/mingw:$PATH
127 CFLAGS="-mtune=nocona -g -O3 -fno-lto -fno-use-linker-plugin $CFLAGS"
128 CXXFLAGS="-mtune=nocona -g -O3 -fno-lto -fno-use-linker-plugin $CXXFLAGS"
129 : ${CONFHOST:=--host=x86_64-w64-mingw32}
130 : ${CONFBUILD:=--build=x86_64-unknown-linux-gnu}
131 RANLIB="${CONFHOST#--host=}-ranlib"
132 STRIP="${CONFHOST#--host=}-strip"
133 LDFLAGS="${LDFLAGS} -fno-lto -fno-use-linker-plugin -static-libgcc -static-libstdc++"
134 export CFLAGS CXXFLAGS LDFLAGS
137 if [ "$MINGWCROSS" = "TRUE" ]
138 then
139 B=build-windows
140 LUATEXEXEJIT=luajittex.exe
141 LUATEXEXE=luatex.exe
142 OLDPATH=$PATH
143 PATH=/usr/mingw32/bin:$PATH
144 PATH=`pwd`/extrabin/mingw:$PATH
145 CFLAGS="-mtune=nocona -g -O3 $CFLAGS"
146 CXXFLAGS="-mtune=nocona -g -O3 $CXXFLAGS"
147 : ${CONFHOST:=--host=i586-mingw32msvc}
148 : ${CONFBUILD:=--build=x86_64-unknown-linux-gnu}
149 RANLIB="${CONFHOST#--host=}-ranlib"
150 STRIP="${CONFHOST#--host=}-strip"
151 LDFLAGS="-Wl,--large-address-aware -Wl,--stack,2621440 $CFLAGS"
152 export CFLAGS CXXFLAGS LDFLAGS BUILDCXX BUILDCC
156 if [ "$MACCROSS" = "TRUE" ]
157 then
158 # make sure that architecture parameter is valid
159 case $ARCH in
160 i386 | x86_64 | ppc | ppc64 ) ;;
161 * ) echo "ERROR: architecture $ARCH is not supported"; exit 1;;
162 esac
163 B=build-$ARCH
164 CFLAGS="-arch $ARCH -g -O2 $CFLAGS"
165 CXXFLAGS="-arch $ARCH -g -O2 $CXXFLAGS"
166 LDFLAGS="-arch $ARCH $LDFLAGS"
167 export CFLAGS CXXFLAGS LDFLAGS
171 ### Dirty trick to check Darwin X86_64
172 # TARGET_TESTARCH=$( ($TARGET_CC $TARGET_TCFLAGS -E source/libs/luajit/luajit-2.0.2/src/lj_arch.h -dM|grep -q LJ_TARGET_X64 && echo x64) || echo NO)
173 # HOST_SYS=$(uname -s)
174 # echo HOST_SYS=$HOST_SYS
175 # echo TARGET_TESTARCH=$TARGET_TESTARCH
176 # if [ $HOST_SYS == "Darwin" ]
177 # then
178 # if [ $TARGET_TESTARCH == "x64" ]
179 # then
180 # export LDFLAGS="-pagezero_size 10000 -image_base 100000000 $LDFLAGS"
181 # echo Setting LDFLAGS=$LDFLAGS
182 # fi
183 # fi
186 if [ "$STRIP_LUATEX" = "FALSE" ]
187 then
188 export CFLAGS
189 export CXXFLAGS
192 # ----------
193 # clean up, if needed
194 if [ -r "$B"/Makefile -a $ONLY_MAKE = "FALSE" ]
195 then
196 rm -rf "$B"
197 elif [ ! -r "$B"/Makefile ]
198 then
199 ONLY_MAKE=FALSE
201 if [ ! -r "$B" ]
202 then
203 mkdir "$B"
206 # get a new svn version header
207 if [ "$WARNINGS" = "max" ]
208 then
209 rm -f source/texk/web2c/luatexdir/luatex_svnversion.h
211 ( cd source ; ./texk/web2c/luatexdir/getluatexsvnversion.sh )
213 cd "$B"
215 JITENABLE=
216 if [ "$BUILDJIT" = "TRUE" ]
217 then
218 JITENABLE="--enable-luajittex --without-system-luajit "
222 if [ "$ONLY_MAKE" = "FALSE" ]
223 then
224 TL_MAKE=$MAKE ../source/configure $CONFHOST $CONFBUILD $WARNINGFLAGS\
225 --enable-cxx-runtime-hack \
226 --enable-silent-rules \
227 --disable-all-pkgs \
228 --disable-shared \
229 --disable-largefile \
230 --disable-ptex \
231 --disable-ipc \
232 --enable-dump-share \
233 --enable-mp \
234 --enable-luatex $JITENABLE \
235 --without-system-ptexenc \
236 --without-system-kpathsea \
237 --without-system-poppler \
238 --without-system-xpdf \
239 --without-system-freetype \
240 --without-system-freetype2 \
241 --without-system-gd \
242 --without-system-libpng \
243 --without-system-teckit \
244 --without-system-zlib \
245 --without-system-t1lib \
246 --without-system-icu \
247 --without-system-graphite \
248 --without-system-zziplib \
249 --without-mf-x-toolkit --without-x \
250 || exit 1
253 $MAKE
255 # the fact that these makes inside libs/ have to be done manually for the cross
256 # compiler hints that something is wrong in the --enable/--disable switches above,
257 # but I am too lazy to look up what is wrong exactly.
258 # (perhaps more files needed to be copied from TL?)
260 (cd libs; $MAKE all )
261 (cd libs/zzip; $MAKE all )
262 (cd libs/zlib; $MAKE all )
263 (cd libs/libpng; $MAKE all )
264 (cd libs/poppler; $MAKE all )
265 (cd texk; $MAKE web2c/Makefile)
266 (cd texk/kpathsea; $MAKE )
267 if [ "$BUILDJIT" = "TRUE" ]
268 then
269 (cd libs/luajit; $MAKE all )
270 (cd texk/web2c; $MAKE $LUATEXEXEJIT)
272 (cd texk/web2c; $MAKE $LUATEXEXE )
275 # go back
276 cd ..
278 if [ "$STRIP_LUATEX" = "TRUE" ] ;
279 then
280 if [ "$BUILDJIT" = "TRUE" ]
281 then
282 $STRIP "$B"/texk/web2c/$LUATEXEXEJIT
284 $STRIP "$B"/texk/web2c/$LUATEXEXE
285 else
286 echo "lua(jit)tex binary not stripped"
289 if [ "$MINGWCROSS" = "TRUE" ]
290 then
291 PATH=$OLDPATH
294 # show the result
295 if [ "$BUILDJIT" = "TRUE" ]
296 then
297 ls -l "$B"/texk/web2c/$LUATEXEXEJIT
299 ls -l "$B"/texk/web2c/$LUATEXEXE