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
|
require 'formula'
class CrosstoolNg < Formula
homepage 'http://crosstool-ng.org'
url 'http://crosstool-ng.org/download/crosstool-ng/crosstool-ng-1.18.0.tar.bz2'
sha1 'ea9aa0521683486efb02596d9dfe00f66e18fdc3'
depends_on :automake
depends_on 'coreutils' => :build
depends_on 'wget'
depends_on 'gnu-sed'
depends_on 'gawk'
depends_on 'binutils'
env :std
def patches
# Fixes clang offsetof compatability. Took better patch from #14547
DATA
end
def install
system "./configure", "--prefix=#{prefix}",
"--exec-prefix=#{prefix}",
"--with-objcopy=gobjcopy",
"--with-objdump=gobjdump",
"--with-readelf=greadelf",
"--with-libtool=glibtool",
"--with-libtoolize=glibtoolize",
"--with-install=ginstall",
"CFLAGS=-std=gnu89"
# Must be done in two steps
system "make"
system "make install"
end
def test
system "#{bin}/ct-ng version"
end
def caveats; <<-EOS.undent
If building a cross compiler your may expirience the following error:
error: elf.h: No such file or directory
To fix it, perform the following:
curl https://raw.github.com/gist/3769372/98e0a084470d2d6be7b4b61551ef00d44c682b4a/elf.h > elf.h
cp -p elf.h /usr/local/include/
EOS
end
end
__END__
diff --git a/kconfig/zconf.gperf b/kconfig/zconf.gperf
index c9e690e..21e79e4 100644
--- a/kconfig/zconf.gperf
+++ b/kconfig/zconf.gperf
@@ -7,6 +7,10 @@
%pic
%struct-type
+%{
+#include <stddef.h>
+%}
+
struct kconf_id;
static struct kconf_id *kconf_id_lookup(register const char *str, register unsigned int len);
|