diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-01-03 19:07:34 +0100 |
---|---|---|
committer | Horst Kronstorfer <horst.kronstorfer@aon.at> | 2011-01-03 19:07:34 +0100 |
commit | e0c067dc3eb12acb1514fd461eb355753a9b0a0d (patch) | |
tree | e7a31b2b9cdcf06ae34ba2d1e65df69b6b6a92a9 /patches | |
parent | 8d821ce49a0b6426787ce10297392e6896e7cd1d (diff) | |
download | crosstool-ng-e0c067dc3eb12acb1514fd461eb355753a9b0a0d.tar.gz crosstool-ng-e0c067dc3eb12acb1514fd461eb355753a9b0a0d.tar.bz2 crosstool-ng-e0c067dc3eb12acb1514fd461eb355753a9b0a0d.zip |
debug/gdb: fix for psim build failure due to -lz in gdb-7.2.
Signed-off-by: "Horst Kronstorfer" <horst.kronstorfer@aon.at>
[yann.morin.1998@anciens.enib.fr: fix space-damage]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'patches')
-rw-r--r-- | patches/gdb/7.2/100-sim-ppc-lz-fix.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/patches/gdb/7.2/100-sim-ppc-lz-fix.patch b/patches/gdb/7.2/100-sim-ppc-lz-fix.patch new file mode 100644 index 00000000..6f08ef82 --- /dev/null +++ b/patches/gdb/7.2/100-sim-ppc-lz-fix.patch @@ -0,0 +1,15 @@ +Fix for psim build failure due to -lz + +See http://sourceware.org/bugzilla/show_bug.cgi?id=12202 + +--- gdb-7.2.orig/sim/ppc/Makefile.in ++++ gdb-7.2/sim/ppc/Makefile.in +@@ -551,7 +551,7 @@ + PACKAGE_OBJ = @sim_pk_obj@ + + +-psim: $(TARGETLIB) main.o $(LIBIBERTY_LIB) $(BFD_LIB) $(LIBS) $(LIBINTL_DEP) ++psim: $(TARGETLIB) main.o $(LIBIBERTY_LIB) $(BFD_LIB) $(LIBINTL_DEP) + $(CC) $(CFLAGS) $(SIM_CFLAGS) $(LDFLAGS) -o psim$(EXEEXT) main.o $(TARGETLIB) $(BFD_LIB) $(LIBINTL) $(LIBIBERTY_LIB) $(LIBS) + + run: psim |