sharc-develop Mailing List for Sharc
Status: Beta
Brought to you by:
kfstark
You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Duncan G. <d....@qu...> - 2007-02-27 05:06:26
|
Hi, I'm attempting to build sharc 1.00b2 from sources (tar.gz version) on a FC4 machine and get the following error: make all-recursive make[1]: Entering directory `/home/duncan/Desktop/sharc-1.00b2' Making all in scripts make[2]: Entering directory `/home/duncan/Desktop/sharc-1.00b2/scripts' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/duncan/Desktop/sharc-1.00b2/scripts' Making all in src make[2]: Entering directory `/home/duncan/Desktop/sharc-1.00b2/src' source='zm.cpp' object='zm.o' libtool=no \ depfile='.deps/zm.Po' tmpdepfile='.deps/zm.TPo' \ depmode=gcc3 /bin/sh ../conftools/depcomp \ g++ -DHAVE_CONFIG_H -I. -I. -I.. -Wall -g -c -o zm.o `test -f 'zm.cpp' || echo './'`zm.cpp /usr/include/locale.h:125: error: expected unqualified-id before ‘throw’ /usr/include/locale.h:125: error: expected initializer before ‘throw’ /usr/lib/gcc/i386-redhat-linux/4.0.2/../../../../include/c ++/4.0.2/clocale:58: error: ‘::setlocale’ has not been declared /usr/include/libintl.h:83: error: expected unqualified-id before ‘throw’ /usr/include/libintl.h:83: error: expected initializer before ‘throw’ /usr/include/libintl.h:87: error: expected unqualified-id before ‘throw’ /usr/include/libintl.h:87: error: expected initializer before ‘throw’ make[2]: *** [zm.o] Error 1 make[2]: Leaving directory `/home/duncan/Desktop/sharc-1.00b2/src' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/duncan/Desktop/sharc-1.00b2' make: *** [all] Error 2 Nothing useful came up on a google search that might indicate the problem. Any ideas where it might be falling over? Thanks, Duncan |
|
From: Keith F. S. <st...@du...> - 2001-07-31 00:24:44
|
Hi Michael, The InitFileOpsStruct loop does not actually download the files. It is setting up a class instance for each of the files on the receiver so you will see a lot of these calls if there are a lot of files on the receiver. The download process will not be done until after these class instances are set up. Try running it again and letting it go all the way through a crash. I don't see the typical crash message in the debug file so it looks like you may have killed it prematurely. The next release will not have --downloadall/--purgeall switches. It will be deprecated by using an "all" keyword to the --download/--purge switches. (ie. --download all instead of --downloadall). --Keith =============================================================== Keith F. Stark Phone: (h)818 343 6226 (w)818 634-0339 Stark Consulting, LLC FAX: (h) (w)818 755-4655 4936 Matula Drive USGS: (v)626-583-6729 (f)626 583-7827 Tarzana, CA 91356 Email: st...@du... =============================================================== On Tue, 24 Jul 2001, Michael Jackson wrote: > Hi Keith: > > I have a direct serial connection to ttyS0 at 9600 baud. I seem to be > able to download specific file indexs. However when I try to download all > files using the following command: > > /home/mikej/src/sharc-0.99.3pre1/src/sharc --port /dev/ttyS0 --baud 9600 > --downloadall --debug 100 --debugfile > /home/mikej/src/sharc-0.99.3pre1/debug/debug.txt > > Things seem to fall appart. From what I can gather from the debug.txt > file (attached) it gets the file information correctly from the FAT but is > unable to download the files in the loop. > > > InitFileOpsStruct: Entering... > InitFileOpsStruct: Exiting > > Let me know what you think. > > Mike > > |