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

Subversion Repositories openrisc

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /openrisc/trunk
    from Rev 493 to Rev 494
    Reverse comparison

Rev 493 → Rev 494

/or1ksim/configure.ac
28,7 → 28,7
 
# Use a full version number (x.y.z, possibly with "rcn" as a suffix) when
# preparing a release, otherwise use a the date version (yyyy-mm-dd).
AC_INIT([or1ksim], [2011-01-27], [openrisc@opencores.org])
AC_INIT([or1ksim], [2011-02-24], [openrisc@opencores.org])
AC_CONFIG_MACRO_DIR([m4])
 
# Generically use extensions such as _GNU_SOURCE if available.
/or1ksim/doc/version.texi
1,4 → 1,4
@set UPDATED 5 January 2011
@set UPDATED 27 January 2011
@set UPDATED-MONTH January 2011
@set EDITION 2011-01-05
@set VERSION 2011-01-05
@set EDITION 2011-01-27
@set VERSION 2011-01-27
/or1ksim/sim-cmd.c
3,8 → 3,10
Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
 
Copyright (C) 2008 Embecosm Limited
Copyright (C) 2011 Giuseppe Scrivano <gscrivano@gnu.org>
 
Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
contributor Giuseppe Scrivano <gscrivano@gnu.org>
 
This file is part of Or1ksim, the OpenRISC 1000 Architectural Simulator.
 
