2008年10月23日 星期四

Installing OpenRisc1k on Fedora8

1. The following tools are important for building the OpenRisc SDK:
yum -y install autoconf automake bison flex
2. Change to the top level directory (binutils-2.16.1)

3. Type the following commands:
mkdir b-b
cd b-b
../configure --prefix=/cad/or32-uclinux
make all install
Note: make sure you have created the target directory before installing the package.

2008年10月22日 星期三

Installing Fedora8 on VirtualBox 1.6.6

1. Please install the build and header files for your current Linux kernel.
yum -y install gcc gcc-c++ kernel-devel

Installing SystemC-2.2.0 on Fedora8

1. Change to the top level directory (systemc-2.2.0)

2. Create a temporary directory, e.g.,
mkdir objdir

3. Change to the temporary directory, e.g.,
cd objdir

4. Configure the package for your system, e.g., ( usr/local/systemc-2.2.0 )
../configure --prefix=/usr/local/systemc-2.2.0

Note: make sure you have created the target directory before installing the package.
Do _not_ use /usr/local as a prefix.

5. Compile the package.

For an optimized SystemC library, enter:
gmake

6. Install the package.
gmake install

7. At this point you may wish to verify the installation by testing the example suite.
gmake check

this will compile and run the examples in the subdirectory examples.