summaryrefslogtreecommitdiff
path: root/configure
blob: e029edd359c61602589e8ce3363e6a20a3e14869 (plain)
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
#! /usr/bin/env perl
# -*- mode: perl -*-

## Toilet Lisp, a Common Lisp subset for the Étoilé runtime.
## Copyright (C) 2008  Matthias Andreas Benkard.
##
## This program is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or (at
## your option) any later version.
##
## This program is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program.  If not, see <http://www.gnu.org/licenses/>.


$CC = $ENV{'CC'} // "gcc";
$CFLAGS = $ENV{'CFLAGS'} // "";
$OBJCFLAGS = $ENV{'OBJCFLAGS'} // $CFLAGS;
$MAKE = $ENV{'MAKE'} // "make";
$XCODEBUILD = $ENV{'XCODEBUILD'} // "xcodebuild";
$LLVM_CONFIG = $ENV{'LLVM_CONFIG'} // "llvm-config";

$llvm = `$LLVM_CONFIG --version`;
if ($llvm =~ /(\d+)\.(\d+).*/) {
    $llvm_maj = $1;
    $llvm_min = $2;
}

`echo '\#include <ffi.h>' | $CC $CFLAGS $OBJCFLAGS -c -o /dev/null -x c - 2>/dev/null`;
if ($? == 0) {
    $ffi_h = 1;
} else {
    `echo '\#include <ffi/ffi.h>' | $CC $CFLAGS $OBJCFLAGS -c -o /dev/null -x c - 2>/dev/null`;
    if ($? == 0) {
        $ffi_ffi_h = 1;
    }
    else {
        $no_ffi = 1;
    }
}

`echo '\#include <histedit.h>' | $CC $CFLAGS $OBJCFLAGS -c -o /dev/null -x c - 2>/dev/null`;
$histedit_h = 1 if ($? == 0);

`$XCODEBUILD -version`;
if ($? == 0) {
    $xcode = 1;
    $build_cmd = "xcodebuild";
} elsif ($ENV{'GNUSTEP_MAKEFILES'} && (`$MAKE --version` =~ /^GNU.*/)) {
    $build_cmd = "$MAKE";
}

$darwin = (`uname -s` =~ "Darwin");
$debian = !$darwin;
if ($darwin) {
    $install = "sudo port install";
} elsif ($debian) {
    $install = "sudo apt-get install";
}

@steps = ();
@optional_steps = ();
$optional_install = $install;

print "Your system lacks the following REQUIRED components:\n";

if ($no_ffi) {
    print " * libffi\n";
    $install = "$install libffi" if $darwin;
    $install = "$install libffi-dev" if $debian;
    $installp = 1;
}

unless ($histedit_h) {
    print " * libedit\n";
    $install = "$install libedit" if $darwin;
    $install = "$install libedit-dev" if $debian;
    $installp = 1;
}

unless ($build_cmd) {
    print " * Either xcodebuild or GNUstep-Make\n";
    if ($debian) {
        $install = "$install gnustep-make libgnustep-base-dev" if $debian;
        $installp = 1;
    } elsif ($darwin) {
        push @steps, (" * Download and install Xcode from: http://developer.apple.com/tools/download/\n");
        push @steps, ("   OR: Install gnustep-make and gnustep-base through MacPorts.\n");
    }
}

print "\n";
print "Your system lacks the following OPTIONAL components:\n";

unless ($llvm_maj && $llvm_min && $llvm_maj >= 2 && $llvm_min >= 4) {
    print " * LLVM >= 2.3\n";
    $optional_install = "$optional_install llvm" if $darwin;
    $optional_install = "$optional_install llvm" if $debian;
    $optionalp = 1;

    push @optional_steps, ("   NOTE: If your distribution's version of LLVM is too old, please download and\n");
    push @optional_steps, ("   install it manually from: http://llvm.org/releases/\n");
}


if ($installp) {
    print "\n";
    print "In order to be able to compile Toilet Lisp, please follow these steps:\n";
    print " * In a shell, type: $install\n" if ($installp);
    print join("", @steps);
    print " * Rerun $0.\n";
}

if ($optionalp) {
    print "\n";
    print "If you want the compiler, please follow these steps:\n";
    print " * In a shell, type: $optional_install\n" if ($optionalp);
    print join("", @optional_steps);
    print " * Rerun $0.\n";
}

if (!$installp) {
    print "\n";
    print "Congratulations!  You can now build Toilet Lisp by following these steps:\n";
    if ($xcode) {
        print " * In a shell, type: $XCODEBUILD";
        print " -configuration \"Debug (no LLVM)\"" if ($optionalp);
        print "\n";
    } else {
        print " * In a shell, type: $MAKE";
        print " USE_LLVM=NO" if ($optionalp);
        print "\n";
    }
}