1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
|
#!/bin/sh
AC_PREREQ([2.71])
AC_INIT
AC_CONFIG_SRCDIR([.version])
AC_CONFIG_SRCDIR([Makefile.in])
# Determine the host and build type.
# ===========================================================================
AC_CANONICAL_HOST
AC_CONFIG_HEADERS([sdccconf.h:sdccconf_in.h sdas/linksrc/asxxxx_config.h])
AC_PROG_AWK
AC_MSG_CHECKING(version of the package)
if test -f ${srcdir}/.version; then
{ read VERSION; } < ${srcdir}/.version
AC_MSG_RESULT($VERSION)
elif test -f ../.version; then
{ read VERSION; } < ../.version
AC_MSG_RESULT($VERSION)
else
VERSION="0.0.0"
AC_MSG_RESULT(unknown using 0.0.0)
fi
VERSIONHI=`echo $VERSION|$AWK 'BEGIN {FS="."} {print $1}'`
VERSIONLO=`echo $VERSION|$AWK 'BEGIN {FS="."} {print $2}'`
VERSIONP=`echo $VERSION|$AWK 'BEGIN {FS="."} {print $3}'`
AC_SUBST(PACKAGE, [sdcc])
AC_SUBST(VERSION)
AC_SUBST(VERSIONHI)
AC_SUBST(VERSIONLO)
AC_SUBST(VERSIONP)
AC_DEFINE_UNQUOTED(SDCC_VERSION_LO, ${VERSIONLO}, [XXX])
AC_DEFINE_UNQUOTED(SDCC_VERSION_HI, ${VERSIONHI}, [XXX])
AC_DEFINE_UNQUOTED(SDCC_VERSION_P, ${VERSIONP}, [XXX])
AC_DEFINE_UNQUOTED(SDCC_VERSION_STR, "${VERSION}", [XXX])
AC_ARG_PROGRAM
sdcc_cv_version=$VERSION
sdcc_cv_versionhi=$VERSIONHI
sdcc_cv_versionlo=$VERSIONLO
sdcc_cv_versionp=$VERSIONP
# Required programs
# ===========================================================================
AC_PROG_CC
AC_PROG_CPP
AC_PROG_CXX
AC_PROG_INSTALL
AC_PROG_RANLIB
AC_CHECK_PROG(AUTOCONF, autoconf, autoconf, :)
AC_CHECK_PROG(STRIP, strip, strip, :)
AC_CHECK_PROG(AS, as, as, :)
AC_CHECK_PROG(CP, cp, cp, :)
AC_CHECK_PROG(AR, ar, ar, :)
AC_CHECK_PROG(M4, gm4, gm4, m4)
dnl Don't use AC_PROG_LEX
dnl LEXLIB is not useful in gcc.
AC_CHECK_PROGS(LEX, flex lex, :)
dnl Don't use AC_PROG_YACC
AC_CHECK_PROGS(YACC, 'bison -y' byacc yacc, :)
# 2.7 is just a guess for the minimum version. I know it works with 2.7 (and 3.6 and 3.9), but should test if a lower version is sufficient.
AM_PATH_PYTHON([2.7],, [:])
AC_DEFUN([SDCC_REQUIRE_PROG],
[if test "$1" = ":"; then
AC_MSG_ERROR([Cannot find required program $2.])
fi
])
SDCC_REQUIRE_PROG($YACC, bison)
SDCC_REQUIRE_PROG($LEX, flex)
AC_LANG([C])
AC_CHECK_HEADERS(endian.h sys/endian.h machine/endian.h sys/isa_defs.h)
AC_CHECK_HEADERS(uchar.h)
# zlib is not needed by sdcc itself, but by sdcpp and sdbinutils.
AC_CHECK_HEADERS(zlib.h,,AC_MSG_ERROR([[zlib library not found (zlib.h).]]))
AC_LANG_PUSH([C++])
AC_CHECK_HEADERS(treedec/combinations.hpp,,AC_MSG_NOTICE([[treedec library missing, falling back to Thorup.]]))
AC_CHECK_HEADERS(gala/graph.h)
AC_CHECK_HEADERS(boost/graph/adjacency_list.hpp,,AC_MSG_ERROR([[boost library not found (boost/graph/adjacency_list.hpp).]]))
AC_LANG_POP([C++])
AC_ARG_WITH([ccache],
AS_HELP_STRING([--without-ccache],[do not use ccache even if available]),
[], [])
case x${with_ccache-yes} in
xyes) AC_CHECK_PROG([CCACHE], [ccache], [ccache], []) ;;
xno) AC_SUBST([CCACHE], []) ;;
*) AC_SUBST([CCACHE], [$with_ccache]) ;;
esac
# Checking for functions
# ===========================================================================
AC_CHECK_FUNCS(mkstemp strndup setrlimit backtrace_symbols_fd)
# Macro definitions
# ===========================================================================
# _sdcc_EXECUTE_IFELSE_BODY(COMMAND)
# -----------------------
# Shell function body for _AC_EXECUTE_IFELSE.
m4_define([_sdcc_EXECUTE_IFELSE_BODY],
[ AS_LINENO_PUSH([$[]1])
AS_IF([_AC_DO_STDERR([$1 $2]) > conftest.out && {
test ! -s conftest.err
}],
[ac_retval=0],
[ac_retval=1])
AS_LINENO_POP
])# _sdcc_EXECUTE_IFELSE_BODY
# sdcc_EXECUTE_IFELSE(COMMAND[ACTION-IF-TRUE], [ACTION-IF-FALSE])
# ----------------------------------------------------------------
# Try to execute COMMAND.
AC_DEFUN([sdcc_EXECUTE_IFELSE],
[_$0_BODY($1)
AS_IF([test "$ac_retval" = 0],
[$2],
[$3])
rm conftest.err conftest.out
])# sdcc_EXECUTE_IFELSE
# Check whether the compiler for the current language is SunPRO.
AC_DEFUN([sdcc_IS_SUNPRO],
[AC_CACHE_CHECK([whether we are using the SunPRO _AC_LANG compiler],
[sdcc_cv_[]_AC_LANG_ABBREV[]_compiler_sunpro],
[_AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [[#if !defined __SUNPRO_C && !defined __SUNPRO_CC
choke me
#endif
]])],
[sdcc_cv_[]_AC_LANG_ABBREV[]_compiler_sunpro=yes],
[sdcc_cv_[]_AC_LANG_ABBREV[]_compiler_sunpro=no])
])])
# sdcc_IS_VALID_OPTION macro checks if the current compiler, selected by
# AC_LANG, supports option specified as the 1st parameter. The test fails if
# the compiler returns an error or in case something is writeen to stderr.
# For example: sdcc_VALID_OPT(-fPIC)
AC_DEFUN([sdcc_IS_VALID_OPTION],
[arg1=`echo $1 | sed -e"s/^-*//" -e"s/-/_/"`
ac_test_[]_AC_LANG_PREFIX[]FLAGS=${[]_AC_LANG_PREFIX[]FLAGS+set}
sdcc_save_[]_AC_LANG_PREFIX[]FLAGS=$[]_AC_LANG_PREFIX[]FLAGS
AC_CACHE_CHECK(whether _AC_LANG accepts $1, sdcc_cv_[]_AC_LANG_ABBREV[]_$arg1,
[sdcc_save_[]_AC_LANG_ABBREV[]_werror_flag=$ac_[]_AC_LANG_ABBREV[]_werror_flag
ac_[]_AC_LANG_ABBREV[]_werror_flag=yes
[]_AC_LANG_PREFIX[]FLAGS="$1"
AC_COMPILE_IFELSE([AC_LANG_PROGRAM()],
[eval sdcc_cv_[]_AC_LANG_ABBREV[]_$arg1=yes],
[eval sdcc_cv_[]_AC_LANG_ABBREV[]_$arg1=no])
ac_[]_AC_LANG_ABBREV[]_werror_flag=$sdcc_save_[]_AC_LANG_ABBREV[]_werror_flag])
[]_AC_LANG_PREFIX[]FLAGS=$sdcc_save_[]_AC_LANG_PREFIX[]FLAGS
])
# This macro expands DIR and assigns it to RET.
# If DIR is NONE, then it's replaced by DEFAULT.
#
# Based on AC_DEFINE_DIR
#
# Examples:
#
# adl_EXPAND(prefix, "/usr/local", expanded_prefix)
AC_DEFUN([adl_EXPAND], [
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
ac_expand=[$]$1
test "x$ac_expand" = xNONE && ac_expand="[$]$2"
ac_expand=`eval echo [$]ac_expand`
$3=`eval echo [$]ac_expand`
])
# adl_NORMALIZE_PATH
#
# - empty paths are changed to '.'
# - trailing slashes are removed
# - repeated slashes are squeezed except a leading doubled slash '//'
# (which might indicate a networked disk on some OS).
#
#
# REFERENCE_STRING is used to turn '/' into '\' and vice-versa: if
# REFERENCE_STRING contains some backslashes, all slashes and backslashes
# are turned into backslashes, otherwise they are all turned into slashes.
#
# This makes processing of DOS filenames quite easier, because you can turn a
# filename to the Unix notation, make your processing, and turn it back to
# original notation.
dnl Available from the GNU Autoconf Macro Archive at:
dnl http://www.gnu.org/software/ac-archive/htmldoc/normpath.html
dnl
AC_DEFUN([adl_NORMALIZE_PATH],
[case ":[$]$1:" in
dnl change empty paths to '.'
::) $1='.' ;;
dnl strip trailing slashes
:*[[\\/]]:) $1=`echo "[$]$1" | sed 's,[[\\/]]*[$],,'` ;;
:*:) ;;
esac
dnl squeze repeated slashes
case ifelse($2,,"[$]$1",$2) in
dnl if the path contains any backslashes, turn slashes into backslashes
dnl Bernhard Held 2003-04-06
dnl This was the original line. It does not:
dnl - convert the first slash
dnl - replace a slash with a double-backslash
dnl *\\*) $1=`echo "[$]$1" | sed 's,\(.\)[[\\/]][[\\/]]*,\1\\\\,g'` ;;
*\\*) $1=`echo "[$]$1" | sed 's,\(.\)[[\\/]][[\\/]]*,\1\\\\\\\\,g
s,^[[\\/]],\\\\\\\\,'` ;;
dnl if the path contains slashes, also turn backslashes into slashes
*) $1=`echo "[$]$1" | sed 's,\(.\)[[\\/]][[\\/]]*,\1/,g'` ;;
esac])
# adl_COMPUTE_RELATIVE_PATH
#
# PATH_LIST is a space-separated list of colon-separated triplets of the form
# 'FROM:TO:RESULT'. This function iterates over these triplets and set $RESULT
# to the relative path from $FROM to $TO. Note that $FROM and $TO needs to be
# absolute filenames for this macro to success.
AC_DEFUN([adl_COMPUTE_RELATIVE_PATHS],
[for _lcl_i in $1; do
_lcl_from=\[$]`echo "[$]_lcl_i" | sed 's,:.*$,,'`
_lcl_to=\[$]`echo "[$]_lcl_i" | sed 's,^[[^:]]*:,,' | sed 's,:[[^:]]*$,,'`
_lcl_result_var=`echo "[$]_lcl_i" | sed 's,^.*:,,'`
adl_RECURSIVE_EVAL([[$]_lcl_from], [_lcl_from])
adl_RECURSIVE_EVAL([[$]_lcl_to], [_lcl_to])
_lcl_notation="$_lcl_from$_lcl_to"
adl_NORMALIZE_PATH([_lcl_from],['/'])
adl_NORMALIZE_PATH([_lcl_to],['/'])
adl_COMPUTE_RELATIVE_PATH([_lcl_from], [_lcl_to], [_lcl_result_tmp])
adl_NORMALIZE_PATH([_lcl_result_tmp],["[$]_lcl_notation"])
eval $_lcl_result_var='[$]_lcl_result_tmp'
done])
## Note:
## *****
## The following helper macros are too fragile to be used out
## of adl_COMPUTE_RELATIVE_PATHS (mainly because they assume that
## paths are normalized), that's why I'm keeping them in the same file.
## Still, some of them maybe worth to reuse.
dnl adl_COMPUTE_RELATIVE_PATH(FROM, TO, RESULT)
dnl ===========================================
dnl Compute the relative path to go from $FROM to $TO and set the value
dnl of $RESULT to that value. This function work on raw filenames
dnl (for instead it will considerate /usr//local and /usr/local as
dnl two distinct paths), you should really use adl_COMPUTE_REALTIVE_PATHS
dnl instead to have the paths sanitized automatically.
dnl
dnl For instance:
dnl first_dir=/somewhere/on/my/disk/bin
dnl second_dir=/somewhere/on/another/disk/share
dnl adl_COMPUTE_RELATIVE_PATH(first_dir, second_dir, first_to_second)
dnl will set $first_to_second to '../../../another/disk/share'.
AC_DEFUN([adl_COMPUTE_RELATIVE_PATH],
[adl_COMPUTE_COMMON_PATH([$1], [$2], [_lcl_common_prefix])
adl_COMPUTE_BACK_PATH([$1], [_lcl_common_prefix], [_lcl_first_rel])
adl_COMPUTE_SUFFIX_PATH([$2], [_lcl_common_prefix], [_lcl_second_suffix])
$3="[$]_lcl_first_rel[$]_lcl_second_suffix"])
dnl adl_COMPUTE_COMMON_PATH(LEFT, RIGHT, RESULT)
dnl ============================================
dnl Compute the common path to $LEFT and $RIGHT and set the result to $RESULT.
dnl
dnl For instance:
dnl first_path=/somewhere/on/my/disk/bin
dnl second_path=/somewhere/on/another/disk/share
dnl adl_COMPUTE_COMMON_PATH(first_path, second_path, common_path)
dnl will set $common_path to '/somewhere/on'.
AC_DEFUN([adl_COMPUTE_COMMON_PATH],
[$3=''
_lcl_second_prefix_match=''
while test "[$]_lcl_second_prefix_match" != 0; do
_lcl_first_prefix=`expr "x[$]$1" : "x\([$]$3/*[[^/]]*\)"`
_lcl_second_prefix_match=`expr "x[$]$2" : "x[$]_lcl_first_prefix"`
if test "[$]_lcl_second_prefix_match" != 0; then
if test "[$]_lcl_first_prefix" != "[$]$3"; then
$3="[$]_lcl_first_prefix"
else
_lcl_second_prefix_match=0
fi
fi
done])
dnl adl_COMPUTE_SUFFIX_PATH(PATH, SUBPATH, RESULT)
dnl ==============================================
dnl Substrack $SUBPATH from $PATH, and set the resulting suffix
dnl (or the empty string if $SUBPATH is not a subpath of $PATH)
dnl to $RESULT.
dnl
dnl For instace:
dnl first_path=/somewhere/on/my/disk/bin
dnl second_path=/somewhere/on
dnl adl_COMPUTE_SUFFIX_PATH(first_path, second_path, common_path)
dnl will set $common_path to '/my/disk/bin'.
AC_DEFUN([adl_COMPUTE_SUFFIX_PATH],
[$3=`expr "x[$]$1" : "x[$]$2/*\(.*\)"`])
dnl adl_COMPUTE_BACK_PATH(PATH, SUBPATH, RESULT)
dnl ============================================
dnl Compute the relative path to go from $PATH to $SUBPATH, knowing that
dnl $SUBPATH is a subpath of $PATH (any other words, only repeated '../'
dnl should be needed to move from $PATH to $SUBPATH) and set the value
dnl of $RESULT to that value. If $SUBPATH is not a subpath of PATH,
dnl set $RESULT to the empty string.
dnl
dnl For instance:
dnl first_path=/somewhere/on/my/disk/bin
dnl second_path=/somewhere/on
dnl adl_COMPUTE_BACK_PATH(first_path, second_path, back_path)
dnl will set $back_path to '../../../'.
AC_DEFUN([adl_COMPUTE_BACK_PATH],
[adl_COMPUTE_SUFFIX_PATH([$1], [$2], [_lcl_first_suffix])
$3=''
_lcl_tmp='xxx'
while test "[$]_lcl_tmp" != ''; do
_lcl_tmp=`expr "x[$]_lcl_first_suffix" : "x[[^/]]*/*\(.*\)"`
if test "[$]_lcl_first_suffix" != ''; then
_lcl_first_suffix="[$]_lcl_tmp"
$3="../[$]$3"
fi
done])
dnl adl_RECURSIVE_EVAL(VALUE, RESULT)
dnl =================================
dnl Interpolate the VALUE in loop until it does not change,
dnl and set the result to $RESULT.
dnl WARNING: It is easy to get an infinite loop with some unsane input.
AC_DEFUN([adl_RECURSIVE_EVAL],
[_lcl_receval="$1"
$2=`(test "x$prefix" = xNONE && prefix="$ac_default_prefix"
test "x$exec_prefix" = xNONE && exec_prefix="${prefix}"
_lcl_receval_old=''
while test "[$]_lcl_receval_old" != "[$]_lcl_receval"; do
_lcl_receval_old="[$]_lcl_receval"
eval _lcl_receval="\"[$]_lcl_receval\""
done
echo "[$]_lcl_receval")`])
dnl adl_NORMALIZE_DEFINE_UNQUOTED(var, DEFINE, REFERENCE_STRING)
AC_DEFUN([adl_NORMALIZE_DEFINE_UNQUOTED], [
ac_ndu=[$]$1
adl_NORMALIZE_PATH([ac_ndu], [$]$3)
AC_DEFINE_UNQUOTED($2, "${ac_ndu}", [XXX])
])
dnl adl_NORMALIZE_PATH_MSG(input_string, var, dir_separator)
dnl ========================================================
dnl call adl_NORMALIZE_PATH and format it for the result message
AC_DEFUN([adl_NORMALIZE_PATH_MSG], [
dnl replace /./ by /
$2=`echo "$1" | sed 's,/\./,/,g'`
adl_NORMALIZE_PATH([$2], [$3])
dnl replace \\ by \
$2=`echo "[$]$2" | sed 's,\\\\\\\\,\\\\,g'`
])
AX_CXX_COMPILE_STDCXX_11
# Checking characteristics of compilers and other programs
# ===========================================================================
if test "$ac_cv_c_compiler_gnu" = "yes"; then
AC_CACHE_CHECK(whether preprocessor accepts -MM or -M,sdcc_cv_MM,
echo "#include <stdio.h>" >_test_.c
echo "" >>_test_.c
$CPP -v -MM _test_.c 1>&5 2>&5
if test "$?" = "0"; then
sdcc_cv_MM="-MM"
else
sdcc_cv_MM="-M"
fi
rm -f _test_.*)
# This is the first time when CFLAGS are set/modified!!
sdcc_IS_VALID_OPTION(-ggdb)
if test "$sdcc_cv_c_ggdb" = "yes"; then
CFLAGS="-ggdb ${CFLAGS}"
CXXFLAGS="-ggdb ${CXXFLAGS}"
fi
sdcc_IS_VALID_OPTION(-pipe)
if test "$sdcc_cv_c_pipe" = "yes"; then
CFLAGS="-pipe ${CFLAGS}"
# Don't use "-pipe" on x86 Solaris g++, since src/z80/ralloc2.cc dies with:
# Assembler: ralloc2.cc
# "<stdin>", line 117637 : Internal: Out of symbol table
if test `uname` != "SunOS" -o \( `uname` = "SunOS" -a `uname -m` != "i86pc" \); then
CXXFLAGS="-pipe ${CXXFLAGS}"
fi
fi
WALL_FLAG="-Wall -Wno-parentheses"
MAKEDEP_CXX="$CXX $sdcc_cv_MM"
MAKEDEP="$CC $sdcc_cv_MM"
else
sdcc_IS_SUNPRO
fi
AC_SUBST(MAKEDEP)
AC_SUBST(MAKEDEP_CXX)
AC_SUBST(WALL_FLAG)
# Check for c11
# -------------------------------------------------------------------------
if test "$ac_cv_prog_cc_c11" == "no"; then
AC_MSG_ERROR([Could not find C11-capable host compiler.])
fi
# Checks for typedefs, structures, and compiler characteristics.
# ===========================================================================
AC_CHECK_SIZEOF(char)
AC_CHECK_SIZEOF(short)
AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)
AC_CHECK_SIZEOF(long long)
AC_C_CHAR_UNSIGNED
type_name()
{
if expr "$ac_cv_sizeof_char" '>=' "$1" >/dev/null; then
echo "char"
exit
fi
if expr "$ac_cv_sizeof_short" '>=' "$1" >/dev/null; then
echo "short"
exit
fi
if expr "$ac_cv_sizeof_int" '>=' "$1" >/dev/null; then
echo "int"
exit
fi
if expr "$ac_cv_sizeof_long" '>=' "$1" >/dev/null; then
echo "long"
exit
fi
if expr "$ac_cv_sizeof_long_long" '>=' "$1" >/dev/null; then
echo "long long"
exit
fi
echo "long"
}
AC_MSG_CHECKING(type name for byte)
TYPE_CHAR=`type_name 1`
if test "$ac_cv_c_char_unsigned" = "yes"; then
TYPE_BYTE="signed $TYPE_CHAR"
else
TYPE_BYTE=$TYPE_CHAR
fi
AC_MSG_RESULT($TYPE_BYTE)
AC_MSG_CHECKING(type name for word)
TYPE_WORD=`type_name 2`
AC_MSG_RESULT($TYPE_WORD)
AC_MSG_CHECKING(type name for dword)
TYPE_DWORD=`type_name 4`
AC_MSG_RESULT($TYPE_DWORD)
AC_MSG_CHECKING(type name for qword)
TYPE_QWORD=`type_name 8`
AC_MSG_RESULT($TYPE_QWORD)
AC_DEFINE_UNQUOTED(TYPE_BYTE, $TYPE_BYTE, [XXX])
AC_DEFINE_UNQUOTED(TYPE_WORD, $TYPE_WORD, [XXX])
AC_DEFINE_UNQUOTED(TYPE_DWORD, $TYPE_DWORD, [XXX])
AC_DEFINE_UNQUOTED(TYPE_QWORD, $TYPE_QWORD, [XXX])
AC_DEFINE_UNQUOTED(TYPE_UBYTE, unsigned $TYPE_CHAR, [XXX])
AC_DEFINE_UNQUOTED(TYPE_UWORD, unsigned $TYPE_WORD, [XXX])
AC_DEFINE_UNQUOTED(TYPE_UDWORD, unsigned $TYPE_DWORD, [XXX])
AC_DEFINE_UNQUOTED(TYPE_UQWORD, unsigned $TYPE_QWORD, [XXX])
case "${host}" in
*x86_64*cygwin*)
LDFLAGS="$LDFLAGS -Wl,--stack,4194304"
;;
*x86_64*mingw*)
LDFLAGS="$LDFLAGS -Wl,--stack,4194304"
;;
esac
# Checking whether byte ordering is bigendian
# ===========================================================================
AC_C_BIGENDIAN
# Set standard installation paths
# ===========================================================================
# In the Makefiles we need paths with '/' as directory separator, even if
# crosscompiling for Win32.
# And we want to preserve the macros (e.g. ${prefix}) in the Makefiles.
# The variables in the Makefiles are replaced by AC_SUBST()
#
# In sdccconf.h the '/' in paths can be replaced by "\\" (normalized), if
#
# The macros are expanded for the header.
# The variables in the header are replaced by AC_*DEFINE*()
# sdccconf_h_dir_separator contains a backslash.
AC_ARG_VAR([sdccconf_h_dir_separator], [needed in sdccconf.h: either "/" (default) or "\\"])
if test "x${sdccconf_h_dir_separator}" = "x"; then
sdccconf_h_dir_separator="/"
fi
# Makefiles
###########
# LIB_TYPE:
# *nix default: "RANLIB"
AC_ARG_VAR([LIB_TYPE], [library type: LIB, SDCCLIB, AR or RANLIB (default)])
if test "${LIB_TYPE}" = ""; then
LIB_TYPE="RANLIB"
fi
# include_dir_suffix:
# *nix default: "sdcc/include"
AC_ARG_VAR([inclib_dir_suffix], [appended to datadir to define SDCC's include/lib directory])
if test "${inclib_dir_suffix}" = ""; then
inclib_dir_suffix="sdcc"
fi
AC_ARG_VAR([include_dir_suffix], [appended to datadir to define SDCC's include directory])
if test "${include_dir_suffix}" = ""; then
include_dir_suffix="${inclib_dir_suffix}/include"
fi
AC_ARG_VAR([non_free_inclib_dir_suffix], [appended to datadir to define SDCC's non-free include/lib directory])
if test "${non_free_inclib_dir_suffix}" = ""; then
non_free_inclib_dir_suffix="sdcc/non-free"
fi
# non_free_include_dir_suffix:
# *nix default: "sdcc/non-free/include"
AC_ARG_VAR([non_free_include_dir_suffix], [appended to datadir to define SDCC's non-free include directory])
if test "${non_free_include_dir_suffix}" = ""; then
non_free_include_dir_suffix="${non_free_inclib_dir_suffix}/include"
fi
# lib_dir_suffix:
# *nix default: "sdcc/lib"
AC_ARG_VAR([lib_dir_suffix], [appended to datadir to define SDCC's library root directory])
if test "${lib_dir_suffix}" = ""; then
lib_dir_suffix="${inclib_dir_suffix}/lib"
fi
# non_free_lib_dir_suffix:
# *nix default: "sdcc/non-free/lib"
AC_ARG_VAR([non_free_lib_dir_suffix], [appended to datadir to define SDCC's non-free library root directory])
if test "${non_free_lib_dir_suffix}" = ""; then
non_free_lib_dir_suffix="${non_free_inclib_dir_suffix}/lib"
fi
# docdir:
# *nix default: "${datadir}/sdcc/doc"
AC_ARG_VAR([docdir], [documentation installation directory])
if test "${docdir}" = ""; then
docdir="\${datadir}"/sdcc/doc
fi
AC_SUBST(EXEEXT)
# sdccconf.h
############
AC_DEFINE_UNQUOTED(DIR_SEPARATOR_STRING, "${sdccconf_h_dir_separator}", [XXX])
AC_DEFINE_UNQUOTED(DIR_SEPARATOR_CHAR, '${sdccconf_h_dir_separator}', [XXX])
# prefix:
# default: "NONE", ${ac_default_prefix}: "/usr/local"
adl_EXPAND(prefix, ac_default_prefix, expanded_prefix)
adl_NORMALIZE_DEFINE_UNQUOTED(expanded_prefix, PREFIX, sdccconf_h_dir_separator)
# exec_prefix:
# default: "${prefix}"
adl_EXPAND(exec_prefix, expanded_prefix, expanded_exec_prefix)
adl_NORMALIZE_DEFINE_UNQUOTED(expanded_exec_prefix, EXEC_PREFIX, sdccconf_h_dir_separator)
# bindir:
# default: "${exec_prefix}/bin"
adl_EXPAND(bindir, "NONE", expanded_bindir)
adl_NORMALIZE_DEFINE_UNQUOTED(expanded_bindir, BINDIR, sdccconf_h_dir_separator)
# datadir:
# default: "${prefix}/share"
adl_EXPAND(datadir, "NONE", expanded_datadir)
adl_NORMALIZE_DEFINE_UNQUOTED(expanded_datadir, DATADIR, sdccconf_h_dir_separator)
# include/lib suffix
norm_inc_dir_suffix=${include_dir_suffix}
adl_NORMALIZE_PATH([norm_inc_dir_suffix], [$sdccconf_h_dir_separator])
AC_DEFINE_UNQUOTED(INCLUDE_DIR_SUFFIX,
DIR_SEPARATOR_STRING "${norm_inc_dir_suffix}", [XXX])
norm_non_free_inc_dir_suffix=${non_free_include_dir_suffix}
adl_NORMALIZE_PATH([norm_non_free_inc_dir_suffix], [$sdccconf_h_dir_separator])
AC_DEFINE_UNQUOTED(NON_FREE_INCLUDE_DIR_SUFFIX,
DIR_SEPARATOR_STRING "${norm_non_free_inc_dir_suffix}", [XXX])
norm_lib_dir_suffix=${lib_dir_suffix}
adl_NORMALIZE_PATH([norm_lib_dir_suffix], [$sdccconf_h_dir_separator])
AC_DEFINE_UNQUOTED(LIB_DIR_SUFFIX,
DIR_SEPARATOR_STRING "${norm_lib_dir_suffix}", [XXX])
norm_non_free_lib_dir_suffix=${non_free_lib_dir_suffix}
adl_NORMALIZE_PATH([norm_non_free_lib_dir_suffix], [$sdccconf_h_dir_separator])
AC_DEFINE_UNQUOTED(NON_FREE_LIB_DIR_SUFFIX,
DIR_SEPARATOR_STRING "${norm_non_free_lib_dir_suffix}", [XXX])
# relative paths
adl_COMPUTE_RELATIVE_PATHS([expanded_bindir:expanded_datadir:bin2data_dir])
adl_NORMALIZE_PATH(bin2data_dir, [$sdccconf_h_dir_separator])
AC_DEFINE_UNQUOTED(BIN2DATA_DIR,
DIR_SEPARATOR_STRING "${bin2data_dir}", [XXX])
adl_COMPUTE_RELATIVE_PATHS([expanded_prefix:expanded_bindir:prefix2bin_dir])
adl_NORMALIZE_PATH(prefix2bin_dir, [$sdccconf_h_dir_separator])
AC_DEFINE_UNQUOTED(PREFIX2BIN_DIR,
DIR_SEPARATOR_STRING "${prefix2bin_dir}", [XXX])
adl_COMPUTE_RELATIVE_PATHS([expanded_prefix:expanded_datadir:prefix2data_dir])
adl_NORMALIZE_PATH(prefix2data_dir, [$sdccconf_h_dir_separator])
if test "${prefix2data_dir}" = "."; then
# small optimization for Mingw32; otherwise Borut will complain ;-)
AC_DEFINE_UNQUOTED(PREFIX2DATA_DIR, "", [XXX])
else
AC_DEFINE_UNQUOTED(PREFIX2DATA_DIR,
DIR_SEPARATOR_STRING "${prefix2data_dir}", [XXX])
fi
# standard libs
AC_DEFINE_UNQUOTED(STD_LIB, "libsdcc", [XXX])
AC_DEFINE_UNQUOTED(STD_INT_LIB, "libint", [XXX])
AC_DEFINE_UNQUOTED(STD_LONG_LIB, "liblong", [XXX])
AC_DEFINE_UNQUOTED(STD_FP_LIB, "libfloat", [XXX])
AC_DEFINE_UNQUOTED(STD_DS390_LIB, "libds390", [XXX])
AC_DEFINE_UNQUOTED(STD_DS400_LIB, "libds400", [XXX])
# SDCC runtime environment variables
sdcc_dir_name="SDCC_HOME"
AC_DEFINE_UNQUOTED(SDCC_DIR_NAME, "${sdcc_dir_name}", [XXX])
sdcc_include_name="SDCC_INCLUDE"
AC_DEFINE_UNQUOTED(SDCC_INCLUDE_NAME, "${sdcc_include_name}", [XXX])
sdcc_lib_name="SDCC_LIB"
AC_DEFINE_UNQUOTED(SDCC_LIB_NAME, "${sdcc_lib_name}", [XXX])
# add include guard and custom stuff to sdccconf.h
AH_TOP([#ifndef SDCCCONF_HEADER
#define SDCCCONF_HEADER])
AH_BOTTOM([#endif /* SDCCCONF_HEADER */])
# Port selection helper
# ===========================================================================
# macro AC_DO_ENABLER()
# $1 used to access enable_$1, e.g. enable_doc
# $2 OPT_DISABLE_$2, normally uppercase of $1, e.g. DOC
# $3 help string
AC_DEFUN([AC_DO_ENABLER], [
AC_ARG_ENABLE($1, AS_HELP_STRING([--enable-$1],[$3]))
if test "[$]enable_$1" = "yes"; then
OPT_ENABLE_$2=1
else
OPT_ENABLE_$2=0
fi
AC_DEFINE_UNQUOTED(OPT_ENABLE_$2, [$]OPT_ENABLE_$2, [XXX])
AC_SUBST(OPT_ENABLE_$2)
])
# macro AC_DO_DISABLER()
# $1 used to access disable_$1, e.g. ucsim
# $2 OPT_DISABLE_$2, normally uppercase of $1, e.g. UCSIM
# $3 help string
AC_DEFUN([AC_DO_DISABLER], [
AC_ARG_ENABLE($1, AS_HELP_STRING([--disable-$1],[$3]))
dnl the '-' in 'device-lib' needs special handling,
dnl because the variable is 'enable_device_lib'
arg1=`echo $1 | sed s/-/_/`
if test "`eval echo \\$enable_$arg1`" = "no"; then
OPT_DISABLE_$2=1
else
OPT_DISABLE_$2=0
fi
AC_DEFINE_UNQUOTED(OPT_DISABLE_$2, [$]OPT_DISABLE_$2, [XXX])
AC_SUBST(OPT_DISABLE_$2)
])
# macro AC_DO_PORT($1, $2, $3, $4)
# $1 used to access enable_$2_port, e.g. sm83
# $2 port name in ports.all and ports.build, e.g. z80
# $3 OPT_DISABLE_$3, normally uppercase of $2, e.g. SM83
# $4 help string
AC_DEFUN([AC_DO_PORT], [
AC_ARG_ENABLE($1-port,
AS_HELP_STRING([--disable-$1-port],[$4]))
if test "[$]enable_$1_port" = "no"; then
OPT_DISABLE_$3=1
else
enable_$1_port="yes"
OPT_DISABLE_$3=0
fi
AC_DEFINE_UNQUOTED(OPT_DISABLE_$3, [$]OPT_DISABLE_$3, [XXX])
AC_SUBST(OPT_DISABLE_$3)
echo $2 >>ports.all
if test [$]OPT_DISABLE_$3 = 0; then
echo $2 >>ports.build
fi
])
# macro AC_DO_PORT_ENABLER($1, $2, $3, $4)
# $1 used to access enable_$2_port, e.g. sm83
# $2 port name in ports.all and ports.build, e.g. z80
# $3 OPT_DISABLE_$3, normally uppercase of $2, e.g. SM83
# $4 help string
AC_DEFUN([AC_DO_PORT_ENABLER], [
AC_ARG_ENABLE($1-port,
AS_HELP_STRING([--enable-$1-port],[$4]))
if test "[$]enable_$1_port" = "yes"; then
OPT_DISABLE_$3=0
else
enable_$1_port="no"
OPT_DISABLE_$3=1
fi
AC_DEFINE_UNQUOTED(OPT_DISABLE_$3, [$]OPT_DISABLE_$3, [XXX])
AC_SUBST(OPT_DISABLE_$3)
echo $2 >>ports.all
if test [$]OPT_DISABLE_$3 = 0; then
echo $2 >>ports.build
fi
])
# Revision number
# ===============
dnl Check for Git short SHA to tag version
dnl The release package should also keep it on the config.h
GIT_REVISION=""
SVN_REVISION="unknown"
if test -d "${srcdir}/.git"; then
GIT_REVISION=$( git log --pretty=format:'%h' -n 1u )
echo "Found Git repo... $GIT_REVISION"
SVN_REVISION=$( git log -1 | tail -n1 | cut -f2 -d @ | cut -f1 -d" " )
fi
AC_SUBST(GIT_REVISION)
AC_SUBST(SVN_REVISION)
# Now handle the port selection
# ===========================================================================
rm -f ports.all ports.build
# Supported targets
AC_DO_PORT(mcs51, mcs51, MCS51, [Excludes the Intel mcs51 port])
AC_DO_PORT(z80, z80, Z80, [Excludes the Z80 port])
AC_DO_PORT(z180, z80, Z180, [Excludes the Z180 port])
AC_DO_PORT(r2k, z80, R2K, [Excludes the Rabbit 2000 port])
AC_DO_PORT(r2ka, z80, R2KA, [Excludes the Rabbit 2000A port])
AC_DO_PORT(r3ka, z80, R3KA, [Excludes the Rabbit 3000A port])
AC_DO_PORT(sm83, z80, SM83, [Excludes the SM83 port])
AC_DO_PORT(tlcs90, z80, TLCS90, [Excludes the TLCS-90 port])
AC_DO_PORT(ez80_z80, z80, EZ80_Z80, [Excludes the EZ80-Z80 port])
AC_DO_PORT(z80n, z80, Z80N, [Excludes the Z80N port])
AC_DO_PORT(r800, z80, R800, [Excludes the R800 port])
AC_DO_PORT(ds390, ds390, DS390, [Excludes the DS390 port])
AC_DEFINE_UNQUOTED(OPT_DISABLE_TININative, $OPT_DISABLE_DS390, [XXX])
AC_DO_PORT(ds400, ds390, DS400, [Excludes the DS400 port])
AC_DO_PORT(pic14, pic14, PIC14, [Excludes the PIC14 port])
AC_DO_PORT(pic16, pic16, PIC16, [Excludes the PIC16 port])
AC_DO_PORT(hc08, hc08, HC08, [Excludes the HC08 port])
AC_DO_PORT(s08, hc08, S08, [Excludes the S08 port])
AC_DO_PORT(stm8, stm8, STM8, [Excludes the STM8 port])
AC_DO_PORT(pdk13, pdk, PDK13, [Excludes the PDK13 port])
AC_DO_PORT(pdk14, pdk, PDK14, [Excludes the PDK14 port])
AC_DO_PORT(pdk15, pdk, PDK15, [Excludes the PDK15 port])
AC_DO_PORT_ENABLER(pdk16, pdk, PDK16, [Includes the PDK16 port])
AC_DO_PORT(mos6502, mos6502,MOS6502, [Excludes the MOS6502 port])
AC_DO_PORT(mos65c02, mos6502,MOS65C02, [Excludes the MOS65C02 port])
AC_DO_PORT(f8, f8, F8, [Excludes the F8 port])
# Unsupported targets
####AC_DO_PORT_ENABLER(avr, avr, AVR, [Includes the AVR port (disabled by default)])
OPT_DISABLE_AVR=1
AC_DEFINE_UNQUOTED(OPT_DISABLE_AVR, ${OPT_DISABLE_AVR}, [Define to 1 to disable the AVR port])
AC_SUBST(OPT_DISABLE_AVR)
AC_DO_DISABLER(ucsim, UCSIM, [Disables configuring and building of ucsim])
AC_DO_DISABLER(device-lib, DEVICE_LIB, [Disables building device libraries])
AC_DO_DISABLER(packihx, PACKIHX, [Disables building packihx])
AC_DO_DISABLER(sdcpp, SDCPP, [Disables building sdcpp])
AC_DO_DISABLER(sdcdb, SDCDB, [Disables building sdcdb])
AC_DO_DISABLER(sdbinutils, SDBINUTILS, [Disables configuring and building of sdbinutils])
AC_DO_DISABLER(non-free, NON_FREE, [Disables non-free runtime library parts])
AC_DO_ENABLER(doc, DOC, [Enables building the documentation])
AC_CHECK_PROG([LYX], [lyx], [lyx], [:])
AC_CHECK_PROG([LATEX2HTML], [latex2html], [latex2html], [:])
AC_CHECK_PROG([LATEX], [latex], [latex], [:])
AC_CHECK_PROG([DVIPDFM], [dvipdfm], [dvipdfm], [:])
AC_CHECK_PROG([PDFLATEX], [pdflatex], [pdflatex], [:])
AC_CHECK_PROG([MAKEINDEX], [makeindex], [makeindex], [:])
if test $OPT_ENABLE_DOC = 1; then
SDCC_REQUIRE_PROG($LYX, lyx)
SDCC_REQUIRE_PROG($LATEX2HTML, latex2html)
SDCC_REQUIRE_PROG($LATEX, latex)
SDCC_REQUIRE_PROG($DVIPDFM, dvipdfm)
SDCC_REQUIRE_PROG($MAKEINDEX, makeindex)
fi
AC_DO_ENABLER(libgc, LIBGC, [Use the Bohem memory allocator. Lower runtime footprint.])
if test $OPT_ENABLE_LIBGC = 1; then
AC_CHECK_LIB(gc, GC_malloc)
if test $ac_cv_lib_gc_GC_malloc = no; then
AC_MSG_ERROR([Cannot find library libgc with Bohem memory allocator.])
fi
fi
#remove duplicates
uniq ports.all ports
mv ports ports.all
uniq ports.build ports
mv ports ports.build
# Generating output files
# ===========================================================================
test $OPT_DISABLE_SDCPP = 0 && AC_CONFIG_SUBDIRS(support/cpp)
test $OPT_DISABLE_PACKIHX = 0 && AC_CONFIG_SUBDIRS(support/packihx)
test $OPT_DISABLE_UCSIM = 0 && AC_CONFIG_SUBDIRS(sim/ucsim)
test $OPT_DISABLE_SDCDB = 0 && AC_CONFIG_SUBDIRS(debugger/mcs51)
test $OPT_DISABLE_SDBINUTILS = 0 && AC_CONFIG_SUBDIRS(support/sdbinutils)
AC_CONFIG_FILES([doc/Makefile])
####test $OPT_DISABLE_AVR = 0 && AC_CONFIG_FILES([src/avr/Makefile])
if test $OPT_DISABLE_DS390 = 0 || test $OPT_DISABLE_DS400; then
AC_CONFIG_FILES([src/ds390/Makefile
sdas/as8xcxxx/Makefile])
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_FILES([device/lib/ds390/Makefile
device/lib/ds400/Makefile])
fi
if test $OPT_DISABLE_HC08 = 0 || test $OPT_DISABLE_S08 = 0; then
AC_CONFIG_FILES([src/hc08/Makefile
sdas/as6808/Makefile])
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_FILES([device/lib/hc08/Makefile
device/lib/s08/Makefile
device/lib/s08-stack-auto/Makefile])
fi
if test $OPT_DISABLE_MOS6502 = 0 || test $OPT_DISABLE_MOS65C02 = 0; then
AC_CONFIG_FILES([src/mos6502/Makefile
sdas/as6500/Makefile])
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_FILES([device/lib/mos6502/Makefile
device/lib/mos6502-stack-auto/Makefile
device/lib/mos65c02/Makefile])
fi
if test $OPT_DISABLE_MCS51 = 0; then
AC_CONFIG_FILES([src/mcs51/Makefile
sdas/as8051/Makefile])
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_FILES([device/lib/mcs51/Makefile
device/lib/small/Makefile
device/lib/medium/Makefile
device/lib/large/Makefile
device/lib/huge/Makefile])
fi
if test $OPT_DISABLE_PIC14 = 0; then
AC_CONFIG_FILES(src/pic14/Makefile)
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_SUBDIRS(device/lib/pic14)
fi
if test $OPT_DISABLE_PIC14 = 0 && test $OPT_DISABLE_NON_FREE = 0; then
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_SUBDIRS(device/non-free/lib/pic14)
fi
if test $OPT_DISABLE_PIC16 = 0; then
AC_CONFIG_FILES(src/pic16/Makefile)
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_SUBDIRS(device/lib/pic16)
fi
if test $OPT_DISABLE_PIC16 = 0 && test $OPT_DISABLE_NON_FREE = 0; then
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_SUBDIRS(device/non-free/lib/pic16)
fi
if test $OPT_DISABLE_Z80 = 0 || test $OPT_DISABLE_Z180 = 0 || test $OPT_DISABLE_R2K = 0 || test $OPT_DISABLE_R2KA = 0 || test $OPT_DISABLE_R3KA = 0 || test $OPT_DISABLE_SM83 = 0 || test $OPT_DISABLE_TLCS90 = 0 || test $OPT_DISABLE_EZ80_Z80 = 0 || test $OPT_DISABLE_Z80N = 0 || test $OPT_DISABLE_R800 = 0; then
AC_CONFIG_FILES([src/z80/Makefile])
fi
if test $OPT_DISABLE_Z80 = 0 || test $OPT_DISABLE_Z180 = 0 || test $OPT_DISABLE_EZ80_Z80 = 0 || test $OPT_DISABLE_Z80N = 0 || test $OPT_DISABLE_R800 = 0; then
AC_CONFIG_FILES([sdas/asz80/Makefile])
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_FILES([device/lib/z80/Makefile
device/lib/z180/Makefile
device/lib/ez80_z80/Makefile
device/lib/z80n/Makefile
device/lib/r800/Makefile])
fi
if test $OPT_DISABLE_R2K = 0 || test $OPT_DISABLE_R2KA = 0 || test $OPT_DISABLE_R3KA = 0; then
AC_CONFIG_FILES([sdas/asrab/Makefile])
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_FILES([device/lib/r2k/Makefile
device/lib/r2ka/Makefile
device/lib/r3ka/Makefile])
fi
if test $OPT_DISABLE_TLCS90 = 0; then
AC_CONFIG_FILES([sdas/astlcs90/Makefile])
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_FILES([device/lib/tlcs90/Makefile])
fi
if test $OPT_DISABLE_SM83 = 0; then
AC_CONFIG_FILES([sdas/asgb/Makefile])
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_FILES([device/lib/sm83/Makefile])
fi
if test $OPT_DISABLE_STM8 = 0; then
AC_CONFIG_FILES([src/stm8/Makefile
sdas/asstm8/Makefile])
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_FILES([device/lib/stm8/Makefile
device/lib/stm8-large/Makefile])
fi
if test $OPT_DISABLE_PDK13 = 0 || test $OPT_DISABLE_PDK14 = 0 || test $OPT_DISABLE_PDK15 = 0 || test $OPT_DISABLE_PDK16 = 0; then
AC_CONFIG_FILES([src/pdk/Makefile])
fi
if test $OPT_DISABLE_PDK13 = 0; then
AC_CONFIG_FILES([sdas/aspdk13/Makefile])
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_FILES([device/lib/pdk13/Makefile])
fi
if test $OPT_DISABLE_PDK14 = 0; then
AC_CONFIG_FILES([sdas/aspdk14/Makefile])
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_FILES([device/lib/pdk14/Makefile])
fi
if test $OPT_DISABLE_PDK15 = 0; then
AC_CONFIG_FILES([sdas/aspdk15/Makefile])
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_FILES([device/lib/pdk15/Makefile
device/lib/pdk15-stack-auto/Makefile])
fi
if test $OPT_DISABLE_PDK16 = 0; then
AC_CONFIG_FILES([sdas/aspdk16/Makefile])
fi
if test $OPT_DISABLE_F8 = 0; then
AC_CONFIG_FILES([src/f8/Makefile
sdas/asf8/Makefile])
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_FILES([device/lib/f8/Makefile])
fi
test $OPT_DISABLE_DEVICE_LIB = 0 && AC_CONFIG_FILES([device/lib/Makefile])
test $OPT_DISABLE_DEVICE_LIB = 0 && test $OPT_DISABLE_NON_FREE = 0 && AC_CONFIG_FILES([device/non-free/lib/Makefile])
AC_CONFIG_FILES([main.mk:main_in.mk
bin/Makefile
src/Makefile
device/include/Makefile
sdas/linksrc/Makefile
support/makebin/Makefile
support/regression/Makefile
support/regression/cases/Makefile
support/valdiag/Makefile
support/scripts/Makefile
support/regression/ports/host/spec.mk:support/regression/ports/host/spec.mk.in
Makefile
Makefile.common:Makefile.common.in
])
AC_CONFIG_FILES([bin/sdcc], [chmod +x bin/sdcc])
AC_CONFIG_FILES([bin/sdcpp], [chmod +x bin/sdcpp])
AC_CONFIG_FILES([bin/sdar], [chmod +x bin/sdar])
AC_CONFIG_FILES([bin/sdnm], [chmod +x bin/sdnm])
AC_CONFIG_FILES([bin/sdranlib], [chmod +x bin/sdranlib])
AC_CONFIG_FILES([bin/sdobjcopy], [chmod +x bin/sdobjcopy])
if test $OPT_DISABLE_NON_FREE = 0; then
AC_CONFIG_FILES([device/non-free/include/Makefile])
fi
AC_OUTPUT
# I found no better place
mkdir -p bin
# Prepare result message
# ======================
# In the C-header we need \\ as dir-separator, but in the message only \
dirch=${sdccconf_h_dir_separator}
test ${dirch} = '\\' && dirch='\'
# calc friendly strings
adl_NORMALIZE_PATH_MSG(/${prefix2bin_dir}, [binPath], [$dirch])
adl_NORMALIZE_PATH_MSG(/${prefix2data_dir}/${norm_inc_dir_suffix}, [incPath1], [$dirch])
adl_NORMALIZE_PATH_MSG(/${bin2data_dir}/${norm_inc_dir_suffix}, [incPath2], [$dirch])
adl_NORMALIZE_PATH_MSG(${expanded_datadir}/${norm_inc_dir_suffix}, [incPath3], [$dirch])
adl_NORMALIZE_PATH_MSG(/${prefix2data_dir}/${norm_non_free_inc_dir_suffix}, [nonFreeIncPath1], [$dirch])
adl_NORMALIZE_PATH_MSG(/${bin2data_dir}/${norm_non_free_inc_dir_suffix}, [nonFreeIncPath2], [$dirch])
adl_NORMALIZE_PATH_MSG(${expanded_datadir}/${norm_non_free_inc_dir_suffix}, [nonFreeIncPath3], [$dirch])
adl_NORMALIZE_PATH_MSG(/${prefix2data_dir}/${norm_lib_dir_suffix}, [libPath1], [$dirch])
adl_NORMALIZE_PATH_MSG(/${bin2data_dir}/${norm_lib_dir_suffix}, [libPath2], [$dirch])
adl_NORMALIZE_PATH_MSG(${expanded_datadir}/${norm_lib_dir_suffix}, [libPath3], [$dirch])
adl_NORMALIZE_PATH_MSG(/${prefix2data_dir}/${norm_non_free_lib_dir_suffix}, [nonFreeLibPath1], [$dirch])
adl_NORMALIZE_PATH_MSG(/${bin2data_dir}/${norm_non_free_lib_dir_suffix}, [nonFreeLibPath2], [$dirch])
adl_NORMALIZE_PATH_MSG(${expanded_datadir}/${norm_non_free_lib_dir_suffix}, [nonFreeLibPath3], [$dirch])
AC_MSG_RESULT([
sdcc ${VERSION} is now configured for
Build: ${build}
Host: ${host}
Source directory: ${srcdir}
Yacc: ${YACC}
C compiler: ${CC}
CFLAGS: ${CFLAGS}
C++ compiler: ${CXX}
CXXFLAGS: ${CXXFLAGS}
CPPFLAGS: ${CPPFLAGS}
LDFLAGS: ${LDFLAGS}
MAKEDEP: ${MAKEDEP}
MAKEDEP_CXX: ${MAKEDEP_CXX}
ENABLED Ports:
ds390 ${enable_ds390_port}
ds400 ${enable_ds400_port}
hc08 ${enable_hc08_port}
s08 ${enable_s08_port}
mcs51 ${enable_mcs51_port}
pic14 ${enable_pic14_port}
pic16 ${enable_pic16_port}
z80 ${enable_z80_port}
z180 ${enable_z180_port}
r2k ${enable_r2k_port}
r2ka ${enable_r2ka_port}
r3ka ${enable_r3ka_port}
sm83 ${enable_sm83_port}
tlcs90 ${enable_tlcs90_port}
ez80_z80 ${enable_ez80_z80_port}
z80n ${enable_z80n_port}
r800 ${enable_r800_port}
stm8 ${enable_stm8_port}
pdk13 ${enable_pdk13_port}
pdk14 ${enable_pdk14_port}
pdk15 ${enable_pdk15_port}
pdk16 ${enable_pdk16_port}
mos6502 ${enable_mos6502_port}
mos65c02 ${enable_mos65c02_port}
f8 ${enable_f8_port}
Disable non-free lib: ${OPT_DISABLE_NON_FREE}
Disable packihx: ${OPT_DISABLE_PACKIHX}
Disable ucsim: ${OPT_DISABLE_UCSIM}
Disable device lib: ${OPT_DISABLE_DEVICE_LIB}
Disable sdcpp: ${OPT_DISABLE_SDCPP}
Disable sdcdb: ${OPT_DISABLE_SDCDB}
Disable sdbinutil: ${OPT_DISABLE_SDBINUTILS}
Enable documentation: ${OPT_ENABLE_DOC}
Enable libgc: ${OPT_ENABLE_LIBGC}
Install paths:
binary files: ${exec_prefix}
include/library files: ${datadir}/${inclib_dir_suffix}
include files: ${datadir}/${include_dir_suffix}
library files: ${datadir}/${lib_dir_suffix}
non-free files: ${datadir}/${non_free_inclib_dir_suffix}
non-free include files: ${datadir}/${non_free_include_dir_suffix}
non-free library files: ${datadir}/${non_free_lib_dir_suffix}
documentation: ${docdir}
prefix: ${prefix}
datadir: ${datadir}
datarootdir: ${datarootdir}
Search paths (incomplete, see manual for all search paths):
binary files: \$SDCC_HOME${binPath}
include files: ${incPath1}
path(argv[[0]])${incPath2}
${incPath3}
${nonFreeIncPath1}
path(argv[[0]])${nonFreeIncPath2}
${nonFreeIncPath3}
library files: \$SDCC_HOME${libPath1}${dirch}<model>
path(argv[[0]])${libPath2}${dirch}<model>
${libPath3}${dirch}<model>
\$SDCC_HOME${nonFreeLibPath1}${dirch}<model>
path(argv[[0]])${nonFreeLibPath2}${dirch}<model>
${nonFreeLibPath3}${dirch}<model>
])
# End of configure/configure.in
|