[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[avr-gcc-list] AVR environment on Solaris 10
From: |
Andreas Höschler |
Subject: |
[avr-gcc-list] AVR environment on Solaris 10 |
Date: |
Tue, 1 Dec 2009 17:06:57 +0100 |
Hi all,
I am trying to setup an AVR development environment on my Solaris 10
machine as follows:
mkdir /usr/local/avr/
mkdir /usr/local/avr/bin
cd /usr/src
gunzip binutils-2.20.tar.gz
tar xvf binutils-2.20.tar
cd binutils-2.20
./configure --target=avr --prefix=/usr/local/avr
--program-prefix="avr-"
make
make install
cd /usr/src
gtar xvf gcc-4.2.3.tar
cd gcc-4.2.3
mkdir objdir
cd objdir
../configure --target=avr --prefix=/usr/local/avr --enable-language=c
--program-prefix="avr-"
make
The make of the gcc build leads to the following error:
make[2]: Entering directory
`/usr/share/src/gcc-4.2.3/objdir/libdecnumber'
source='../../libdecnumber/decNumber.c' object='decNumber.o' libtool=no
gcc -I../../libdecnumber -I. -g -O2 -W -Wall -Wwrite-strings
-Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition
-Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long
-I../../libdecnumber -I. -c ../../libdecnumber/decNumber.c
source='../../libdecnumber/decContext.c' object='decContext.o'
libtool=no gcc -I../../libdecnumber -I. -g -O2 -W -Wall
-Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes
-Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic
-Wno-long-long -I../../libdecnumber -I. -c
../../libdecnumber/decContext.c
source='../../libdecnumber/decUtility.c' object='decUtility.o'
libtool=no gcc -I../../libdecnumber -I. -g -O2 -W -Wall
-Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes
-Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic
-Wno-long-long -I../../libdecnumber -I. -c
../../libdecnumber/decUtility.c
source='../../libdecnumber/decimal32.c' object='decimal32.o' libtool=no
gcc -I../../libdecnumber -I. -g -O2 -W -Wall -Wwrite-strings
-Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition
-Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long
-I../../libdecnumber -I. -c ../../libdecnumber/decimal32.c
source='../../libdecnumber/decimal64.c' object='decimal64.o' libtool=no
gcc -I../../libdecnumber -I. -g -O2 -W -Wall -Wwrite-strings
-Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition
-Wmissing-format-attribute -Wcast-qual -pedantic -Wno-long-long
-I../../libdecnumber -I. -c ../../libdecnumber/decimal64.c
source='../../libdecnumber/decimal128.c' object='decimal128.o'
libtool=no gcc -I../../libdecnumber -I. -g -O2 -W -Wall
-Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes
-Wold-style-definition -Wmissing-format-attribute -Wcast-qual -pedantic
-Wno-long-long -I../../libdecnumber -I. -c
../../libdecnumber/decimal128.c
rm -f libdecnumber.a
ar cru libdecnumber.a decNumber.o decContext.o decUtility.o decimal32.o
decimal64.o decimal128.o
ranlib libdecnumber.a
make[2]: Leaving directory
`/usr/share/src/gcc-4.2.3/objdir/libdecnumber'
make[2]: Entering directory `/usr/share/src/gcc-4.2.3/objdir/gcc'
make[2]: *** No rule to make target `all'. Stop.
make[2]: Leaving directory `/usr/share/src/gcc-4.2.3/objdir/gcc'
make[1]: *** [all-gcc] Error 2
make[1]: Leaving directory `/usr/share/src/gcc-4.2.3/objdir'
make: *** [all] Error 2
I am not sure what to do with that. Any idea what went wrong here?
Hints are greatly appreciated!
Thanks,
Andreas
- [avr-gcc-list] AVR environment on Solaris 10,
Andreas Höschler <=
- RE: [avr-gcc-list] AVR environment on Solaris 10, Weddington, Eric, 2009/12/01
- Re: [avr-gcc-list] AVR environment on Solaris 10, Andreas Höschler, 2009/12/01
- Re: [avr-gcc-list] AVR environment on Solaris 10, Jonathan Blanchard, 2009/12/01
- Re: [avr-gcc-list] AVR environment on Solaris 10, Andreas Höschler, 2009/12/01
- RE: [avr-gcc-list] AVR environment on Solaris 10, Weddington, Eric, 2009/12/01
- Re: [avr-gcc-list] AVR environment on Solaris 10, Andreas Höschler, 2009/12/01
- RE: [avr-gcc-list] AVR environment on Solaris 10, Weddington, Eric, 2009/12/01
Re: [avr-gcc-list] AVR environment on Solaris 10, Ruud Vlaming, 2009/12/01