OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 205 to Rev 206
    Reverse comparison

Rev 205 → Rev 206

/openrisc/trunk/gnu-src/gdb-6.8/gdb/Makefile.in
121,7 → 121,7
 
# Where is the BFD library? Typically in ../bfd.
BFD_DIR = ../bfd
BFD = $(BFD_DIR)/libbfd.a -lz
BFD = $(BFD_DIR)/libbfd.a
BFD_SRC = $(srcdir)/$(BFD_DIR)
BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
 
390,7 → 390,7
$(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
-lintl -liberty
CLIBS = $(SIM) $(READLINE) $(OPCODES) $(BFD) $(INTL) $(LIBIBERTY) $(LIBDECNUMBER) \
$(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
$(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ -lz \
$(LIBICONV) $(LIBEXPAT) \
$(LIBIBERTY) $(WIN32LIBS)
CDEPS = $(XM_CDEPS) $(TM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE_DEPS) \
/openrisc/trunk/gnu-src/binutils-2.20.1/gas/config/tc-or32.c
291,6 → 291,7
{
operandp->X_add_number = strtol (s + 1, NULL, 10);
operandp->X_op = O_register;
operandp->X_add_symbol = NULL;// Added to stop a know() in machine_ip()
operandp->X_op_symbol = NULL; // Added to stop a know() in machine_ip()
// erroring out - it appears this wasn't
// getting cleared sometimes. - JB 100718
/openrisc/trunk/gnu-src/binutils-2.20.1/binutils/strings.c
88,8 → 88,14
#define file_open(s,m) fopen(s, m)
#endif
#ifdef HAVE_STAT64
# ifndef __APPLE__
typedef struct stat64 statbuf;
#define file_stat(f,s) stat64(f, s)
# else
// On OS X was getting errors to do with stat64() being deprecated
typedef struct stat statbuf;
#define file_stat(f,s) stat(f, s)
# endif
#else
typedef struct stat statbuf;
#define file_stat(f,s) stat(f, s)

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.