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
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
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
42 CONFIG_SHELL
=`which bash`
46 # try to find gnu make; we may need it
48 if make -v 2>&1|
grep "GNU Make" >/dev
/null
50 echo "Your make is a GNU-make; I will use that"
51 elif gmake
-v >/dev
/null
2>&1
55 echo "You have a GNU-make installed as gmake; I will use that"
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."
71 JOBS_IF_PARALLEL
=${JOBS_IF_PARALLEL:-3}
72 MAX_LOAD_IF_PARALLEL
=${MAX_LOAD_IF_PARALLEL:-2}
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
="-g -O0 $CFLAGS" ; CXXFLAGS
="-g -O0 $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 ;;
102 LUATEXEXEJIT
=luajittex
106 MINGW32
* ) LUATEXEXEJIT
=luajittex.exe
; LUATEXEXE
=luatex.exe
;;
107 CYGWIN
* ) LUATEXEXEJIT
=luajittex.exe
; LUATEXEXE
=luatex.exe
;;
110 WARNINGFLAGS
=--enable-compiler-warnings=$WARNINGS
114 if [ "$CLANG" = "TRUE" ]
119 if [ "$MINGWCROSS64" = "TRUE" ]
122 LUATEXEXEJIT
=luajittex.exe
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" ]
140 LUATEXEXEJIT
=luajittex.exe
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
156 if [ "$MACCROSS" = "TRUE" ]
158 # make sure that architecture parameter is valid
160 i386 | x86_64 | ppc | ppc64
) ;;
161 * ) echo "ERROR: architecture $ARCH is not supported"; exit 1;;
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" ]
178 # if [ $TARGET_TESTARCH == "x64" ]
180 # export LDFLAGS="-pagezero_size 10000 -image_base 100000000 $LDFLAGS"
181 # echo Setting LDFLAGS=$LDFLAGS
186 if [ "$STRIP_LUATEX" = "FALSE" ]
193 # clean up, if needed
194 if [ -r "$B"/Makefile
-a $ONLY_MAKE = "FALSE" ]
197 elif [ ! -r "$B"/Makefile
]
206 # get a new svn version header
207 if [ "$WARNINGS" = "max" ]
209 rm -f source
/texk
/web2c
/luatexdir
/luatex_svnversion.h
211 ( cd source ; .
/texk
/web2c
/luatexdir
/getluatexsvnversion.sh
)
216 if [ "$BUILDJIT" = "TRUE" ]
218 JITENABLE
="--enable-luajittex --without-system-luajit "
222 if [ "$ONLY_MAKE" = "FALSE" ]
224 TL_MAKE
=$MAKE ..
/source
/configure
$CONFHOST $CONFBUILD $WARNINGFLAGS\
225 --enable-cxx-runtime-hack \
226 --enable-silent-rules \
229 --disable-largefile \
232 --enable-dump-share \
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 \
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" ]
269 (cd libs
/luajit
; $MAKE all
)
270 (cd texk
/web2c
; $MAKE $LUATEXEXEJIT)
272 (cd texk
/web2c
; $MAKE $LUATEXEXE )
278 if [ "$STRIP_LUATEX" = "TRUE" ] ;
280 if [ "$BUILDJIT" = "TRUE" ]
282 $STRIP "$B"/texk
/web2c
/$LUATEXEXEJIT
284 $STRIP "$B"/texk
/web2c
/$LUATEXEXE
286 echo "lua(jit)tex binary not stripped"
289 if [ "$MINGWCROSS" = "TRUE" ]
295 if [ "$BUILDJIT" = "TRUE" ]
297 ls -l "$B"/texk
/web2c
/$LUATEXEXEJIT
299 ls -l "$B"/texk
/web2c
/$LUATEXEXE