1 dnl ---------------------------------------------------------------------------
2 dnl Support macros for makefiles generated by BAKEFILE.
3 dnl ---------------------------------------------------------------------------
5 dnl Lots of compiler & linker detection code contained here was taken from
6 dnl wxWindows configure.in script (see http://www.wxwindows.org)
10 dnl ---------------------------------------------------------------------------
11 dnl AC_BAKEFILE_GNUMAKE
14 dnl ---------------------------------------------------------------------------
16 AC_DEFUN([AC_BAKEFILE_GNUMAKE],
18 dnl does make support "-include" (only GNU make does AFAIK)?
19 AC_CACHE_CHECK([if make is GNU make], bakefile_cv_prog_makeisgnu,
21 if ( ${SHELL-sh} -c "${MAKE-make} --version" 2> /dev/null |
22 egrep -s GNU > /dev/null); then
23 bakefile_cv_prog_makeisgnu="yes"
25 bakefile_cv_prog_makeisgnu="no"
29 if test "x$bakefile_cv_prog_makeisgnu" = "xyes"; then
37 dnl ---------------------------------------------------------------------------
38 dnl AC_BAKEFILE_PLATFORM
40 dnl Detects platform and sets PLATFORM_XXX variables accordingly
41 dnl ---------------------------------------------------------------------------
43 AC_DEFUN([AC_BAKEFILE_PLATFORM],
54 if test "x$BAKEFILE_FORCE_PLATFORM" = "x"; then
55 case "${BAKEFILE_HOST}" in
62 *-pc-os2_emx | *-pc-os2-emx )
72 powerpc-apple-macos* )
81 case "$BAKEFILE_FORCE_PLATFORM" in
102 AC_MSG_ERROR([Unknown platform: $BAKEFILE_FORCE_PLATFORM])
107 AC_SUBST(PLATFORM_UNIX)
108 AC_SUBST(PLATFORM_WIN32)
109 AC_SUBST(PLATFORM_MSDOS)
110 AC_SUBST(PLATFORM_MAC)
111 AC_SUBST(PLATFORM_MACOS)
112 AC_SUBST(PLATFORM_MACOSX)
113 AC_SUBST(PLATFORM_OS2)
114 AC_SUBST(PLATFORM_BEOS)
118 dnl ---------------------------------------------------------------------------
119 dnl AC_BAKEFILE_PLATFORM_SPECIFICS
121 dnl Sets misc platform-specific settings
122 dnl ---------------------------------------------------------------------------
124 AC_DEFUN([AC_BAKEFILE_PLATFORM_SPECIFICS],
126 AC_ARG_ENABLE([omf], AS_HELP_STRING([--enable-omf],
127 [use OMF object format (OS/2)]),
128 [bk_os2_use_omf="$enableval"])
130 case "${BAKEFILE_HOST}" in
132 dnl For Unix to MacOS X porting instructions, see:
133 dnl http://fink.sourceforge.net/doc/porting/porting.html
134 if test "x$GCC" = "xyes"; then
135 CFLAGS="$CFLAGS -fno-common"
136 CXXFLAGS="$CXXFLAGS -fno-common"
138 if test "x$XLCC" = "xyes"; then
139 CFLAGS="$CFLAGS -qnocommon"
140 CXXFLAGS="$CXXFLAGS -qnocommon"
144 *-pc-os2_emx | *-pc-os2-emx )
145 if test "x$bk_os2_use_omf" = "xyes" ; then
148 LDFLAGS="-Zomf $LDFLAGS"
149 CFLAGS="-Zomf $CFLAGS"
150 CXXFLAGS="-Zomf $CXXFLAGS"
158 LDFLAGS="-L/boot/develop/lib/x86 $LDFLAGS"
163 dnl ---------------------------------------------------------------------------
164 dnl AC_BAKEFILE_SUFFIXES
166 dnl Detects shared various suffixes for shared libraries, libraries, programs,
168 dnl ---------------------------------------------------------------------------
170 AC_DEFUN([AC_BAKEFILE_SUFFIXES],
173 SO_SUFFIX_MODULE="so"
182 case "${BAKEFILE_HOST}" in
185 SO_SUFFIX_MODULE="sl"
189 dnl http://www-1.ibm.com/servers/esdd/articles/gnu.html:
190 dnl Both archive libraries and shared libraries on AIX have an
191 dnl .a extension. This will explain why you can't link with an
192 dnl .so and why it works with the name changed to .a.
198 SO_SUFFIX_MODULE="dll"
199 DLLIMP_SUFFIX="dll.a"
206 SO_SUFFIX_MODULE="dll"
207 DLLIMP_SUFFIX="dll.a"
217 *-pc-os2_emx | *-pc-os2-emx )
219 SO_SUFFIX_MODULE="dll"
220 DLLIMP_SUFFIX=$OS2_LIBEXT
224 LIBEXT=".$OS2_LIBEXT"
229 SO_SUFFIX_MODULE="bundle"
233 if test "x$DLLIMP_SUFFIX" = "x" ; then
234 DLLIMP_SUFFIX="$SO_SUFFIX"
238 AC_SUBST(SO_SUFFIX_MODULE)
239 AC_SUBST(DLLIMP_SUFFIX)
244 AC_SUBST(DLLPREFIX_MODULE)
249 dnl ---------------------------------------------------------------------------
250 dnl AC_BAKEFILE_SHARED_LD
252 dnl Detects command for making shared libraries, substitutes SHARED_LD_CC
253 dnl and SHARED_LD_CXX.
254 dnl ---------------------------------------------------------------------------
256 AC_DEFUN([AC_BAKEFILE_SHARED_LD],
258 dnl the extra compiler flags needed for compilation of shared library
260 if test "x$GCC" = "xyes"; then
261 dnl the switch for gcc is the same under all platforms
265 dnl Defaults for GCC and ELF .so shared libs:
266 SHARED_LD_CC="\$(CC) -shared ${PIC_FLAG} -o"
267 SHARED_LD_CXX="\$(CXX) -shared ${PIC_FLAG} -o"
270 case "${BAKEFILE_HOST}" in
272 dnl default settings are good for gcc but not for the native HP-UX
273 if test "x$GCC" != "xyes"; then
274 dnl no idea why it wants it, but it does
275 LDFLAGS="$LDFLAGS -L/usr/lib"
277 SHARED_LD_CC="${CC} -b -o"
278 SHARED_LD_CXX="${CXX} -b -o"
284 if test "x$GCC" != "xyes"; then
285 AC_CACHE_CHECK([for Intel compiler], bakefile_cv_prog_icc,
289 #ifndef __INTEL_COMPILER
293 bakefile_cv_prog_icc=yes,
294 bakefile_cv_prog_icc=no
297 if test "$bakefile_cv_prog_icc" = "yes"; then
304 if test "x$GCC" != xyes ; then
305 SHARED_LD_CC="${CC} -G -o"
306 SHARED_LD_CXX="${CXX} -G -o"
312 AC_BAKEFILE_CREATE_FILE_SHARED_LD_SH
313 chmod +x shared-ld-sh
315 SHARED_LD_MODULE_CC="`pwd`/shared-ld-sh -bundle -headerpad_max_install_names -o"
316 SHARED_LD_MODULE_CXX="$SHARED_LD_MODULE_CC"
318 dnl Most apps benefit from being fully binded (its faster and static
319 dnl variables initialized at startup work).
320 dnl This can be done either with the exe linker flag -Wl,-bind_at_load
321 dnl or with a double stage link in order to create a single module
322 dnl "-init _wxWindowsDylibInit" not useful with lazy linking solved
324 dnl If using newer dev tools then there is a -single_module flag that
325 dnl we can use to do this for dylibs, otherwise we'll need to use a helper
326 dnl script. Check the version of gcc to see which way we can go:
327 AC_CACHE_CHECK([for gcc 3.1 or later], bakefile_cv_gcc31, [
330 #if (__GNUC__ < 3) || \
331 ((__GNUC__ == 3) && (__GNUC_MINOR__ < 1))
336 bakefile_cv_gcc31=yes
343 if test "$bakefile_cv_gcc31" = "no"; then
344 dnl Use the shared-ld-sh helper script
345 SHARED_LD_CC="`pwd`/shared-ld-sh -dynamiclib -headerpad_max_install_names -o"
346 SHARED_LD_CXX="$SHARED_LD_CC"
348 dnl Use the -single_module flag and let the linker do it for us
349 SHARED_LD_CC="\${CC} -dynamiclib -single_module -headerpad_max_install_names -o"
350 SHARED_LD_CXX="\${CXX} -dynamiclib -single_module -headerpad_max_install_names -o"
353 if test "x$GCC" == "xyes"; then
354 PIC_FLAG="-dynamic -fPIC"
356 if test "x$XLCC" = "xyes"; then
357 PIC_FLAG="-dynamic -DPIC"
362 if test "x$GCC" = "xyes"; then
363 dnl at least gcc 2.95 warns that -fPIC is ignored when
364 dnl compiling each and every file under AIX which is annoying,
365 dnl so don't use it there (it's useless as AIX runs on
366 dnl position-independent architectures only anyhow)
369 dnl -bexpfull is needed by AIX linker to export all symbols (by
370 dnl default it doesn't export any and even with -bexpall it
371 dnl doesn't export all C++ support symbols, e.g. vtable
372 dnl pointers) but it's only available starting from 5.1 (with
373 dnl maintenance pack 2, whatever this is), see
374 dnl http://www-128.ibm.com/developerworks/eserver/articles/gnu.html
375 case "${BAKEFILE_HOST}" in
377 LD_EXPFULL="-Wl,-bexpfull"
381 SHARED_LD_CC="\$(CC) -shared $LD_EXPFULL -o"
382 SHARED_LD_CXX="\$(CXX) -shared $LD_EXPFULL -o"
384 dnl FIXME: makeC++SharedLib is obsolete, what should we do for
385 dnl recent AIX versions?
386 AC_CHECK_PROG(AIX_CXX_LD, makeC++SharedLib,
387 makeC++SharedLib, /usr/lpp/xlC/bin/makeC++SharedLib)
388 SHARED_LD_CC="$AIX_CC_LD -p 0 -o"
389 SHARED_LD_CXX="$AIX_CXX_LD -p 0 -o"
394 dnl can't use gcc under BeOS for shared library creation because it
395 dnl complains about missing 'main'
396 SHARED_LD_CC="${LD} -nostart -o"
397 SHARED_LD_CXX="${LD} -nostart -o"
401 dnl default settings are ok for gcc
402 if test "x$GCC" != "xyes"; then
407 *-*-cygwin* | *-*-mingw32* )
409 SHARED_LD_CC="\$(CC) -shared -o"
410 SHARED_LD_CXX="\$(CXX) -shared -o"
414 *-pc-os2_emx | *-pc-os2-emx )
415 SHARED_LD_CC="`pwd`/dllar.sh -libf INITINSTANCE -libf TERMINSTANCE -o"
416 SHARED_LD_CXX="`pwd`/dllar.sh -libf INITINSTANCE -libf TERMINSTANCE -o"
418 AC_BAKEFILE_CREATE_FILE_DLLAR_SH
422 powerpc-apple-macos* | \
423 *-*-freebsd* | *-*-openbsd* | *-*-netbsd* | *-*-k*bsd*-gnu | \
433 AC_MSG_ERROR(unknown system type $BAKEFILE_HOST.)
436 if test "x$PIC_FLAG" != "x" ; then
437 PIC_FLAG="$PIC_FLAG -DPIC"
440 if test "x$SHARED_LD_MODULE_CC" = "x" ; then
441 SHARED_LD_MODULE_CC="$SHARED_LD_CC"
443 if test "x$SHARED_LD_MODULE_CXX" = "x" ; then
444 SHARED_LD_MODULE_CXX="$SHARED_LD_CXX"
447 AC_SUBST(SHARED_LD_CC)
448 AC_SUBST(SHARED_LD_CXX)
449 AC_SUBST(SHARED_LD_MODULE_CC)
450 AC_SUBST(SHARED_LD_MODULE_CXX)
452 AC_SUBST(WINDOWS_IMPLIB)
456 dnl ---------------------------------------------------------------------------
457 dnl AC_BAKEFILE_SHARED_VERSIONS
459 dnl Detects linker options for attaching versions (sonames) to shared libs.
460 dnl ---------------------------------------------------------------------------
462 AC_DEFUN([AC_BAKEFILE_SHARED_VERSIONS],
472 case "${BAKEFILE_HOST}" in
473 *-*-linux* | *-*-freebsd* | *-*-k*bsd*-gnu )
474 SONAME_FLAG="-Wl,-soname,"
499 AC_SUBST(USE_SOVERSION)
500 AC_SUBST(USE_SOVERLINUX)
501 AC_SUBST(USE_SOVERSOLARIS)
502 AC_SUBST(USE_SOVERCYGWIN)
503 AC_SUBST(USE_MACVERSION)
504 AC_SUBST(USE_SOSYMLINKS)
505 AC_SUBST(SONAME_FLAG)
509 dnl ---------------------------------------------------------------------------
512 dnl Detects available C/C++ dependency tracking options
513 dnl ---------------------------------------------------------------------------
515 AC_DEFUN([AC_BAKEFILE_DEPS],
517 AC_MSG_CHECKING([for dependency tracking method])
520 if test "x$GCC" = "xyes"; then
522 case "${BAKEFILE_HOST}" in
524 dnl -cpp-precomp (the default) conflicts with -MMD option
525 dnl used by bk-deps (see also http://developer.apple.com/documentation/Darwin/Conceptual/PortingUnix/compiling/chapter_4_section_3.html)
526 DEPSFLAG="-no-cpp-precomp -MMD"
533 elif test "x$MWCC" = "xyes"; then
536 AC_MSG_RESULT([mwcc])
537 elif test "x$SUNCC" = "xyes"; then
540 AC_MSG_RESULT([Sun cc])
541 elif test "x$SGICC" = "xyes"; then
544 AC_MSG_RESULT([SGI cc])
545 elif test "x$HPCC" = "xyes"; then
548 AC_MSG_RESULT([HP cc])
549 elif test "x$COMPAQCC" = "xyes"; then
552 AC_MSG_RESULT([Compaq cc])
555 AC_MSG_RESULT([none])
558 if test $DEPS_TRACKING = 1 ; then
559 AC_BAKEFILE_CREATE_FILE_BK_DEPS
563 AC_SUBST(DEPS_TRACKING)
566 dnl ---------------------------------------------------------------------------
567 dnl AC_BAKEFILE_CHECK_BASIC_STUFF
569 dnl Checks for presence of basic programs, such as C and C++ compiler, "ranlib"
571 dnl ---------------------------------------------------------------------------
573 AC_DEFUN([AC_BAKEFILE_CHECK_BASIC_STUFF],
582 AC_CHECK_TOOL(AR, ar, ar)
583 AC_CHECK_TOOL(STRIP, strip, :)
584 AC_CHECK_TOOL(NM, nm, :)
586 case ${BAKEFILE_HOST} in
588 dnl HP-UX install doesn't handle the "-d" switch so don't
590 INSTALL_DIR="mkdir -p"
592 *) INSTALL_DIR="$INSTALL -d"
595 AC_SUBST(INSTALL_DIR)
598 case ${BAKEFILE_HOST} in
599 *-*-cygwin* | *-*-mingw32* )
600 LDFLAGS_GUI="-mwindows"
602 AC_SUBST(LDFLAGS_GUI)
606 dnl ---------------------------------------------------------------------------
607 dnl AC_BAKEFILE_RES_COMPILERS
609 dnl Checks for presence of resource compilers for win32 or mac
610 dnl ---------------------------------------------------------------------------
612 AC_DEFUN([AC_BAKEFILE_RES_COMPILERS],
614 case ${BAKEFILE_HOST} in
615 *-*-cygwin* | *-*-mingw32* )
616 dnl Check for win32 resources compiler:
617 AC_CHECK_TOOL(WINDRES, windres)
620 *-*-darwin* | powerpc-apple-macos* )
621 AC_CHECK_PROG(REZ, Rez, Rez, /Developer/Tools/Rez)
622 AC_CHECK_PROG(SETFILE, SetFile, SetFile, /Developer/Tools/SetFile)
631 dnl ---------------------------------------------------------------------------
632 dnl AC_BAKEFILE_PRECOMP_HEADERS
634 dnl Check for precompiled headers support (GCC >= 3.4)
635 dnl ---------------------------------------------------------------------------
637 AC_DEFUN([AC_BAKEFILE_PRECOMP_HEADERS],
640 AC_ARG_ENABLE([precomp-headers],
641 AS_HELP_STRING([--disable-precomp-headers],
642 [don't use precompiled headers even if compiler can]),
643 [bk_use_pch="$enableval"])
647 case ${BAKEFILE_HOST} in
649 dnl PCH support is broken in cygwin gcc because of unportable
650 dnl assumptions about mmap() in gcc code which make PCH generation
651 dnl fail erratically; disable PCH completely until this is fixed
656 if test "x$bk_use_pch" = "x" -o "x$bk_use_pch" = "xyes" ; then
657 if test "x$GCC" = "xyes"; then
658 dnl test if we have gcc-3.4:
659 AC_MSG_CHECKING([if the compiler supports precompiled headers])
662 #if !defined(__GNUC__) || !defined(__GNUC_MINOR__)
663 #error "no pch support"
666 #error "no pch support"
668 #if (__GNUC__ == 3) && \
669 ((!defined(__APPLE_CC__) && (__GNUC_MINOR__ < 4)) || \
670 ( defined(__APPLE_CC__) && (__GNUC_MINOR__ < 3)))
671 #error "no pch support"
681 if test $GCC_PCH = 1 ; then
682 AC_BAKEFILE_CREATE_FILE_BK_MAKE_PCH
693 dnl ---------------------------------------------------------------------------
694 dnl AC_BAKEFILE([autoconf_inc.m4 inclusion])
696 dnl To be used in configure.in of any project using Bakefile-generated mks
698 dnl Behaviour can be modified by setting following variables:
699 dnl BAKEFILE_CHECK_BASICS set to "no" if you don't want bakefile to
700 dnl to perform check for basic tools like ranlib
701 dnl BAKEFILE_HOST set this to override host detection, defaults
703 dnl BAKEFILE_FORCE_PLATFORM set to override platform detection
707 dnl AC_BAKEFILE([FOO(autoconf_inc.m4)])
709 dnl (replace FOO with m4_include above, aclocal would die otherwise)
710 dnl (yes, it's ugly, but thanks to a bug in aclocal, it's the only thing
712 dnl ---------------------------------------------------------------------------
714 AC_DEFUN([AC_BAKEFILE],
718 if test "x$BAKEFILE_HOST" = "x"; then
719 BAKEFILE_HOST="${host}"
722 if test "x$BAKEFILE_CHECK_BASICS" != "xno"; then
723 AC_BAKEFILE_CHECK_BASIC_STUFF
727 AC_BAKEFILE_PLATFORM_SPECIFICS
729 AC_BAKEFILE_SHARED_LD
730 AC_BAKEFILE_SHARED_VERSIONS
732 AC_BAKEFILE_RES_COMPILERS
734 BAKEFILE_BAKEFILE_M4_VERSION="0.1.9"
736 dnl includes autoconf_inc.m4:
739 if test "$BAKEFILE_AUTOCONF_INC_M4_VERSION" = "" ; then
740 AC_MSG_ERROR([No version found in autoconf_inc.m4 - bakefile macro was changed to take additional argument, perhaps configure.in wasn't updated (see the documentation)?])
743 if test "$BAKEFILE_BAKEFILE_M4_VERSION" != "$BAKEFILE_AUTOCONF_INC_M4_VERSION" ; then
744 AC_MSG_ERROR([Versions of Bakefile used to generate makefiles ($BAKEFILE_AUTOCONF_INC_M4_VERSION) and configure ($BAKEFILE_BAKEFILE_M4_VERSION) do not match.])
749 dnl ---------------------------------------------------------------------------
750 dnl Embedded copies of helper scripts follow:
751 dnl ---------------------------------------------------------------------------
753 AC_DEFUN([AC_BAKEFILE_CREATE_FILE_DLLAR_SH],
755 dnl ===================== dllar.sh begins here =====================
756 dnl (Created by merge-scripts.py from dllar.sh
757 dnl file do not edit here!)
762 # dllar - a tool to build both a .dll and an .a file
763 # from a set of object (.o) files for EMX/OS2.
765 # Written by Andrew Zabolotny, bit@freya.etu.ru
766 # Ported to Unix like shell by Stefan Neis, Stefan.Neis@t-online.de
768 # This script will accept a set of files on the command line.
769 # All the public symbols from the .o files will be exported into
770 # a .DEF file, then linker will be run (through gcc) against them to
771 # build a shared library consisting of all given .o files. All libraries
772 # (.a) will be first decompressed into component .o files then act as
773 # described above. You can optionally give a description (-d "description")
774 # which will be put into .DLL. To see the list of accepted options (as well
775 # as command-line format) simply run this program without options. The .DLL
776 # is built to be imported by name (there is no guarantee that new versions
777 # of the library you build will have same ordinals for same symbols).
779 # dllar is free software; you can redistribute it and/or modify
780 # it under the terms of the GNU General Public License as published by
781 # the Free Software Foundation; either version 2, or (at your option)
784 # dllar is distributed in the hope that it will be useful,
785 # but WITHOUT ANY WARRANTY; without even the implied warranty of
786 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
787 # GNU General Public License for more details.
789 # You should have received a copy of the GNU General Public License
790 # along with dllar; see the file COPYING. If not, write to the Free
791 # Software Foundation, 59 Temple Place - Suite 330, Boston, MA
794 # To successfuly run this program you will need:
795 # - Current drive should have LFN support (HPFS, ext2, network, etc)
796 # (Sometimes dllar generates filenames which won't fit 8.3 scheme)
798 # (used to build the .dll)
800 # (used to create .def file from .o files)
802 # (used to create .a file from .def file)
803 # - GNU text utilites (cat, sort, uniq)
804 # used to process emxexp output
805 # - GNU file utilities (mv, rm)
807 # - lxlite (optional, see flag below)
808 # (used for general .dll cleanup)
815 # basnam, variant of basename, which does _not_ remove the path, _iff_
816 # second argument (suffix to remove) is given
820 echo ${D}1 | sed 's/.*\\///' | sed 's/.*\\\\//'
823 echo ${D}1 | sed 's/'${D}2'${D}//'
826 echo "error in basnam ${D}*"
832 # Cleanup temporary files and output
835 for i in ${D}inputFiles ; do
838 rm -rf \`basnam ${D}i !\`
845 # Kill result in case of failure as there is just to many stupid make/nmake
846 # things out there which doesn't do this.
847 if @<:@ ${D}# -eq 0 @:>@; then
848 rm -f ${D}arcFile ${D}arcFile2 ${D}defFile ${D}dllFile
852 # Print usage and exit script with rc=1.
854 echo 'Usage: dllar.sh @<:@-o@<:@utput@:>@ output_file@:>@ @<:@-i@<:@mport@:>@ importlib_name@:>@'
855 echo ' @<:@-name-mangler-script script.sh@:>@'
856 echo ' @<:@-d@<:@escription@:>@ "dll descrption"@:>@ @<:@-cc "CC"@:>@ @<:@-f@<:@lags@:>@ "CFLAGS"@:>@'
857 echo ' @<:@-ord@<:@inals@:>@@:>@ -ex@<:@clude@:>@ "symbol(s)"'
858 echo ' @<:@-libf@<:@lags@:>@ "{INIT|TERM}{GLOBAL|INSTANCE}"@:>@ @<:@-nocrt@<:@dll@:>@@:>@ @<:@-nolxl@<:@ite@:>@@:>@'
859 echo ' @<:@*.o@:>@ @<:@*.a@:>@'
860 echo '*> "output_file" should have no extension.'
861 echo ' If it has the .o, .a or .dll extension, it is automatically removed.'
862 echo ' The import library name is derived from this and is set to "name".a,'
863 echo ' unless overridden by -import'
864 echo '*> "importlib_name" should have no extension.'
865 echo ' If it has the .o, or .a extension, it is automatically removed.'
866 echo ' This name is used as the import library name and may be longer and'
867 echo ' more descriptive than the DLL name which has to follow the old '
868 echo ' 8.3 convention of FAT.'
869 echo '*> "script.sh may be given to override the output_file name by a'
870 echo ' different name. It is mainly useful if the regular make process'
871 echo ' of some package does not take into account OS/2 restriction of'
872 echo ' DLL name lengths. It takes the importlib name as input and is'
873 echo ' supposed to procude a shorter name as output. The script should'
874 echo ' expect to get importlib_name without extension and should produce'
875 echo ' a (max.) 8 letter name without extension.'
876 echo '*> "cc" is used to use another GCC executable. (default: gcc.exe)'
877 echo '*> "flags" should be any set of valid GCC flags. (default: -s -Zcrtdll)'
878 echo ' These flags will be put at the start of GCC command line.'
879 echo '*> -ord@<:@inals@:>@ tells dllar to export entries by ordinals. Be careful.'
880 echo '*> -ex@<:@clude@:>@ defines symbols which will not be exported. You can define'
881 echo ' multiple symbols, for example -ex "myfunc yourfunc _GLOBAL*".'
882 echo ' If the last character of a symbol is "*", all symbols beginning'
883 echo ' with the prefix before "*" will be exclude, (see _GLOBAL* above).'
884 echo '*> -libf@<:@lags@:>@ can be used to add INITGLOBAL/INITINSTANCE and/or'
885 echo ' TERMGLOBAL/TERMINSTANCE flags to the dynamically-linked library.'
886 echo '*> -nocrt@<:@dll@:>@ switch will disable linking the library against emx''s'
887 echo ' C runtime DLLs.'
888 echo '*> -nolxl@<:@ite@:>@ switch will disable running lxlite on the resulting DLL.'
889 echo '*> All other switches (for example -L./ or -lmylib) will be passed'
890 echo ' unchanged to GCC at the end of command line.'
891 echo '*> If you create a DLL from a library and you do not specify -o,'
892 echo ' the basename for DLL and import library will be set to library name,'
893 echo ' the initial library will be renamed to 'name'_s.a (_s for static)'
894 echo ' i.e. "dllar gcc.a" will create gcc.dll and gcc.a, and the initial'
895 echo ' library will be renamed into gcc_s.a.'
898 echo ' dllar -o gcc290.dll libgcc.a -d "GNU C runtime library" -ord'
899 echo ' -ex "__main __ctordtor*" -libf "INITINSTANCE TERMINSTANCE"'
905 # If exit code of the commnad <> 0 CleanUp() is called and we'll exit the script.
906 # @Uses Whatever CleanUp() uses.
912 if @<:@ ${D}rcCmd -ne 0 @:>@; then
913 echo "command failed, exit code="${D}rcCmd
939 curDirS=${D}{curDirS}"/"
945 while @<:@ ${D}1 @:>@; do
948 EXPORT_BY_ORDINALS=1;
958 -name-mangler-script)
979 exclude_symbols=${D}{exclude_symbols}${D}1" "
983 library_flags=${D}{library_flags}${D}1" "
1002 EXTRA_CFLAGS=${D}{EXTRA_CFLAGS}" "${D}1
1005 EXTRA_CFLAGS="${D}{EXTRA_CFLAGS} \`basnam ${D}1 .dll\`"
1006 if @<:@ ${D}omfLinking -eq 1 @:>@; then
1007 EXTRA_CFLAGS="${D}{EXTRA_CFLAGS}.lib"
1009 EXTRA_CFLAGS="${D}{EXTRA_CFLAGS}.a"
1014 if @<:@ ${D}libsToLink -ne 0 @:>@; then
1015 EXTRA_CFLAGS=${D}{EXTRA_CFLAGS}" "${D}1
1017 for file in ${D}1 ; do
1018 if @<:@ -f ${D}file @:>@; then
1019 inputFiles="${D}{inputFiles} ${D}file"
1023 if @<:@ ${D}found -eq 0 @:>@; then
1024 echo "ERROR: No file(s) found: "${D}1
1031 done # iterate cmdline words
1034 if @<:@ -z "${D}inputFiles" @:>@; then
1035 echo "dllar: no input files"
1039 # Now extract all .o files from .a files
1041 for file in ${D}inputFiles ; do
1052 EXTRA_CFLAGS="${D}EXTRA_CFLAGS -Zomf"
1057 dirname=\`basnam ${D}file ${D}suffix\`"_%"
1059 if @<:@ ${D}? -ne 0 @:>@; then
1060 echo "Failed to create subdirectory ./${D}dirname"
1064 # Append '!' to indicate archive
1065 newInputFiles="${D}newInputFiles ${D}{dirname}!"
1066 doCommand "cd ${D}dirname; ${D}AR x ../${D}file"
1069 for subfile in ${D}dirname/*.o* ; do
1070 if @<:@ -f ${D}subfile @:>@; then
1072 if @<:@ -s ${D}subfile @:>@; then
1073 # FIXME: This should be: is file size > 32 byte, _not_ > 0!
1074 newInputFiles="${D}newInputFiles ${D}subfile"
1078 if @<:@ ${D}found -eq 0 @:>@; then
1079 echo "WARNING: there are no files in archive \\'${D}file\\'"
1083 newInputFiles="${D}{newInputFiles} ${D}file"
1087 inputFiles="${D}newInputFiles"
1089 # Output filename(s).
1091 if @<:@ -z ${D}outFile @:>@; then
1093 set outFile ${D}inputFiles; outFile=${D}2
1096 # If it is an archive, remove the '!' and the '_%' suffixes
1099 outFile=\`basnam ${D}outFile _%!\`
1106 outFile=\`basnam ${D}outFile .dll\`
1109 outFile=\`basnam ${D}outFile .DLL\`
1112 outFile=\`basnam ${D}outFile .o\`
1115 outFile=\`basnam ${D}outFile .obj\`
1118 outFile=\`basnam ${D}outFile .a\`
1121 outFile=\`basnam ${D}outFile .lib\`
1126 case ${D}outimpFile in
1128 outimpFile=\`basnam ${D}outimpFile .a\`
1131 outimpFile=\`basnam ${D}outimpFile .lib\`
1136 if @<:@ -z ${D}outimpFile @:>@; then
1137 outimpFile=${D}outFile
1139 defFile="${D}{outFile}.def"
1140 arcFile="${D}{outimpFile}.a"
1141 arcFile2="${D}{outimpFile}.lib"
1143 #create ${D}dllFile as something matching 8.3 restrictions,
1144 if @<:@ -z ${D}renameScript @:>@ ; then
1145 dllFile="${D}outFile"
1147 dllFile=\`${D}renameScript ${D}outimpFile\`
1150 if @<:@ ${D}do_backup -ne 0 @:>@ ; then
1151 if @<:@ -f ${D}arcFile @:>@ ; then
1152 doCommand "mv ${D}arcFile ${D}{outFile}_s.a"
1154 if @<:@ -f ${D}arcFile2 @:>@ ; then
1155 doCommand "mv ${D}arcFile2 ${D}{outFile}_s.lib"
1159 # Extract public symbols from all the object files.
1160 tmpdefFile=${D}{defFile}_%
1161 rm -f ${D}tmpdefFile
1162 for file in ${D}inputFiles ; do
1167 doCommand "emxexp -u ${D}file >> ${D}tmpdefFile"
1172 # Create the def file.
1174 echo "LIBRARY \`basnam ${D}dllFile\` ${D}library_flags" >> ${D}defFile
1175 dllFile="${D}{dllFile}.dll"
1176 if @<:@ ! -z ${D}description @:>@; then
1177 echo "DESCRIPTION \\"${D}{description}\\"" >> ${D}defFile
1179 echo "EXPORTS" >> ${D}defFile
1181 doCommand "cat ${D}tmpdefFile | sort.exe | uniq.exe > ${D}{tmpdefFile}%"
1182 grep -v "^ *;" < ${D}{tmpdefFile}% | grep -v "^ *${D}" >${D}tmpdefFile
1184 # Checks if the export is ok or not.
1185 for word in ${D}exclude_symbols; do
1186 grep -v ${D}word < ${D}tmpdefFile >${D}{tmpdefFile}%
1187 mv ${D}{tmpdefFile}% ${D}tmpdefFile
1191 if @<:@ ${D}EXPORT_BY_ORDINALS -ne 0 @:>@; then
1192 sed "=" < ${D}tmpdefFile | \\
1196 s/^\\(@<:@0-9@:>@\\+\\)\\(@<:@^;@:>@*\\)\\(;.*\\)\\?/\\2 @\\1 NONAME/
1198 ' > ${D}{tmpdefFile}%
1199 grep -v "^ *${D}" < ${D}{tmpdefFile}% > ${D}tmpdefFile
1201 rm -f ${D}{tmpdefFile}%
1203 cat ${D}tmpdefFile >> ${D}defFile
1204 rm -f ${D}tmpdefFile
1206 # Do linking, create implib, and apply lxlite.
1208 for file in ${D}inputFiles ; do
1213 gccCmdl="${D}gccCmdl ${D}file"
1217 doCommand "${D}CC ${D}CFLAGS -Zdll -o ${D}dllFile ${D}defFile ${D}gccCmdl ${D}EXTRA_CFLAGS"
1218 touch "${D}{outFile}.dll"
1220 doCommand "emximp -o ${D}arcFile ${D}defFile"
1221 if @<:@ ${D}flag_USE_LXLITE -ne 0 @:>@; then
1223 if @<:@ ${D}EXPORT_BY_ORDINALS -ne 0 @:>@; then
1226 doCommand "lxlite -cs -t: -mrn -mln ${D}add_flags ${D}dllFile"
1228 doCommand "emxomf -s -l ${D}arcFile"
1234 dnl ===================== dllar.sh ends here =====================
1237 AC_DEFUN([AC_BAKEFILE_CREATE_FILE_BK_DEPS],
1239 dnl ===================== bk-deps begins here =====================
1240 dnl (Created by merge-scripts.py from bk-deps
1241 dnl file do not edit here!)
1246 # This script is part of Bakefile (http://bakefile.sourceforge.net) autoconf
1247 # script. It is used to track C/C++ files dependencies in portable way.
1249 # Permission is given to use this file in any way.
1251 DEPSMODE=${DEPSMODE}
1253 DEPSFLAG="${DEPSFLAG}"
1255 mkdir -p ${D}DEPSDIR
1257 if test ${D}DEPSMODE = gcc ; then
1258 ${D}* ${D}{DEPSFLAG}
1260 if test ${D}{status} != 0 ; then
1263 # move created file to the location we want it in:
1264 while test ${D}# -gt 0; do
1278 depfile=\`basename ${D}srcfile | sed -e 's/\\..*${D}/.d/g'\`
1279 depobjname=\`echo ${D}depfile |sed -e 's/\\.d/.o/g'\`
1280 if test -f ${D}depfile ; then
1281 sed -e "s,${D}depobjname:,${D}objfile:,g" ${D}depfile >${D}{DEPSDIR}/${D}{objfile}.d
1284 # "g++ -MMD -o fooobj.o foosrc.cpp" produces fooobj.d
1285 depfile=\`basename ${D}objfile | sed -e 's/\\..*${D}/.d/g'\`
1286 if test ! -f ${D}depfile ; then
1287 # "cxx -MD -o fooobj.o foosrc.cpp" creates fooobj.o.d (Compaq C++)
1288 depfile="${D}objfile.d"
1290 if test -f ${D}depfile ; then
1291 sed -e "/^${D}objfile/!s,${D}depobjname:,${D}objfile:,g" ${D}depfile >${D}{DEPSDIR}/${D}{objfile}.d
1296 elif test ${D}DEPSMODE = mwcc ; then
1298 # Run mwcc again with -MM and redirect into the dep file we want
1299 # NOTE: We can't use shift here because we need ${D}* to be valid
1301 for arg in ${D}* ; do
1302 if test "${D}prevarg" = "-o"; then
1315 ${D}* ${D}DEPSFLAG >${D}{DEPSDIR}/${D}{objfile}.d
1317 elif test ${D}DEPSMODE = unixcc; then
1319 # Run compiler again with deps flag and redirect into the dep file.
1320 # It doesn't work if the '-o FILE' option is used, but without it the
1321 # dependency file will contain the wrong name for the object. So it is
1322 # removed from the command line, and the dep file is fixed with sed.
1324 while test ${D}# -gt 0; do
1331 eval arg${D}#=\\${D}1
1332 cmd="${D}cmd \\${D}arg${D}#"
1337 eval "${D}cmd ${D}DEPSFLAG" | sed "s|.*:|${D}objfile:|" >${D}{DEPSDIR}/${D}{objfile}.d
1344 dnl ===================== bk-deps ends here =====================
1347 AC_DEFUN([AC_BAKEFILE_CREATE_FILE_SHARED_LD_SH],
1349 dnl ===================== shared-ld-sh begins here =====================
1350 dnl (Created by merge-scripts.py from shared-ld-sh
1351 dnl file do not edit here!)
1353 cat <<EOF >shared-ld-sh
1355 #-----------------------------------------------------------------------------
1356 #-- Name: distrib/mac/shared-ld-sh
1357 #-- Purpose: Link a mach-o dynamic shared library for Darwin / Mac OS X
1358 #-- Author: Gilles Depeyrot
1359 #-- Copyright: (c) 2002 Gilles Depeyrot
1360 #-- Licence: any use permitted
1361 #-----------------------------------------------------------------------------
1366 linking_flag="-dynamiclib"
1367 ldargs="-r -keep_private_externs -nostdlib"
1369 while test ${D}# -gt 0; do
1376 -o|-compatibility_version|-current_version|-framework|-undefined|-install_name)
1377 # collect these options and values
1378 args="${D}{args} ${D}1 ${D}2"
1383 # collect these load args
1384 ldargs="${D}{ldargs} ${D}1"
1387 -l*|-L*|-flat_namespace|-headerpad_max_install_names)
1388 # collect these options
1389 args="${D}{args} ${D}1"
1392 -dynamiclib|-bundle)
1393 linking_flag="${D}1"
1397 echo "shared-ld: unhandled option '${D}1'"
1401 *.o | *.a | *.dylib)
1402 # collect object files
1403 objects="${D}{objects} ${D}1"
1407 echo "shared-ld: unhandled argument '${D}1'"
1418 # Link one module containing all the others
1420 if test ${D}{verbose} = 1; then
1421 echo "c++ ${D}{ldargs} ${D}{objects} -o master.${D}${D}.o"
1423 c++ ${D}{ldargs} ${D}{objects} -o master.${D}${D}.o
1427 # Link the shared library from the single module created, but only if the
1428 # previous command didn't fail:
1430 if test ${D}{status} = 0; then
1431 if test ${D}{verbose} = 1; then
1432 echo "c++ ${D}{linking_flag} master.${D}${D}.o ${D}{args}"
1434 c++ ${D}{linking_flag} master.${D}${D}.o ${D}{args}
1439 # Remove intermediate module
1441 rm -f master.${D}${D}.o
1445 dnl ===================== shared-ld-sh ends here =====================
1448 AC_DEFUN([AC_BAKEFILE_CREATE_FILE_BK_MAKE_PCH],
1450 dnl ===================== bk-make-pch begins here =====================
1451 dnl (Created by merge-scripts.py from bk-make-pch
1452 dnl file do not edit here!)
1454 cat <<EOF >bk-make-pch
1457 # This script is part of Bakefile (http://bakefile.sourceforge.net) autoconf
1458 # script. It is used to generated precompiled headers.
1460 # Permission is given to use this file in any way.
1469 while test ${D}{#} -gt 0; do
1472 incdir=\`echo ${D}{1} | sed -e 's/-I\\(.*\\)/\\1/g'\`
1473 if test "x${D}{headerfile}" = "x" -a -f "${D}{incdir}/${D}{header}" ; then
1474 headerfile="${D}{incdir}/${D}{header}"
1478 compiler="${D}{compiler} ${D}{1}"
1482 if test "x${D}{headerfile}" = "x" ; then
1483 echo "error: can't find header ${D}{header} in include paths" >2
1485 if test -f ${D}{outfile} ; then
1488 mkdir -p \`dirname ${D}{outfile}\`
1490 depsfile=".deps/\`echo ${D}{outfile} | tr '/.' '__'\`.d"
1492 # can do this because gcc is >= 3.4:
1493 ${D}{compiler} -o ${D}{outfile} -MMD -MF "${D}{depsfile}" "${D}{headerfile}"
1497 dnl ===================== bk-make-pch ends here =====================