diff options
author | Tudor Florea <tudor.florea@enea.com> | 2015-10-08 22:46:13 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2015-10-08 22:46:13 +0200 |
commit | 8d89651ef729e560ad96dcfc002fcde6ff7f923b (patch) | |
tree | eb5be01c25f735d12fe9881ee6327c9b7e8bbe39 /meta-linaro/recipes-extra/dwarfutils/dwarfdump/fix-dump.patch | |
download | meta-linaro-dizzy-enea.tar.gz |
initial commit for Enea Linux 5.0 armdizzy-enea
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-linaro/recipes-extra/dwarfutils/dwarfdump/fix-dump.patch')
-rw-r--r-- | meta-linaro/recipes-extra/dwarfutils/dwarfdump/fix-dump.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-linaro/recipes-extra/dwarfutils/dwarfdump/fix-dump.patch b/meta-linaro/recipes-extra/dwarfutils/dwarfdump/fix-dump.patch new file mode 100644 index 0000000..45ca7a8 --- /dev/null +++ b/meta-linaro/recipes-extra/dwarfutils/dwarfdump/fix-dump.patch | |||
@@ -0,0 +1,25 @@ | |||
1 | --- | ||
2 | Makefile.in | 4 ++++ | ||
3 | 1 file changed, 4 insertions(+) | ||
4 | |||
5 | --- dwarfdump.orig/Makefile.in | ||
6 | +++ dwarfdump/Makefile.in | ||
7 | @@ -104,14 +104,18 @@ naming.o: $(srcdir)/naming.c $(srcdir)/ | ||
8 | # in the tree builds. | ||
9 | trivial_naming.o: $(srcdir)/naming.c | ||
10 | $(CC) $(CFLAGS) -DTRIVIAL_NAMING -c $(srcdir)/naming.c -o trivial_naming.o | ||
11 | |||
12 | tag_tree_build: $(srcdir)/tag_tree.c $(DIRINC)/dwarf.h $(HEADERS) tag_common.o makename.o common.o trivial_naming.o | ||
13 | +ifeq ($(NATIVE),1) | ||
14 | $(CC) $(CFLAGS) $(srcdir)/tag_tree.c tag_common.o common.o makename.o trivial_naming.o $(LDFLAGS) -o tag_tree_build | ||
15 | +endif | ||
16 | |||
17 | tag_attr_build: $(srcdir)/tag_attr.c $(DIRINC)/dwarf.h $(HEADERS) tag_common.o makename.o common.o trivial_naming.o | ||
18 | +ifeq ($(NATIVE),1) | ||
19 | $(CC) $(CFLAGS) $(srcdir)/tag_attr.c tag_common.o common.o makename.o trivial_naming.o $(LDFLAGS) -o tag_attr_build | ||
20 | +endif | ||
21 | |||
22 | tmp-tt-table.c tmp-tt-ext-table.c: $(srcdir)/tag_tree_ext.list $(srcdir)/tag_tree.list tag_tree_build | ||
23 | # gcc -E tag_tree.list does not work, so use a .c name | ||
24 | -rm -f tmp-t1.c | ||
25 | cp $(srcdir)/tag_tree.list tmp-t1.c | ||