]> git.sesse.net Git - x264/blob - configure
aarch64: initial build support
[x264] / configure
1 #!/bin/bash
2
3 if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
4 cat <<EOF
5 Usage: ./configure [options]
6
7 Help:
8   -h, --help               print this message
9
10 Standard options:
11   --prefix=PREFIX          install architecture-independent files in PREFIX
12                            [/usr/local]
13   --exec-prefix=EPREFIX    install architecture-dependent files in EPREFIX
14                            [PREFIX]
15   --bindir=DIR             install binaries in DIR [EPREFIX/bin]
16   --libdir=DIR             install libs in DIR [EPREFIX/lib]
17   --includedir=DIR         install includes in DIR [PREFIX/include]
18   --extra-asflags=EASFLAGS add EASFLAGS to ASFLAGS
19   --extra-cflags=ECFLAGS   add ECFLAGS to CFLAGS
20   --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS
21   --extra-rcflags=ERCFLAGS add ERCFLAGS to RCFLAGS
22
23 Configuration options:
24   --disable-cli            disable cli
25   --system-libx264         use system libx264 instead of internal
26   --enable-shared          build shared library
27   --enable-static          build static library
28   --disable-opencl         disable OpenCL features
29   --disable-gpl            disable GPL-only features
30   --disable-thread         disable multithreaded encoding
31   --enable-win32thread     use win32threads (windows only)
32   --disable-interlaced     disable interlaced encoding support
33   --bit-depth=BIT_DEPTH    set output bit depth (8-10) [8]
34   --chroma-format=FORMAT   output chroma format (420, 422, 444, all) [all]
35
36 Advanced options:
37   --disable-asm            disable platform-specific assembly optimizations
38   --enable-debug           add -g
39   --enable-gprof           add -pg
40   --enable-strip           add -s
41   --enable-pic             build position-independent code
42
43 Cross-compilation:
44   --host=HOST              build programs to run on HOST
45   --cross-prefix=PREFIX    use PREFIX for compilation tools
46   --sysroot=SYSROOT        root of cross-build tree
47
48 External library support:
49   --disable-avs            disable avisynth support
50   --disable-swscale        disable swscale support
51   --disable-lavf           disable libavformat support
52   --disable-ffms           disable ffmpegsource support
53   --disable-gpac           disable gpac support
54   --disable-lsmash         disable lsmash support
55
56 EOF
57 exit 1
58 fi
59
60 log_check() {
61     echo -n "checking $1... " >> config.log
62 }
63
64 log_ok() {
65     echo "yes" >> config.log
66 }
67
68 log_fail() {
69     echo "no" >> config.log
70 }
71
72 log_msg() {
73     echo "$1" >> config.log
74 }
75
76 cc_cflags() {
77     # several non gcc compilers issue an incredibly large number of warnings on any warning level,
78     # suppress them by disabling all warnings rather than having to use #pragmas to disable most of them
79     for arg in $*; do
80         [ $arg = -ffast-math ] && arg=
81         [[ "$arg" = -falign-loops* ]] && arg=
82         [ "$arg" = -fno-tree-vectorize ] && arg=
83         [ "$arg" = -Wshadow ] && arg=
84         [ "$arg" = -Wno-maybe-uninitialized ] && arg=
85         [[ "$arg" = -mpreferred-stack-boundary* ]] && arg=
86         [[ "$arg" = -l* ]] && arg=
87         [[ "$arg" = -L* ]] && arg=
88         if [ $compiler_style = MS ]; then
89             [ "$arg" = -Wall ] && arg=-W0
90             [ "$arg" = -Werror ] && arg="-W3 -WX"
91             [ "$arg" = -g ] && arg=-Z7
92             [ "$arg" = -fomit-frame-pointer ] && arg=
93             [ "$arg" = -s ] && arg=
94             [ "$arg" = -fPIC ] && arg=
95         else
96             [ "$arg" = -Wall ] && arg=-w0
97             [ "$arg" = -Werror ] && arg="-w3 -Werror"
98         fi
99         [ $compiler = CL -a "$arg" = -O3 ] && arg=-O2
100
101         [ -n "$arg" ] && echo -n "$arg "
102     done
103 }
104
105 cl_ldflags() {
106     for arg in $*; do
107         arg=${arg/LIBPATH/libpath}
108         [ ${arg#-libpath:} == $arg -a ${arg#-l} != $arg ] && arg=${arg#-l}.lib
109         [ ${arg#-L} != $arg ] && arg=-libpath:${arg#-L}
110         [ $arg = -Wl,--large-address-aware ] && arg=-largeaddressaware
111         [ $arg = -s ] && arg=
112         [ "$arg" = -Wl,-Bsymbolic ] && arg=
113         [ "$arg" = -fno-tree-vectorize ] && arg=
114         [ "$arg" = -Werror ] && arg=
115         [ "$arg" = -Wshadow ] && arg=
116         [ "$arg" = -Wmaybe-uninitialized ] && arg=
117
118         arg=${arg/pthreadGC/pthreadVC}
119         [ "$arg" = avifil32.lib ] && arg=vfw32.lib
120         [ "$arg" = gpac_static.lib ] && arg=libgpac_static.lib
121
122         [ -n "$arg" ] && echo -n "$arg "
123     done
124 }
125
126 cc_check() {
127     if [ -z "$3" ]; then
128         if [ -z "$1$2" ]; then
129             log_check "whether $CC works"
130         elif [ -z "$1" ]; then
131             log_check "for $2"
132         else
133             log_check "for $1"
134         fi
135     elif [ -z "$1" ]; then
136         if [ -z "$2" ]; then
137             log_check "whether $CC supports $3"
138         else
139             log_check "whether $CC supports $3 with $2"
140         fi
141     else
142         log_check "for $3 in $1";
143     fi
144     rm -f conftest.c
145     [ -n "$1" ] && echo "#include <$1>" > conftest.c
146     echo "int main (void) { $3 return 0; }" >> conftest.c
147     if [ $compiler_style = MS ]; then
148         cc_cmd="$CC conftest.c $(cc_cflags $CFLAGS $2) -link $(cl_ldflags $2 $LDFLAGSCLI $LDFLAGS)"
149     else
150         cc_cmd="$CC conftest.c $CFLAGS $2 $LDFLAGSCLI $LDFLAGS -o conftest"
151     fi
152     if $cc_cmd >conftest.log 2>&1; then
153         res=$?
154         log_ok
155     else
156         res=$?
157         log_fail
158         log_msg "Failed commandline was:"
159         log_msg "--------------------------------------------------"
160         log_msg "$cc_cmd"
161         cat conftest.log >> config.log
162         log_msg "--------------------------------------------------"
163         log_msg "Failed program was:"
164         log_msg "--------------------------------------------------"
165         cat conftest.c >> config.log
166         log_msg "--------------------------------------------------"
167     fi
168     return $res
169 }
170
171 cpp_check() {
172     log_check "whether $3 is true"
173     rm -f conftest.c
174     [ -n "$1" ] && echo "#include <$1>" > conftest.c
175     echo -e "#if !($3) \n#error $4 \n#endif " >> conftest.c
176     if [ $compiler_style = MS ]; then
177         cpp_cmd="$CC conftest.c $(cc_cflags $CFLAGS $2) -P"
178     else
179         cpp_cmd="$CC conftest.c $CFLAGS $2 -E -o conftest"
180     fi
181     if $cpp_cmd >conftest.log 2>&1; then
182         res=$?
183         log_ok
184     else
185         res=$?
186         log_fail
187         log_msg "--------------------------------------------------"
188         cat conftest.log >> config.log
189         log_msg "--------------------------------------------------"
190         log_msg "Failed program was:"
191         log_msg "--------------------------------------------------"
192         cat conftest.c >> config.log
193         log_msg "--------------------------------------------------"
194     fi
195     return $res
196 }
197
198 as_check() {
199     log_check "whether $AS supports $1"
200     echo "$1" > conftest$AS_EXT
201     as_cmd="$AS conftest$AS_EXT $ASFLAGS $2 -o conftest.o"
202     if $as_cmd >conftest.log 2>&1; then
203         res=$?
204         log_ok
205     else
206         res=$?
207         log_fail
208         log_msg "Failed commandline was:"
209         log_msg "--------------------------------------------------"
210         log_msg "$as_cmd"
211         cat conftest.log >> config.log
212         log_msg "--------------------------------------------------"
213         log_msg "Failed program was:"
214         log_msg "--------------------------------------------------"
215         cat conftest$AS_EXT >> config.log
216         log_msg "--------------------------------------------------"
217     fi
218     return $res
219 }
220
221 rc_check() {
222     log_check "whether $RC works"
223     echo "$1" > conftest.rc
224     if [ $compiler = GNU ]; then
225         rc_cmd="$RC $RCFLAGS -o conftest.o conftest.rc"
226     else
227         rc_cmd="$RC $RCFLAGS -foconftest.o conftest.rc"
228     fi
229     if $rc_cmd >conftest.log 2>&1; then
230         res=$?
231         log_ok
232     else
233         res=$?
234         log_fail
235         log_msg "Failed commandline was:"
236         log_msg "--------------------------------------------------"
237         log_msg "$rc_cmd"
238         cat conftest.log >> config.log
239         log_msg "--------------------------------------------------"
240         log_msg "Failed program was:"
241         log_msg "--------------------------------------------------"
242         cat conftest.rc >> config.log
243         log_msg "--------------------------------------------------"
244     fi
245     return $res
246 }
247
248 define() {
249     echo "#define $1$([ -n "$2" ] && echo " $2" || echo " 1")" >> config.h
250 }
251
252 die() {
253     log_msg "DIED: $@"
254     echo "$@"
255     exit 1
256 }
257
258 rm -f x264_config.h config.h config.mak config.log x264.pc x264.def conftest*
259
260 SRCPATH="$(cd $(dirname $0); pwd)"
261 [ "$SRCPATH" = "$(pwd)" ] && SRCPATH=.
262 [ -n "$(echo $SRCPATH | grep ' ')" ] && die "Out of tree builds are impossible with whitespace in source path."
263 [ -e "$SRCPATH/config.h" -o -e "$SRCPATH/x264_config.h" ] && die "Out of tree builds are impossible with config.h/x264_config.h in source dir."
264
265 prefix='/usr/local'
266 exec_prefix='${prefix}'
267 bindir='${exec_prefix}/bin'
268 libdir='${exec_prefix}/lib'
269 includedir='${prefix}/include'
270 DEVNULL='/dev/null'
271
272 cli="yes"
273 cli_libx264="internal"
274 shared="no"
275 static="no"
276 avs="auto"
277 lavf="auto"
278 ffms="auto"
279 gpac="auto"
280 lsmash="auto"
281 mp4="no"
282 gpl="yes"
283 thread="auto"
284 swscale="auto"
285 asm="auto"
286 interlaced="yes"
287 debug="no"
288 gprof="no"
289 strip="no"
290 pic="no"
291 bit_depth="8"
292 chroma_format="all"
293 compiler="GNU"
294 compiler_style="GNU"
295 opencl="yes"
296
297 CFLAGS="$CFLAGS -Wall -I. -I\$(SRCPATH)"
298 LDFLAGS="$LDFLAGS"
299 LDFLAGSCLI="$LDFLAGSCLI"
300 ASFLAGS="$ASFLAGS -I. -I\$(SRCPATH)"
301 RCFLAGS="$RCFLAGS"
302 HAVE_GETOPT_LONG=1
303 cross_prefix=""
304
305 EXE=""
306 AS_EXT=".S"
307 NL="
308 "
309
310 # list of all preprocessor HAVE values we can define
311 CONFIG_HAVE="MALLOC_H ALTIVEC ALTIVEC_H MMX ARMV6 ARMV6T2 NEON BEOSTHREAD POSIXTHREAD WIN32THREAD THREAD LOG2F SWSCALE \
312              LAVF FFMS GPAC AVS GPL VECTOREXT INTERLACED CPU_COUNT OPENCL THP LSMASH X86_INLINE_ASM AS_FUNC"
313
314 # parse options
315
316 for opt do
317     optarg="${opt#*=}"
318     case "$opt" in
319         --prefix=*)
320             prefix="$optarg"
321             ;;
322         --exec-prefix=*)
323             exec_prefix="$optarg"
324             ;;
325         --bindir=*)
326             bindir="$optarg"
327             ;;
328         --libdir=*)
329             libdir="$optarg"
330             ;;
331         --includedir=*)
332             includedir="$optarg"
333             ;;
334         --disable-cli)
335             cli="no"
336             ;;
337         --system-libx264)
338             cli_libx264="system"
339             ;;
340         --enable-shared)
341             shared="yes"
342             ;;
343         --enable-static)
344             static="yes"
345             ;;
346         --disable-asm)
347             asm="no"
348             ;;
349         --disable-interlaced)
350             interlaced="no"
351             ;;
352         --disable-avs)
353             avs="no"
354             ;;
355         --disable-lavf)
356             lavf="no"
357             ;;
358         --disable-ffms)
359             ffms="no"
360             ;;
361         --disable-gpac)
362             gpac="no"
363             ;;
364         --disable-lsmash)
365             lsmash="no"
366             ;;
367         --disable-gpl)
368             gpl="no"
369             ;;
370         --extra-asflags=*)
371             ASFLAGS="$ASFLAGS $optarg"
372             ;;
373         --extra-cflags=*)
374             CFLAGS="$CFLAGS $optarg"
375             ;;
376         --extra-ldflags=*)
377             LDFLAGS="$LDFLAGS $optarg"
378             ;;
379         --extra-rcflags=*)
380             RCFLAGS="$RCFLAGS $optarg"
381             ;;
382         --disable-thread)
383             thread="no"
384             ;;
385         --enable-win32thread)
386             thread="win32"
387             ;;
388         --disable-swscale)
389             swscale="no"
390             ;;
391         --enable-debug)
392             debug="yes"
393             ;;
394         --enable-gprof)
395             CFLAGS="$CFLAGS -pg"
396             LDFLAGS="$LDFLAGS -pg"
397             gprof="yes"
398             ;;
399         --enable-strip)
400             strip="yes"
401             ;;
402         --enable-pic)
403             pic="yes"
404             ;;
405         --host=*)
406             host="$optarg"
407             ;;
408         --disable-opencl)
409             opencl="no"
410             ;;
411         --cross-prefix=*)
412             cross_prefix="$optarg"
413             ;;
414         --sysroot=*)
415             CFLAGS="$CFLAGS --sysroot=$optarg"
416             LDFLAGS="$LDFLAGS --sysroot=$optarg"
417             ;;
418         --bit-depth=*)
419             bit_depth="$optarg"
420             if [ "$bit_depth" -lt "8" -o "$bit_depth" -gt "10" ]; then
421                 echo "Supplied bit depth must be in range [8,10]."
422                 exit 1
423             fi
424             bit_depth=`expr $bit_depth + 0`
425             ;;
426         --chroma-format=*)
427             chroma_format="$optarg"
428             if [ $chroma_format != "420" -a $chroma_format != "422" -a $chroma_format != "444" -a $chroma_format != "all" ]; then
429                 echo "Supplied chroma format must be 420, 422, 444 or all."
430                 exit 1
431             fi
432             ;;
433         *)
434             echo "Unknown option $opt, ignored"
435             ;;
436     esac
437 done
438
439 [ "$cli" = "no" -a "$shared" = "no" -a "$static" = "no" ] && die "Nothing to build. Enable cli, shared or static."
440
441 CC="${CC-${cross_prefix}gcc}"
442 AR="${AR-${cross_prefix}ar}"
443 RANLIB="${RANLIB-${cross_prefix}ranlib}"
444 STRIP="${STRIP-${cross_prefix}strip}"
445 INSTALL="${INSTALL-install}"
446
447 if [ "x$host" = x ]; then
448     host=`${SRCPATH}/config.guess`
449 fi
450 # normalize a triplet into a quadruplet
451 host=`${SRCPATH}/config.sub $host`
452
453 # split $host
454 host_cpu="${host%%-*}"
455 host="${host#*-}"
456 host_vendor="${host%%-*}"
457 host_os="${host#*-}"
458
459 # test for use of compilers that require specific handling
460 cc_base=`basename "$CC"`
461 QPRE="-"
462 if [[ $host_os = mingw* || $host_os = cygwin* ]]; then
463     if [[ "$cc_base" = icl || "$cc_base" = icl.* ]]; then
464         # Windows Intel Compiler creates dependency generation with absolute Windows paths, Cygwin's make does not support Windows paths.
465         [[ $host_os = cygwin* ]] && die "Windows Intel Compiler support requires MSYS"
466         compiler=ICL
467         compiler_style=MS
468         CFLAGS="$CFLAGS -Qstd=c99 -nologo -Qms0 -DHAVE_STRING_H -I\$(SRCPATH)/extras"
469         QPRE="-Q"
470         `$CC 2>&1 | grep -q IA-32` && host_cpu=i486
471         `$CC 2>&1 | grep -q "Intel(R) 64"` && host_cpu=x86_64
472         cpp_check "" "" "_MSC_VER >= 1400" || die "Windows Intel Compiler support requires Visual Studio 2005 or newer"
473     elif [[ "$cc_base" = cl || "$cc_base" = cl.* ]]; then
474         # Standard Microsoft Visual Studio
475         # Dependency creation includes absolute windows paths, Cygwin's make does not support Windows paths.
476         [[ $host_os = cygwin* ]] && die "Microsoft Visual Studio support requires MSYS"
477         compiler=CL
478         compiler_style=MS
479         CFLAGS="$CFLAGS -nologo -DHAVE_STRING_H -I\$(SRCPATH)/extras"
480         `$CC 2>&1 | grep -q 'for x86'` && host_cpu=i486
481         `$CC 2>&1 | grep -q 'for x64'` && host_cpu=x86_64
482         cpp_check '' '' '_MSC_VER > 1800 || (_MSC_VER == 1800 && _MSC_FULL_VER >= 180030324)' || die "Microsoft Visual Studio support requires Visual Studio 2013 Update 2 or newer"
483     fi
484 else
485     if [[ "$cc_base" = icc || "$cc_base" = icc.* ]]; then
486         AR="xiar"
487         compiler=ICC
488     fi
489 fi
490
491 libm=""
492 case $host_os in
493     beos*)
494         SYS="BEOS"
495         define HAVE_MALLOC_H
496         ;;
497     darwin*)
498         SYS="MACOSX"
499         libm="-lm"
500         if [ "$pic" = "no" ]; then
501             cc_check "" -mdynamic-no-pic && CFLAGS="$CFLAGS -mdynamic-no-pic"
502         fi
503         ;;
504     freebsd*)
505         SYS="FREEBSD"
506         libm="-lm"
507         ;;
508     kfreebsd*-gnu)
509         SYS="FREEBSD"
510         define HAVE_MALLOC_H
511         libm="-lm"
512         ;;
513     netbsd*)
514         SYS="NETBSD"
515         libm="-lm"
516         ;;
517     openbsd*)
518         SYS="OPENBSD"
519         libm="-lm"
520         ;;
521     *linux*)
522         SYS="LINUX"
523         define HAVE_MALLOC_H
524         libm="-lm"
525         ;;
526     gnu*)
527         SYS="HURD"
528         define HAVE_MALLOC_H
529         libm="-lm"
530         ;;
531     cygwin*)
532         EXE=".exe"
533         if cc_check "" -mno-cygwin; then
534             CFLAGS="$CFLAGS -mno-cygwin"
535             LDFLAGS="$LDFLAGS -mno-cygwin"
536         fi
537         if cpp_check "" "" "defined(__CYGWIN__)" ; then
538             define HAVE_MALLOC_H
539             SYS="CYGWIN"
540         else
541             SYS="WINDOWS"
542             DEVNULL="NUL"
543             LDFLAGSCLI="$LDFLAGSCLI -lshell32"
544             RC="${RC-${cross_prefix}windres}"
545         fi
546         ;;
547     mingw*)
548         SYS="WINDOWS"
549         EXE=".exe"
550         DEVNULL="NUL"
551         LDFLAGSCLI="$LDFLAGSCLI -lshell32"
552         [ $compiler = GNU ] && RC="${RC-${cross_prefix}windres}" || RC="${RC-rc}"
553         ;;
554     sunos*|solaris*)
555         SYS="SunOS"
556         define HAVE_MALLOC_H
557         libm="-lm"
558         if cc_check "" /usr/lib/64/values-xpg6.o; then
559             LDFLAGS="$LDFLAGS /usr/lib/64/values-xpg6.o"
560         else
561             LDFLAGS="$LDFLAGS /usr/lib/values-xpg6.o"
562         fi
563         if test -x /usr/ucb/install ; then
564             INSTALL=/usr/ucb/install
565         elif test -x /usr/bin/ginstall ; then
566             # OpenSolaris
567             INSTALL=/usr/bin/ginstall
568         elif test -x /usr/gnu/bin/install ; then
569             # OpenSolaris
570             INSTALL=/usr/gnu/bin/install
571         fi
572         HAVE_GETOPT_LONG=0
573         ;;
574     *qnx*)
575         SYS="QNX"
576         define HAVE_MALLOC_H
577         libm="-lm"
578         HAVE_GETOPT_LONG=0
579         CFLAGS="$CFLAGS -I\$(SRCPATH)/extras"
580         ;;
581     *)
582         die "Unknown system $host, edit the configure"
583         ;;
584 esac
585
586 LDFLAGS="$LDFLAGS $libm"
587
588 stack_alignment=16
589 case $host_cpu in
590     i*86)
591         ARCH="X86"
592         AS="yasm"
593         AS_EXT=".asm"
594         ASFLAGS="$ASFLAGS -O2 -DARCH_X86_64=0 -I\$(SRCPATH)/common/x86/"
595         if [ $compiler = GNU ]; then
596             if [[ "$asm" == auto && "$CFLAGS" != *-march* ]]; then
597                 CFLAGS="$CFLAGS -march=i686"
598             fi
599             if [[ "$asm" == auto && "$CFLAGS" != *-mfpmath* ]]; then
600                 CFLAGS="$CFLAGS -mfpmath=sse -msse"
601             fi
602             CFLAGS="-m32 $CFLAGS"
603             LDFLAGS="-m32 $LDFLAGS"
604         elif [ $compiler = ICC ]; then
605             # icc on linux has various degrees of mod16 stack support
606             if [ $SYS = LINUX ]; then
607                 # < 11 is completely incapable of keeping a mod16 stack
608                 if cpp_check "" "" "__INTEL_COMPILER < 1100" ; then
609                     stack_alignment=4
610                 # 11 <= x < 12 is capable of keeping a mod16 stack, but defaults to not doing so.
611                 elif cpp_check "" "" "__INTEL_COMPILER < 1200" ; then
612                     CFLAGS="$CFLAGS -falign-stack=assume-16-byte"
613                 fi
614                 # >= 12 defaults to a mod16 stack
615             fi
616         else # ICL/CL
617             # always a mod4 stack
618             stack_alignment=4
619         fi
620         if [ "$SYS" = MACOSX ]; then
621             ASFLAGS="$ASFLAGS -f macho -DPREFIX"
622         elif [ "$SYS" = WINDOWS -o "$SYS" = CYGWIN ]; then
623             ASFLAGS="$ASFLAGS -f win32 -DPREFIX"
624             LDFLAGS="$LDFLAGS -Wl,--large-address-aware"
625             [ $compiler = GNU ] && LDFLAGS="$LDFLAGS -Wl,--nxcompat -Wl,--dynamicbase"
626             [ $compiler = GNU ] && RCFLAGS="--target=pe-i386 $RCFLAGS"
627         else
628             ASFLAGS="$ASFLAGS -f elf"
629         fi
630         ;;
631     x86_64)
632         ARCH="X86_64"
633         AS="yasm"
634         AS_EXT=".asm"
635         ASFLAGS="$ASFLAGS -DARCH_X86_64=1 -I\$(SRCPATH)/common/x86/"
636         [ $compiler = GNU ] && CFLAGS="-m64 $CFLAGS" && LDFLAGS="-m64 $LDFLAGS"
637         if [ "$SYS" = MACOSX ]; then
638             ASFLAGS="$ASFLAGS -f macho64 -m amd64 -DPIC -DPREFIX"
639             if cc_check '' "-arch x86_64"; then
640                 CFLAGS="$CFLAGS -arch x86_64"
641                 LDFLAGS="$LDFLAGS -arch x86_64"
642             fi
643         elif [ "$SYS" = WINDOWS -o "$SYS" = CYGWIN ]; then
644             ASFLAGS="$ASFLAGS -f win32 -m amd64"
645             # only the GNU toolchain is inconsistent in prefixing function names with _
646             [ $compiler = GNU ] && cc_check "" "-S" && grep -q "_main:" conftest && ASFLAGS="$ASFLAGS -DPREFIX"
647             [ $compiler = GNU ] && LDFLAGS="$LDFLAGS -Wl,--nxcompat -Wl,--dynamicbase"
648             [ $compiler = GNU ] && RCFLAGS="--target=pe-x86-64 $RCFLAGS"
649         else
650             ASFLAGS="$ASFLAGS -f elf -m amd64"
651         fi
652         ;;
653     powerpc|powerpc64)
654         ARCH="PPC"
655         if [ $asm = auto ] ; then
656             define HAVE_ALTIVEC
657             AS="${AS-${CC}}"
658             AS_EXT=".c"
659             if [ $SYS = MACOSX ] ; then
660                 CFLAGS="$CFLAGS -faltivec -fastf -mcpu=G4"
661             else
662                 CFLAGS="$CFLAGS -maltivec -mabi=altivec"
663                 define HAVE_ALTIVEC_H
664             fi
665         fi
666         ;;
667     sparc)
668         ARCH="SPARC"
669         ;;
670     mips|mipsel|mips64|mips64el)
671         ARCH="MIPS"
672         ;;
673     arm*)
674         ARCH="ARM"
675         if [ "$SYS" = MACOSX ] ; then
676             AS="${AS-extras/gas-preprocessor.pl $CC}"
677             ASFLAGS="$ASFLAGS -DPREFIX -DPIC"  # apple's ld doesn't support movw/movt relocations at all
678             # build for armv7 by default
679             if ! echo $CFLAGS | grep -Eq '\-arch' ; then
680                 CFLAGS="$CFLAGS -arch armv7"
681                 LDFLAGS="$LDFLAGS -arch armv7"
682             fi
683         else
684             AS="${AS-${CC}}"
685         fi
686         ;;
687     aarch64)
688         ARCH="AARCH64"
689         if [ "$SYS" = MACOSX ] ; then
690             AS="${AS-extras/gas-preprocessor.pl $CC}"
691             ASFLAGS="$ASFLAGS -DPREFIX"
692         else
693             AS="${AS-${CC}}"
694         fi
695         ;;
696     s390|s390x)
697         ARCH="S390"
698         ;;
699     hppa*|parisc*)
700         ARCH="PARISC"
701         ;;
702     ia64)
703         ARCH="IA64"
704         ;;
705     alpha*)
706         ARCH="ALPHA"
707         ;;
708     *)
709         ARCH="$(echo $host_cpu | tr a-z A-Z)"
710         ;;
711 esac
712
713 if [ $SYS = WINDOWS ]; then
714     if ! rc_check "0 RCDATA {0}" ; then
715         RC=""
716     fi
717 fi
718
719 log_msg "x264 configure script"
720 if [ -n "$*" ]; then
721     msg="Command line options:"
722     for i in $@; do
723         msg="$msg \"$i\""
724     done
725     log_msg "$msg"
726 fi
727 log_msg ""
728
729 # check requirements
730
731 cc_check || die "No working C compiler found."
732
733 if [ $compiler_style = GNU ]; then
734     if cc_check '' -std=gnu99 'for( int i = 0; i < 9; i++ );' ; then
735         CFLAGS="$CFLAGS -std=gnu99"
736     elif cc_check '' -std=c99 'for( int i = 0; i < 9; i++ );' ; then
737         CFLAGS="$CFLAGS -std=c99 -D_POSIX_C_SOURCE=200112L -D_BSD_SOURCE"
738     elif ! cc_check '' '' 'for( int i = 0; i < 9; i++ );' ; then
739         die "C99 compiler is needed for compilation."
740     fi
741 fi
742
743 if [ $shared = yes -a \( $ARCH = "X86_64" -o $ARCH = "PPC" -o $ARCH = "ALPHA" -o $ARCH = "ARM" -o $ARCH = "IA64" -o $ARCH = "PARISC" -o $ARCH = "MIPS" -o $ARCH = "AARCH64" \) ] ; then
744     pic="yes"
745 fi
746
747 if [ $asm = auto -a \( $ARCH = X86 -o $ARCH = X86_64 \) ] ; then
748     if ! as_check "vpmovzxwd ymm0, xmm0" ; then
749         VER=`($AS --version || echo no assembler) 2>/dev/null | head -n 1`
750         echo "Found $VER"
751         echo "Minimum version is yasm-1.2.0"
752         echo "If you really want to compile without asm, configure with --disable-asm."
753         exit 1
754     fi
755     cc_check '' '' '__asm__("pabsw %xmm0, %xmm0");' && define HAVE_X86_INLINE_ASM
756     ASFLAGS="$ASFLAGS -Worphan-labels"
757     define HAVE_MMX
758     if [ $compiler = GNU ] && cc_check '' -mpreferred-stack-boundary=5 ; then
759         CFLAGS="$CFLAGS -mpreferred-stack-boundary=5"
760         stack_alignment=32
761     fi
762 fi
763
764 if [ $asm = auto -a $ARCH = ARM ] ; then
765     # set flags so neon is built by default
766     echo $CFLAGS | grep -Eq '(-mcpu|-march|-mfpu)' || CFLAGS="$CFLAGS -mcpu=cortex-a8 -mfpu=neon"
767
768     if  cc_check '' '' '__asm__("rev ip, ip");' ; then      define HAVE_ARMV6
769         cc_check '' '' '__asm__("movt r0, #0");'         && define HAVE_ARMV6T2
770         cc_check '' '' '__asm__("vadd.i16 q0, q0, q0");' && define HAVE_NEON
771         ASFLAGS="$ASFLAGS -c"
772     else
773         echo "You specified a pre-ARMv6 or Thumb-1 CPU in your CFLAGS."
774         echo "If you really want to run on such a CPU, configure with --disable-asm."
775         exit 1
776     fi
777 fi
778
779 if [ $asm = auto -a $ARCH = AARCH64 ] ; then
780     # set flags so neon is built by default
781     echo $CFLAGS | grep -Eq '(-mcpu|-march|-mfpu|-arch)' || CFLAGS="$CFLAGS -arch arm64 -mfpu=neon"
782
783     if  cc_check '' '' '__asm__("cmeq v0.8h, v0.8h, #0");' ; then define HAVE_NEON
784         ASFLAGS="$ASFLAGS -c"
785     else
786         echo "no NEON support, try adding -mfpu=neon to CFLAGS"
787         echo "If you really want to run on such a CPU, configure with --disable-asm."
788         exit 1
789     fi
790 fi
791
792 if [ $asm = auto -a \( $ARCH = ARM -o $ARCH = AARCH64 \) ] ; then
793     # check if the assembler supports '.func' (clang 3.5 does not)
794     as_check ".func test${NL}.endfunc" && define HAVE_AS_FUNC 1
795 fi
796
797 [ $asm = no ] && AS=""
798 [ "x$AS" = x ] && asm="no" || asm="yes"
799
800 define ARCH_$ARCH
801 define SYS_$SYS
802
803 define STACK_ALIGNMENT $stack_alignment
804 ASFLAGS="$ASFLAGS -DSTACK_ALIGNMENT=$stack_alignment"
805
806 # skip endianness check for Intel Compiler and MSVS, as all supported platforms are little. each have flags that will cause the check to fail as well
807 if [ $compiler = GNU ]; then
808     echo "int i[2] = {0x42494745,0}; double f[2] = {0x1.0656e6469616ep+102,0};" > conftest.c
809     $CC $CFLAGS conftest.c -c -o conftest.o 2>/dev/null || die "endian test failed"
810     if (${cross_prefix}strings -a conftest.o | grep -q BIGE) && (${cross_prefix}strings -a conftest.o | grep -q FPendian) ; then
811         define WORDS_BIGENDIAN
812     elif !(${cross_prefix}strings -a conftest.o | grep -q EGIB && ${cross_prefix}strings -a conftest.o | grep -q naidnePF) ; then
813         die "endian test failed"
814     fi
815 fi
816
817 # autodetect options that weren't forced nor disabled
818
819 # pthread-win32 is lgpl, prevent its use if --disable-gpl is specified and targeting windows
820 [ "$SYS" = "WINDOWS" -a "$gpl" = "no" -a "$thread" = "auto" ] && thread="win32"
821
822 libpthread=""
823 if [ "$thread" = "auto" ]; then
824     thread="no"
825     case $SYS in
826         BEOS)
827             thread="beos"
828             define HAVE_BEOSTHREAD
829             ;;
830         WINDOWS)
831             if cc_check pthread.h -lpthread "pthread_create(0,0,0,0);" ; then
832                 thread="posix"
833                 libpthread="-lpthread"
834             elif cc_check pthread.h -lpthreadGC2 "pthread_create(0,0,0,0);" ; then
835                 thread="posix"
836                 libpthread="-lpthreadGC2"
837             elif cc_check pthread.h "-lpthreadGC2 -lwsock32 -DPTW32_STATIC_LIB" "pthread_create(0,0,0,0);" ; then
838                 thread="posix"
839                 libpthread="-lpthreadGC2 -lwsock32"
840                 define PTW32_STATIC_LIB
841             elif cc_check pthread.h "-lpthreadGC2 -lws2_32 -DPTW32_STATIC_LIB" "pthread_create(0,0,0,0);" ; then
842                 thread="posix"
843                 libpthread="-lpthreadGC2 -lws2_32"
844                 define PTW32_STATIC_LIB
845             else
846                 # default to native threading if pthread-win32 is unavailable
847                 thread="win32"
848             fi
849             ;;
850         QNX)
851             cc_check pthread.h -lc "pthread_create(0,0,0,0);" && thread="posix" && libpthread="-lc"
852             ;;
853         *)
854             if cc_check pthread.h -lpthread "pthread_create(0,0,0,0);" ; then
855                thread="posix"
856                libpthread="-lpthread"
857             else
858                 cc_check pthread.h "" "pthread_create(0,0,0,0);" && thread="posix" && libpthread=""
859             fi
860             ;;
861     esac
862 fi
863 if [ "$thread" = "posix" ]; then
864     LDFLAGS="$LDFLAGS $libpthread"
865     define HAVE_POSIXTHREAD
866     if [ "$SYS" = "LINUX" ] && cc_check sched.h "-D_GNU_SOURCE -Werror" "cpu_set_t p_aff; return CPU_COUNT(&p_aff);" ; then
867         define HAVE_CPU_COUNT
868     fi
869 fi
870 if [ "$thread" = "win32" ]; then
871     # cygwin does not support win32 threads
872     if [ "$SYS" = "WINDOWS" ]; then
873         define HAVE_WIN32THREAD
874     else
875         thread="no"
876     fi
877 fi
878 [ "$thread" != "no" ] && define HAVE_THREAD
879
880 if cc_check "math.h" "-Werror" "return log2f(2);" ; then
881     define HAVE_LOG2F
882 fi
883
884 if [ "$SYS" = "LINUX" -a \( "$ARCH" = "X86" -o "$ARCH" = "X86_64" \) ] && cc_check "sys/mman.h" "" "MADV_HUGEPAGE;" ; then
885     define HAVE_THP
886 fi
887
888 if [ "$swscale" = "auto" ] ; then
889     swscale="no"
890     if ${cross_prefix}pkg-config --exists libswscale 2>/dev/null; then
891         SWSCALE_LIBS="$SWSCALE_LIBS $(${cross_prefix}pkg-config --libs libswscale libavutil)"
892         SWSCALE_CFLAGS="$SWSCALE_CFLAGS $(${cross_prefix}pkg-config --cflags libswscale libavutil)"
893     fi
894     [ -z "$SWSCALE_LIBS" ] && SWSCALE_LIBS="-lswscale -lavutil"
895
896     if cc_check "libswscale/swscale.h" "$SWSCALE_CFLAGS $SWSCALE_LIBS" "sws_init_context(0,0,0);" ; then
897         if cpp_check "libavutil/pixdesc.h" "$SWSCALE_CFLAGS $SWSCALE_LIBS" "defined(AV_PIX_FMT_FLAG_RGB)" ; then
898             swscale="yes"
899         else
900             echo "Warning: AV_PIX_FMT_FLAG_RGB is missing from libavutil, update for swscale support"
901         fi
902     fi
903 fi
904
905 if [ "$lavf" = "auto" ] ; then
906     lavf="no"
907     if ${cross_prefix}pkg-config --exists libavformat libavcodec libswscale 2>/dev/null; then
908         LAVF_LIBS="$LAVF_LIBS $(${cross_prefix}pkg-config --libs libavformat libavcodec libavutil libswscale)"
909         LAVF_CFLAGS="$LAVF_CFLAGS $(${cross_prefix}pkg-config --cflags libavformat libavcodec libavutil libswscale)"
910     fi
911     if [ -z "$LAVF_LIBS" -a -z "$LAVF_CFLAGS" ]; then
912         LAVF_LIBS="-lavformat"
913         for lib in -lpostproc -lavcodec -lswscale -lavutil -lm -lz -lbz2 $libpthread -lavifil32 -lws2_32; do
914             cc_check "" $lib && LAVF_LIBS="$LAVF_LIBS $lib"
915         done
916     fi
917     LAVF_LIBS="-L. $LAVF_LIBS"
918     if cc_check libavformat/avformat.h "$LAVF_CFLAGS $LAVF_LIBS" "avformat_close_input(0);" ; then
919         if [ "$swscale" = "yes" ]; then
920             lavf="yes"
921         else
922             echo "Warning: libavformat is not supported without swscale support"
923         fi
924     fi
925 fi
926
927 if [ "$ffms" = "auto" ] ; then
928     ffms_major="2"; ffms_minor="16"; ffms_micro="2"; ffms_bump="0"
929     ffms="no"
930
931     if ${cross_prefix}pkg-config --exists ffms2 2>/dev/null; then
932         FFMS2_LIBS="$FFMS2_LIBS $(${cross_prefix}pkg-config --libs ffms2)"
933         FFMS2_CFLAGS="$FFMS2_CFLAGS $(${cross_prefix}pkg-config --cflags ffms2)"
934     fi
935     [ -z "$FFMS2_LIBS" ] && FFMS2_LIBS="-lffms2"
936
937     if cc_check ffms.h "$FFMS2_CFLAGS $FFMS2_LIBS" "FFMS_DestroyVideoSource(0);" ; then
938         ffms="yes"
939     elif cc_check ffms.h "$FFMS2_CFLAGS $FFMS2_LIBS -lstdc++ $LAVF_LIBS" "FFMS_DestroyVideoSource(0);" ; then
940         ffms="yes"
941         FFMS2_LIBS="$FFMS2_LIBS -lstdc++ $LAVF_LIBS"
942     fi
943
944     error="ffms must be at least version $ffms_major.$ffms_minor.$ffms_micro.$ffms_bump"
945     if [ $ffms = "yes" ] && ! cpp_check "ffms.h" "$FFMS2_CFLAGS" "FFMS_VERSION >= (($ffms_major << 24) | ($ffms_minor << 16) | ($ffms_micro << 8) | $ffms_bump)" "$error"; then
946        ffms="no"
947        echo "Warning: $error"
948     fi
949     if [ "$ffms" = "yes" -a "$swscale" = "no" ]; then
950         echo "Warning: ffms is not supported without swscale support"
951         ffms="no"
952     fi
953 fi
954
955 if [ "$swscale" = "yes" ]; then
956     LDFLAGSCLI="$SWSCALE_LIBS $LDFLAGSCLI"
957     CFLAGS="$CFLAGS $SWSCALE_CFLAGS"
958     define HAVE_SWSCALE
959     if [ "$lavf" = "yes" ]; then
960         LDFLAGSCLI="$LAVF_LIBS $LDFLAGSCLI"
961         CFLAGS="$CFLAGS $LAVF_CFLAGS"
962         define HAVE_LAVF
963     fi
964     if [ "$ffms" = "yes" ]; then
965         LDFLAGSCLI="$FFMS2_LIBS $LDFLAGSCLI"
966         CFLAGS="$CFLAGS $FFMS2_CFLAGS"
967         define HAVE_FFMS
968     fi
969 fi
970
971 if [ "$lsmash" = "auto" ] ; then
972     lsmash="no"
973     if ${cross_prefix}pkg-config --exists liblsmash 2>/dev/null; then
974         LSMASH_LIBS="$LSMASH_LIBS $(${cross_prefix}pkg-config --libs liblsmash)"
975         LSMASH_CFLAGS="$LSMASH_CFLAGS $(${cross_prefix}pkg-config --cflags liblsmash)"
976     fi
977     [ -z "$LSMASH_LIBS" ] && LSMASH_LIBS="-llsmash"
978
979     if cc_check lsmash.h "$LSMASH_CFLAGS $LSMASH_LIBS" ; then
980         if cpp_check lsmash.h "$LSMASH_CFLAGS" "LSMASH_VERSION_MAJOR > 1 || (LSMASH_VERSION_MAJOR == 1 && LSMASH_VERSION_MINOR >= 5)" ; then
981             lsmash="yes"
982         else
983             echo "Warning: lsmash is too old, update to rev.895 or later"
984         fi
985     fi
986 fi
987
988 if [ "$gpac" = "auto" -a "$lsmash" != "yes" ] ; then
989     gpac="no"
990     GPAC_LIBS="-lgpac_static"
991     cc_check "" -lz && GPAC_LIBS="$GPAC_LIBS -lz"
992     if [ "$SYS" = "WINDOWS" ] ; then
993         cc_check "" -lws2_32 && GPAC_LIBS="$GPAC_LIBS -lws2_32"
994         cc_check "" -lwinmm && GPAC_LIBS="$GPAC_LIBS -lwinmm"
995     fi
996     if cc_check gpac/isomedia.h "$GPAC_LIBS" ; then
997         if cc_check gpac/isomedia.h "$GPAC_LIBS" "gf_isom_set_pixel_aspect_ratio(0,0,0,0,0);" ; then
998             gpac="yes"
999         else
1000             echo "Warning: gpac is too old, update to 2007-06-21 UTC or later"
1001         fi
1002     fi
1003 fi
1004
1005 if [ "$lsmash" = "yes" ] ; then
1006     mp4="lsmash"
1007     LDFLAGSCLI="$LSMASH_LIBS $LDFLAGSCLI"
1008     CFLAGS="$CFLAGS $LSMASH_CFLAGS"
1009     define HAVE_LSMASH
1010 elif [ "$gpac" = "yes" ] ; then
1011     mp4="gpac"
1012     define HAVE_GPAC
1013     LDFLAGSCLI="$GPAC_LIBS $LDFLAGSCLI"
1014 fi
1015
1016 if [ "$avs" = "auto" ] ; then
1017     avs="no"
1018     # cygwin can use avisynth if it can use LoadLibrary
1019     if [ $SYS = WINDOWS ] || ([ $SYS = CYGWIN ] && cc_check windows.h "" "LoadLibraryW(0);") ; then
1020         avs="avisynth"
1021         define HAVE_AVS
1022         define USE_AVXSYNTH 0
1023     elif [ "$SYS" = "LINUX" -o "$SYS" = "MACOSX" ] ; then
1024     # AvxSynth currently only supports Linux and OSX
1025         avs="avxsynth"
1026         define HAVE_AVS
1027         define USE_AVXSYNTH 1
1028         AVS_LIBS="-ldl"
1029         LDFLAGSCLI="$AVS_LIBS $LDFLAGSCLI"
1030     fi
1031 fi
1032
1033 cc_check "stdint.h" "" "uint32_t test_vec __attribute__ ((vector_size (16))) = {0,1,2,3};" && define HAVE_VECTOREXT
1034
1035 if [ "$pic" = "yes" ] ; then
1036     CFLAGS="$CFLAGS -fPIC"
1037     ASFLAGS="$ASFLAGS -DPIC"
1038     # resolve textrels in the x86 asm
1039     cc_check stdio.h "-shared -Wl,-Bsymbolic" && SOFLAGS="$SOFLAGS -Wl,-Bsymbolic"
1040     [ $SYS = SunOS -a "$ARCH" = "X86" ] && SOFLAGS="$SOFLAGS -mimpure-text"
1041 fi
1042
1043 if [ "$debug" != "yes" -a "$gprof" != "yes" ]; then
1044     CFLAGS="$CFLAGS -fomit-frame-pointer"
1045 fi
1046
1047 if [ "$strip" = "yes" ]; then
1048     LDFLAGS="$LDFLAGS -s"
1049 fi
1050
1051 if [ "$debug" = "yes" ]; then
1052     CFLAGS="-O1 -g $CFLAGS"
1053 else
1054     CFLAGS="-O3 -ffast-math $CFLAGS"
1055 fi
1056
1057 if cc_check '' -fno-tree-vectorize ; then
1058     CFLAGS="$CFLAGS -fno-tree-vectorize"
1059 fi
1060
1061 if [ $SYS = WINDOWS -a $ARCH = X86 -a $compiler = GNU ] ; then
1062     # workaround gcc/ld bug with alignment of static variables/arrays that are initialized to zero
1063     cc_check '' -fno-zero-initialized-in-bss && CFLAGS="$CFLAGS -fno-zero-initialized-in-bss"
1064 fi
1065
1066 if cc_check "stdio.h" "" "fseeko(stdin,0,0);" ; then
1067     define fseek fseeko
1068     define ftell ftello
1069 elif cc_check "stdio.h" "" "fseeko64(stdin,0,0);" ; then
1070     define fseek fseeko64
1071     define ftell ftello64
1072 elif cc_check "stdio.h" "" "_fseeki64(stdin,0,0);" ; then
1073     define fseek _fseeki64
1074     define ftell _ftelli64
1075 fi
1076
1077 if cc_check '' -Wshadow ; then
1078     CFLAGS="-Wshadow $CFLAGS"
1079 fi
1080
1081 if cc_check '' -Wmaybe-uninitialized ; then
1082     CFLAGS="-Wno-maybe-uninitialized $CFLAGS"
1083 fi
1084
1085 if [ "$bit_depth" -gt "8" ]; then
1086     define HIGH_BIT_DEPTH
1087     ASFLAGS="$ASFLAGS -DHIGH_BIT_DEPTH=1"
1088     opencl="no"
1089 else
1090     ASFLAGS="$ASFLAGS -DHIGH_BIT_DEPTH=0"
1091 fi
1092
1093 if [ "$chroma_format" != "all" ]; then
1094     define CHROMA_FORMAT CHROMA_$chroma_format
1095 fi
1096
1097 ASFLAGS="$ASFLAGS -DBIT_DEPTH=$bit_depth"
1098
1099 [ $gpl = yes ] && define HAVE_GPL && x264_gpl=1 || x264_gpl=0
1100
1101 [ $interlaced = yes ] && define HAVE_INTERLACED && x264_interlaced=1 || x264_interlaced=0
1102
1103 libdl=""
1104 if [ "$opencl" = "yes" ]; then
1105     opencl="no"
1106     # cygwin can use opencl if it can use LoadLibrary
1107     if [ $SYS = WINDOWS ] || ([ $SYS = CYGWIN ] && cc_check windows.h "" "LoadLibraryW(0);") ; then
1108         opencl="yes"
1109         define HAVE_OPENCL
1110     elif [ "$SYS" = "LINUX" -o "$SYS" = "MACOSX" ] ; then
1111         opencl="yes"
1112         define HAVE_OPENCL
1113         libdl="-ldl"
1114     fi
1115     LDFLAGS="$LDFLAGS $libdl"
1116 fi
1117
1118 #define undefined vars as 0
1119 for var in $CONFIG_HAVE; do
1120     grep -q "HAVE_$var 1" config.h || define HAVE_$var 0
1121 done
1122
1123 DEPMM="${QPRE}MM"
1124 DEPMT="${QPRE}MT"
1125 if [ $compiler_style = MS ]; then
1126     AR="lib -nologo -out:"
1127     LD="link -out:"
1128     [ $compiler = ICL ] && AR="xi$AR" && LD="xi$LD"
1129     HAVE_GETOPT_LONG=0
1130     LDFLAGS="-nologo -incremental:no $(cl_ldflags $LDFLAGS)"
1131     LDFLAGSCLI="$(cl_ldflags $LDFLAGSCLI)"
1132     LIBX264=libx264.lib
1133     RANLIB=
1134     [ -n "$RC" ] && RCFLAGS="$RCFLAGS -nologo -I. -I\$(SRCPATH)/extras -fo"
1135     STRIP=
1136     if [ $debug = yes ]; then
1137         LDFLAGS="-debug $LDFLAGS"
1138         CFLAGS="-D_DEBUG $CFLAGS"
1139     else
1140         CFLAGS="-DNDEBUG $CFLAGS"
1141     fi
1142 else # gcc/icc
1143     DEPMM="$DEPMM -g0"
1144     AR="$AR rc "
1145     LD="$CC -o "
1146     LIBX264=libx264.a
1147     [ -n "$RC" ] && RCFLAGS="$RCFLAGS -I. -o "
1148 fi
1149 [ $compiler != GNU ] && CFLAGS="$(cc_cflags $CFLAGS)"
1150 if [ $compiler = ICC -o $compiler = ICL ]; then
1151     # icc does not define __SSE__ until SSE2 optimization and icl never defines it or _M_IX86_FP
1152     [ \( $ARCH = X86_64 -o $ARCH = X86 \) -a $asm = yes ] && ! cpp_check "" "" "defined(__SSE__)" && define __SSE__
1153     PROF_GEN_CC="${QPRE}prof-gen ${QPRE}prof-dir."
1154     PROF_GEN_LD=
1155     PROF_USE_CC="${QPRE}prof-use ${QPRE}prof-dir."
1156     PROF_USE_LD=
1157 elif [ $compiler = CL ]; then
1158     # Visual Studio
1159     # _M_IX86_FP is only defined on x86
1160     [ $ARCH = X86 ] && cpp_check '' '' '_M_IX86_FP >= 1' && define __SSE__
1161     [ $ARCH = X86_64 ] && define __SSE__
1162     # As long as the cli application can't link against the dll, the dll can not be pgo'd.
1163     # pgds are link flag specific and the -dll flag for creating the dll makes it unshareable with the cli
1164     PROF_GEN_CC="-GL"
1165     PROF_GEN_LD="-LTCG:PGINSTRUMENT"
1166     PROF_USE_CC="-GL"
1167     PROF_USE_LD="-LTCG:PGOPTIMIZE"
1168 else
1169     PROF_GEN_CC="-fprofile-generate"
1170     PROF_GEN_LD="-fprofile-generate"
1171     PROF_USE_CC="-fprofile-use"
1172     PROF_USE_LD="-fprofile-use"
1173 fi
1174
1175 rm -f conftest*
1176
1177 # generate exported config file
1178
1179 config_chroma_format="X264_CSP_I$chroma_format"
1180 [ "$config_chroma_format" == "X264_CSP_Iall" ] && config_chroma_format="0"
1181 cat > x264_config.h << EOF
1182 #define X264_BIT_DEPTH     $bit_depth
1183 #define X264_GPL           $x264_gpl
1184 #define X264_INTERLACED    $x264_interlaced
1185 #define X264_CHROMA_FORMAT $config_chroma_format
1186 EOF
1187
1188 # generate config files
1189
1190 cat > config.mak << EOF
1191 SRCPATH=$SRCPATH
1192 prefix=$prefix
1193 exec_prefix=$exec_prefix
1194 bindir=$bindir
1195 libdir=$libdir
1196 includedir=$includedir
1197 ARCH=$ARCH
1198 SYS=$SYS
1199 CC=$CC
1200 CFLAGS=$CFLAGS
1201 COMPILER=$compiler
1202 COMPILER_STYLE=$compiler_style
1203 DEPMM=$DEPMM
1204 DEPMT=$DEPMT
1205 LD=$LD
1206 LDFLAGS=$LDFLAGS
1207 LIBX264=$LIBX264
1208 AR=$AR
1209 RANLIB=$RANLIB
1210 STRIP=$STRIP
1211 INSTALL=$INSTALL
1212 AS=$AS
1213 ASFLAGS=$ASFLAGS
1214 RC=$RC
1215 RCFLAGS=$RCFLAGS
1216 EXE=$EXE
1217 HAVE_GETOPT_LONG=$HAVE_GETOPT_LONG
1218 DEVNULL=$DEVNULL
1219 PROF_GEN_CC=$PROF_GEN_CC
1220 PROF_GEN_LD=$PROF_GEN_LD
1221 PROF_USE_CC=$PROF_USE_CC
1222 PROF_USE_LD=$PROF_USE_LD
1223 HAVE_OPENCL=$opencl
1224 EOF
1225
1226 if [ $compiler_style = MS ]; then
1227     echo '%.o: %.c' >> config.mak
1228     echo '      $(CC) $(CFLAGS) -c -Fo$@ $<' >> config.mak
1229 fi
1230
1231 if [ "$cli" = "yes" ]; then
1232     echo 'default: cli' >> config.mak
1233     echo 'install: install-cli' >> config.mak
1234 fi
1235
1236 if [ "$shared" = "yes" ]; then
1237     API=$(grep '#define X264_BUILD' < ${SRCPATH}/x264.h | cut -f 3 -d ' ')
1238     if [ "$SYS" = "WINDOWS" -o "$SYS" = "CYGWIN" ]; then
1239         echo "SONAME=libx264-$API.dll" >> config.mak
1240         if [ $compiler_style = MS ]; then
1241             echo 'IMPLIBNAME=libx264.dll.lib' >> config.mak
1242             # GNU ld on windows defaults to exporting all global functions if there are no explicit __declspec(dllexport) declarations
1243             # MSVC link does not act similarly, so it is required to make an export definition out of x264.h and use it at link time
1244             echo "SOFLAGS=-dll -def:x264.def -implib:\$(IMPLIBNAME) $SOFLAGS" >> config.mak
1245             echo "EXPORTS" > x264.def
1246             # export API functions
1247             grep "^\(int\|void\|x264_t\).*x264" ${SRCPATH}/x264.h | sed -e "s/.*\(x264.*\)(.*/\1/;s/open/open_$API/g" >> x264.def
1248             # export API variables/data. must be flagged with the DATA keyword
1249             grep "extern.*x264" ${SRCPATH}/x264.h | sed -e "s/.*\(x264\w*\)\W.*/\1 DATA/;" >> x264.def
1250         else
1251             echo 'IMPLIBNAME=libx264.dll.a' >> config.mak
1252             echo "SOFLAGS=-shared -Wl,--out-implib,\$(IMPLIBNAME) -Wl,--enable-auto-image-base $SOFLAGS" >> config.mak
1253         fi
1254     elif [ "$SYS" = "MACOSX" ]; then
1255         echo "SOSUFFIX=dylib" >> config.mak
1256         echo "SONAME=libx264.$API.dylib" >> config.mak
1257         echo "SOFLAGS=-shared -dynamiclib -Wl,-single_module -Wl,-read_only_relocs,suppress -install_name \$(DESTDIR)\$(libdir)/\$(SONAME) $SOFLAGS" >> config.mak
1258     elif [ "$SYS" = "SunOS" ]; then
1259         echo "SOSUFFIX=so" >> config.mak
1260         echo "SONAME=libx264.so.$API" >> config.mak
1261         echo "SOFLAGS=-shared -Wl,-h,\$(SONAME) $SOFLAGS" >> config.mak
1262     else
1263         echo "SOSUFFIX=so" >> config.mak
1264         echo "SONAME=libx264.so.$API" >> config.mak
1265         echo "SOFLAGS=-shared -Wl,-soname,\$(SONAME) $SOFLAGS" >> config.mak
1266     fi
1267     echo 'default: lib-shared' >> config.mak
1268     echo 'install: install-lib-shared' >> config.mak
1269 fi
1270
1271 if [ "$static" = "yes" ]; then
1272     echo 'default: lib-static' >> config.mak
1273     echo 'install: install-lib-static' >> config.mak
1274 fi
1275
1276 if [ "$cli_libx264" = "system" ] ; then
1277     if [ "$shared" = "yes" ]; then
1278         CLI_LIBX264='$(SONAME)'
1279     elif ${cross_prefix}pkg-config --exists x264 2>/dev/null; then
1280         LDFLAGSCLI="$LDFLAGSCLI $(${cross_prefix}pkg-config --libs x264)"
1281         CLI_LIBX264=
1282     else
1283         die "Can not find system libx264"
1284     fi
1285 else
1286     CLI_LIBX264='$(LIBX264)'
1287 fi
1288 echo "LDFLAGSCLI = $LDFLAGSCLI" >> config.mak
1289 echo "CLI_LIBX264 = $CLI_LIBX264" >> config.mak
1290
1291 ${SRCPATH}/version.sh "${SRCPATH}" >> x264_config.h
1292
1293 cat > x264.pc << EOF
1294 prefix=$prefix
1295 exec_prefix=$exec_prefix
1296 libdir=$libdir
1297 includedir=$includedir
1298
1299 Name: x264
1300 Description: H.264 (MPEG4 AVC) encoder library
1301 Version: $(grep POINTVER < x264_config.h | sed -e 's/.* "//; s/".*//')
1302 Libs: -L$libdir -lx264 $([ "$shared" = "yes" ] || echo $libpthread $libm $libdl)
1303 Libs.private: $([ "$shared" = "yes" ] && echo $libpthread $libm $libdl)
1304 Cflags: -I$includedir
1305 EOF
1306
1307 filters="crop select_every"
1308 gpl_filters=""
1309 [ $swscale = yes ] && filters="resize $filters"
1310 [ $gpl = yes ] && filters="$filters $gpl_filters"
1311
1312 cat > conftest.log <<EOF
1313 platform:      $ARCH
1314 system:        $SYS
1315 cli:           $cli
1316 libx264:       $cli_libx264
1317 shared:        $shared
1318 static:        $static
1319 asm:           $asm
1320 interlaced:    $interlaced
1321 avs:           $avs
1322 lavf:          $lavf
1323 ffms:          $ffms
1324 mp4:           $mp4
1325 gpl:           $gpl
1326 thread:        $thread
1327 opencl:        $opencl
1328 filters:       $filters
1329 debug:         $debug
1330 gprof:         $gprof
1331 strip:         $strip
1332 PIC:           $pic
1333 bit depth:     $bit_depth
1334 chroma format: $chroma_format
1335 EOF
1336
1337 echo >> config.log
1338 cat conftest.log >> config.log
1339 cat conftest.log
1340 rm conftest.log
1341
1342 [ "$SRCPATH" != "." ] && ln -sf ${SRCPATH}/Makefile ./Makefile
1343 mkdir -p common/{aarch64,arm,ppc,x86} encoder extras filters/video input output tools
1344
1345 echo
1346 echo "You can run 'make' or 'make fprofiled' now."
1347