691,6 → 693,11
{
#ifdef HAVE_LIBREADLINE
cur_arg = readline ("(sim) ");
 
if (!cur_arg)
{
sim_done ();
}
#else
PRINTF ("(sim) ");
 
/or1ksim/ChangeLog
1,3 → 1,13
2011-02-24 Jeremy Bennett <jeremy.bennett@embecosm.com>
 
* configure: Regenerated.
* configure.ac: Updated version.
 
2011-02-22 Giuseppe Scrivano <gscrivano@gnu.org>
 
* sim-cmd.c (handle_sim_command) [HAVE_LIBREADLINE]: Exit
immediately if no text is read.
 
2011-01-27 Jeremy Bennett <jeremy.bennett@embecosm.com>
 
* configure: Regenerated.
/or1ksim/testsuite/test-code-or1k/configure
1,6 → 1,6
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.65 for or1ksim-testsuite 2011-01-27.
# Generated by GNU Autoconf 2.65 for or1ksim-testsuite 2011-02-24.
#
# Report bugs to <openrisc@opencores.org>.
#
701,8 → 701,8
# Identity of this package.
PACKAGE_NAME='or1ksim-testsuite'
PACKAGE_TARNAME='or1ksim-testsuite'
PACKAGE_VERSION='2011-01-27'
PACKAGE_STRING='or1ksim-testsuite 2011-01-27'
PACKAGE_VERSION='2011-02-24'
PACKAGE_STRING='or1ksim-testsuite 2011-02-24'
PACKAGE_BUGREPORT='openrisc@opencores.org'
PACKAGE_URL=''
 
1424,7 → 1424,7
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures or1ksim-testsuite 2011-01-27 to adapt to many kinds of systems.
\`configure' configures or1ksim-testsuite 2011-02-24 to adapt to many kinds of systems.
 
Usage: $0 [OPTION]... [VAR=VALUE]...
 
1495,7 → 1495,7
 
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of or1ksim-testsuite 2011-01-27:";;
short | recursive ) echo "Configuration of or1ksim-testsuite 2011-02-24:";;
esac
cat <<\_ACEOF
 
1600,7 → 1600,7
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
or1ksim-testsuite configure 2011-01-27
or1ksim-testsuite configure 2011-02-24
generated by GNU Autoconf 2.65
 
Copyright (C) 2009 Free Software Foundation, Inc.
2025,7 → 2025,7
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
 
It was created by or1ksim-testsuite $as_me 2011-01-27, which was
It was created by or1ksim-testsuite $as_me 2011-02-24, which was
generated by GNU Autoconf 2.65. Invocation command line was
 
$ $0 $@
10315,7 → 10315,7
 
# Define the identity of the package.
PACKAGE='or1ksim-testsuite'
VERSION='2011-01-27'
VERSION='2011-02-24'
 
 
cat >>confdefs.h <<_ACEOF
11742,7 → 11742,7
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by or1ksim-testsuite $as_me 2011-01-27, which was
This file was extended by or1ksim-testsuite $as_me 2011-02-24, which was
generated by GNU Autoconf 2.65. Invocation command line was
 
CONFIG_FILES = $CONFIG_FILES
11808,7 → 11808,7
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
or1ksim-testsuite config.status 2011-01-27
or1ksim-testsuite config.status 2011-02-24
configured by $0, generated by GNU Autoconf 2.65,
with options \\"\$ac_cs_config\\"
 
/or1ksim/testsuite/test-code-or1k/configure.ac
24,7 → 24,7
# directory. This uses a different tool chain, so has its own configuration
# script. Process this file with autoconf to produce a configure script.
 
AC_INIT([or1ksim-testsuite], [2011-01-27], [openrisc@opencores.org])
AC_INIT([or1ksim-testsuite], [2011-02-24], [openrisc@opencores.org])
AC_CONFIG_MACRO_DIR([m4])
 
AC_PROG_LIBTOOL
/or1ksim/testsuite/test-code-or1k/ChangeLog
1,3 → 1,8
2011-02-24 Jeremy Bennett <jeremy.bennett@embecosm.com>
 
* configure: Regenerated.
* configure.ac: Updated version.
 
2011-01-27 Jeremy Bennett <jeremy.bennett@embecosm.com>
 
* configure: Regenerated.
/or1ksim/configure
1,7 → 1,7
#! /bin/sh
# From configure.ac Id: configure.ac 1374 2011-01-05 09:38:49Z jeremy using automake version AC_ACVERSION.
# From configure.ac Id: configure.ac 1406 2011-01-27 17:17:06Z jeremy using automake version AC_ACVERSION.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.65 for or1ksim 2011-01-27.
# Generated by GNU Autoconf 2.65 for or1ksim 2011-02-24.
#
# Report bugs to <openrisc@opencores.org>.
#
722,8 → 722,8
# Identity of this package.
PACKAGE_NAME='or1ksim'
PACKAGE_TARNAME='or1ksim'
PACKAGE_VERSION='2011-01-27'
PACKAGE_STRING='or1ksim 2011-01-27'
PACKAGE_VERSION='2011-02-24'
PACKAGE_STRING='or1ksim 2011-02-24'
PACKAGE_BUGREPORT='openrisc@opencores.org'
PACKAGE_URL=''
 
1476,7 → 1476,7
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures or1ksim 2011-01-27 to adapt to many kinds of systems.
\`configure' configures or1ksim 2011-02-24 to adapt to many kinds of systems.
 
Usage: $0 [OPTION]... [VAR=VALUE]...
 
1547,7 → 1547,7
 
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of or1ksim 2011-01-27:";;
short | recursive ) echo "Configuration of or1ksim 2011-02-24:";;
esac
cat <<\_ACEOF
 
1654,7 → 1654,7
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
or1ksim configure 2011-01-27
or1ksim configure 2011-02-24
generated by GNU Autoconf 2.65
 
Copyright (C) 2009 Free Software Foundation, Inc.
2316,7 → 2316,7
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
 
It was created by or1ksim $as_me 2011-01-27, which was
It was created by or1ksim $as_me 2011-02-24, which was
generated by GNU Autoconf 2.65. Invocation command line was
 
$ $0 $@
10717,7 → 10717,7
 
# Define the identity of the package.
PACKAGE='or1ksim'
VERSION='2011-01-27'
VERSION='2011-02-24'
 
 
cat >>confdefs.h <<_ACEOF
13736,7 → 13736,7
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by or1ksim $as_me 2011-01-27, which was
This file was extended by or1ksim $as_me 2011-02-24, which was
generated by GNU Autoconf 2.65. Invocation command line was
 
CONFIG_FILES = $CONFIG_FILES
13802,7 → 13802,7
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
or1ksim config.status 2011-01-27
or1ksim config.status 2011-02-24
configured by $0, generated by GNU Autoconf 2.65,
with options \\"\$ac_cs_config\\"
 

powered by: WebSVN 2.1.0

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