[include] add a build preeq check for glibc-static
[openwrt.git] / include / prereq-build.mk
1
2 # Copyright (C) 2006-2012 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9 include $(INCLUDE_DIR)/prereq.mk
10 include $(INCLUDE_DIR)/host.mk
11
12 PKG_NAME:=Build dependency
13
14 define Require/non-root
15         [ "$$(shell whoami)" != "root" ]
16 endef
17 $(eval $(call Require,non-root, \
18         Please do not compile as root. \
19 ))
20
21 # Required for the toolchain
22 define Require/working-make
23         $(MAKE) -v | awk '($$$$1 == "GNU") && ($$$$2 == "Make") && ($$$$3 >= "3.81") { print "ok" }' | grep ok > /dev/null
24 endef
25
26 $(eval $(call Require,working-make, \
27         Please install GNU make v3.81 or later. (This version has bugs) \
28 ))
29
30 define Require/case-sensitive-fs
31         rm -f $(TMP_DIR)/test.*
32         touch $(TMP_DIR)/test.fs
33         [ \! -f $(TMP_DIR)/test.FS ]
34 endef
35
36 $(eval $(call Require,case-sensitive-fs, \
37         OpenWrt can only be built on a case-sensitive filesystem \
38 ))
39
40 define Require/getopt
41         getopt --help 2>&1 | grep long >/dev/null
42 endef
43 $(eval $(call Require,getopt, \
44         Please install GNU getopt \
45 ))
46
47 define Require/fileutils
48         gcp --help || cp --help
49 endef
50 $(eval $(call Require,fileutils, \
51         Please install GNU fileutils \
52 ))
53
54 define Require/working-gcc
55         echo 'int main(int argc, char **argv) { return 0; }' | \
56                 gcc -x c -o $(TMP_DIR)/a.out -
57 endef
58
59 $(eval $(call Require,working-gcc, \
60         Please install the GNU C Compiler (gcc). \
61 ))
62
63 define Require/working-g++
64         echo 'int main(int argc, char **argv) { return 0; }' | \
65                 g++ -x c++ -o $(TMP_DIR)/a.out - -lstdc++ && \
66                 $(TMP_DIR)/a.out
67 endef
68
69 $(eval $(call Require,working-g++, \
70         Please install the GNU C++ Compiler (g++). \
71 ))
72
73 define Require/working-gcc-static
74         echo 'int main(int argc, char **argv) { return 0; }' | \
75                 gcc -x c -static -o $(TMP_DIR)/a.out -
76 endef
77
78 $(eval $(call Require,working-gcc-static, \
79     Please install the static libc development package (glibc-static on CentOS/Fedora/RHEL). \
80 ))
81
82 define Require/ncurses
83         echo 'int main(int argc, char **argv) { initscr(); return 0; }' | \
84                 gcc -include ncurses.h -x c -o $(TMP_DIR)/a.out - -lncurses
85 endef
86
87 $(eval $(call Require,ncurses, \
88         Please install ncurses. (Missing libncurses.so or ncurses.h) \
89 ))
90
91
92 define Require/zlib
93         echo 'int main(int argc, char **argv) { gzdopen(0, "rb"); return 0; }' | \
94                 gcc -include zlib.h -x c -o $(TMP_DIR)/a.out - -lz
95 endef
96
97 $(eval $(call Require,zlib, \
98         Please install zlib. (Missing libz.so or zlib.h) \
99 ))
100
101 $(eval $(call RequireCommand,gawk, \
102         Please install GNU awk. \
103 ))
104
105 $(eval $(call RequireCommand,unzip, \
106         Please install unzip. \
107 ))
108
109 $(eval $(call RequireCommand,bzip2, \
110         Please install bzip2. \
111 ))
112
113 $(eval $(call RequireCommand,patch, \
114         Please install patch. \
115 ))
116
117 $(eval $(call RequireCommand,perl, \
118         Please install perl. \
119 ))
120
121 $(eval $(call RequireCommand,python, \
122         Please install python. \
123 ))
124
125 $(eval $(call RequireCommand,wget, \
126         Please install wget. \
127 ))
128
129 define Require/git
130         git --version | awk '($$$$1 == "git") && ($$$$2 == "version") && ($$$$3 >= "1.6.5") { print "ok" }' | grep ok > /dev/null
131 endef
132
133 $(eval $(call Require,git, \
134         Please install git (git-core) v1.6.5 or later. \
135 ))
136
137 define Require/gnutar
138         $(TAR) --version 2>&1 | grep GNU > /dev/null
139 endef
140
141 $(eval $(call Require,gnutar, \
142         Please install GNU tar. \
143 ))
144
145 $(eval $(call RequireCommand,svn, \
146         Please install the subversion client. \
147 ))
148
149 define Require/gnu-find
150         $(FIND) --version 2>/dev/null
151 endef
152
153 $(eval $(call Require,gnu-find, \
154         Please install GNU find \
155 ))
156
157 define Require/getopt-extended
158         getopt --long - - >/dev/null
159 endef
160
161 $(eval $(call Require,getopt-extended, \
162         Please install an extended getopt version that supports --long \
163 ))