1 | # -*- Autoconf -*- |
---|
2 | # Process this file with autoconf to produce a configure script. |
---|
3 | |
---|
4 | AC_PREREQ([2.68]) |
---|
5 | AC_INIT([cfa-cc],[1.0.0.0],[cforall@plg.uwaterloo.ca]) |
---|
6 | AC_CONFIG_AUX_DIR([automake]) |
---|
7 | AC_CONFIG_MACRO_DIRS([automake]) |
---|
8 | AM_SILENT_RULES([yes]) |
---|
9 | |
---|
10 | m4_include([../automake/cfa.m4]) |
---|
11 | |
---|
12 | AM_INIT_AUTOMAKE([subdir-objects]) |
---|
13 | |
---|
14 | # don't use the default CFLAGS as they unconditonnaly add -O2 |
---|
15 | : ${CFLAGS=""} |
---|
16 | |
---|
17 | # define this to override |
---|
18 | AR_FLAGS="cr" |
---|
19 | |
---|
20 | # Allow program name tansformation |
---|
21 | # will fill program_transform_name with appropriate sed regex |
---|
22 | AC_ARG_PROGRAM |
---|
23 | |
---|
24 | AC_ARG_VAR(ARCHITECTURE, [The architecture to use when building libcfa]) |
---|
25 | AC_ARG_VAR(CONFIGURATION, [The configuration to use when building libcfa, options are: deubg, nodebug, nolib (prelude-only)]) |
---|
26 | AC_ARG_VAR(DRIVER_DIR, [The path to the cforall driver directory]) |
---|
27 | AC_ARG_VAR(CFA_VERSION, [The long version of cfa]) |
---|
28 | |
---|
29 | AC_ARG_ENABLE(distcc, |
---|
30 | [ --enable-distcc whether or not to enable distributed compilation], |
---|
31 | enable_distcc=$enableval, enable_distcc=no) |
---|
32 | |
---|
33 | echo -n "checking for distributated build... " |
---|
34 | if test x$enable_distcc = xno; then |
---|
35 | CFACC=${DRIVER_DIR}cfa |
---|
36 | echo "no" |
---|
37 | else |
---|
38 | tools="$(readlink -m $ac_confdir/)/../tools/build" |
---|
39 | config=$(basename $(readlink -f .)) |
---|
40 | echo "$tools/distcc_hash $config" |
---|
41 | CFADIR_HASH=$($tools/distcc_hash $config) |
---|
42 | CFACC="distcc ~/.cfadistcc/${CFADIR_HASH}/cfa" |
---|
43 | echo "yes (hash=${CFADIR_HASH})" |
---|
44 | fi |
---|
45 | CFACPP=${DRIVER_DIR}cfa-cpp |
---|
46 | LOCAL_CFACC=${DRIVER_DIR}cfa |
---|
47 | LOCAL_CC1=${DRIVER_DIR}cc1 |
---|
48 | |
---|
49 | AM_CONDITIONAL([ENABLE_DISTCC], [test x$enable_distcc = xyes]) |
---|
50 | |
---|
51 | AC_SUBST(CFACC) |
---|
52 | AC_SUBST(CFACPP) |
---|
53 | AC_SUBST(LOCAL_CFACC) |
---|
54 | AC_SUBST(LOCAL_CC1) |
---|
55 | AC_SUBST(CFADIR_HASH) |
---|
56 | AC_SUBST(CFA_VERSION) |
---|
57 | |
---|
58 | #============================================================================== |
---|
59 | #Handle specific flags |
---|
60 | case $ARCHITECTURE in |
---|
61 | "x64" ) ARCH_FLAGS="-m64";; |
---|
62 | "x86" ) ARCH_FLAGS="-m32";; |
---|
63 | "arm" ) ARCH_FLAGS="";; |
---|
64 | esac |
---|
65 | |
---|
66 | AC_SUBST(ARCH_FLAGS) |
---|
67 | |
---|
68 | case $CONFIGURATION in |
---|
69 | "debug" ) |
---|
70 | CONFIG_CFLAGS="-O0 -g" |
---|
71 | CONFIG_CFAFLAGS="-debug" |
---|
72 | CONFIG_BUILDLIB="yes" |
---|
73 | ;; |
---|
74 | "nodebug" ) |
---|
75 | CONFIG_CFLAGS="-O3 -s" |
---|
76 | CONFIG_CFAFLAGS="-nodebug" |
---|
77 | CONFIG_BUILDLIB="yes" |
---|
78 | ;; |
---|
79 | "nolib" ) |
---|
80 | CONFIG_CFLAGS="-O3 -s" |
---|
81 | CONFIG_CFAFLAGS="-nolib" |
---|
82 | CONFIG_BUILDLIB="no" |
---|
83 | ;; |
---|
84 | "profile" ) |
---|
85 | CONFIG_CFLAGS="-O3 -g -fno-omit-frame-pointer" |
---|
86 | CONFIG_CFAFLAGS="-nodebug" |
---|
87 | CONFIG_BUILDLIB="yes" |
---|
88 | ;; |
---|
89 | *) |
---|
90 | AC_MSG_ERROR('Invalid value $CONFIGURATION for \$CONFIGURATION') |
---|
91 | ;; |
---|
92 | esac |
---|
93 | |
---|
94 | CONFIG_CFAFLAGS="${CONFIG_CFAFLAGS} ${CFAFLAGS}" |
---|
95 | |
---|
96 | AC_SUBST(CONFIG_CFLAGS) |
---|
97 | AC_SUBST(CONFIG_CFAFLAGS) |
---|
98 | AC_SUBST(CONFIG_BUILDLIB) |
---|
99 | |
---|
100 | AM_CONDITIONAL([BUILDLIB], [test "x${CONFIG_BUILDLIB}" = "xyes"]) |
---|
101 | |
---|
102 | #============================================================================== |
---|
103 | #Trasforming cc1 will break compilation |
---|
104 | M4CFA_PROGRAM_NAME |
---|
105 | |
---|
106 | #============================================================================== |
---|
107 | # Installation paths |
---|
108 | M4CFA_PARSE_PREFIX |
---|
109 | |
---|
110 | # Checks for programs. |
---|
111 | LT_INIT |
---|
112 | |
---|
113 | AC_PROG_CXX |
---|
114 | AC_PROG_CC |
---|
115 | AM_PROG_AS |
---|
116 | AC_PROG_LIBTOOL |
---|
117 | AC_PROG_INSTALL |
---|
118 | AC_PROG_MAKE_SET |
---|
119 | |
---|
120 | AC_CONFIG_FILES([ |
---|
121 | Makefile |
---|
122 | src/Makefile |
---|
123 | prelude/Makefile |
---|
124 | ]) |
---|
125 | |
---|
126 | AC_OUTPUT() |
---|
127 | |
---|
128 | # Final text |
---|
129 | AC_MSG_RESULT(Cforall library configuraton completed. Type "make -j 8 install".) |
---|