oklibrary-developers Mailing List for OKlibrary
Research platform for SAT and other hard problems
Status: Pre-Alpha
Brought to you by:
xgateruq9
You can subscribe to this list here.
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(9) |
Nov
|
Dec
|
|---|
|
From: Oliver K. <O.K...@sw...> - 2009-10-27 17:49:36
|
On Mon, Oct 26, 2009 at 05:38:09PM -0400, Matthew Henderson wrote: > Hi, > >> I really just want to install OKlibrary's Maxima at present. Do I really > >> need to install GCC first? With 'oklib allmaxima' it seems that the > >> buildsystem first tries to install GCC. > >> > > > > > > > > not at all! I guess you mean "oklib all" ? > > As you can see, looking into the makefile > > OKplatform/OKsystem/OKlib/Buildsystem/ExternalSources/Makefile > > "all" first creates all compilers, but as you can see in > > OKplatform/OKsystem/OKlib/Buildsystem/ExternalSources/SpecialBuilds/maxima.mak > > "allmaxima" means ecl gnuplot maxima. > > > > > > I really did mean 'oklib allmaxima' but I was slightly mistaken about > the nature of the problem. The buildsystem doesn't try to install GCC, > like I said. Rather, the installation of ECL expects GCC to be already > installed. So, it seems that GCC really should be a dependency of ECL? > Yes, I forgot about that, so you need first to build Gmp and then Ecl, in both cases setting CC and CXX to your system C and C++ compiler. I think this should work. Better to remove old builds and installation in ExternalSources. (Have a look into Buildsystem/ExternalSources/SpecialBuilds, for example ecl.mak, and it should be easy to figure out how the build proceeds.) By the way, the buildsystem for external sources yet does't know about dependencies between different external sources, so this can only by handled by the fixed installation order. Oliver > matthew@artin:~/OKplatform/ExternalSources$ oklib allmaxima > make > --makefile=/home/matthew/OKplatform/.oklib/Configuration/../ExternalSources/Makefile > --directory=/home/matthew/OKplatform/ExternalSources > OKplatform=/home/matthew/OKplatform allmaxima > oklib: /home/matthew/OKplatform/.oklib/log/ExternalSources contains all > output of the build. > > make: Entering directory `/home/matthew/OKplatform/ExternalSources' > mkdir -p /home/matthew/OKplatform/ExternalSources/Installations/Ecl > mkdir -p /home/matthew/OKplatform/ExternalSources/builds/Ecl > mkdir -p /home/matthew/OKplatform/ExternalSources/doc/Ecl > mkdir -p /home/matthew/OKplatform/ExternalSources/doc/Ecl/9.10.2 > if [ -f > /home/matthew/OKplatform/ExternalSources/sources/Ecl/ecl-9.10.2.tar.gz > ]; then tar --extract > --directory=/home/matthew/OKplatform/ExternalSources/builds/Ecl > --file=/home/matthew/OKplatform/ExternalSources/sources/Ecl/ecl-9.10.2.tar.gz > --ungzip; elif [ -f > /home/matthew/OKplatform/ExternalSources/sources/Ecl/ecl-9.10.2.tgz ]; > then tar --extract > --directory=/home/matthew/OKplatform/ExternalSources/builds/Ecl > --file=/home/matthew/OKplatform/ExternalSources/sources/Ecl/ecl-9.10.2.tgz > --ungzip; elif [ -f > /home/matthew/OKplatform/ExternalSources/sources/Ecl/ecl-9.10.2.tar.bz2 > ]; then tar --extract > --directory=/home/matthew/OKplatform/ExternalSources/builds/Ecl > --file=/home/matthew/OKplatform/ExternalSources/sources/Ecl/ecl-9.10.2.tar.bz2 > --bzip2; else exit 1; fi; > cd /home/matthew/OKplatform/ExternalSources/builds/Ecl/ecl-9.10.2; if [ > $? != 0 ]; then exit 1; fi; \ > > LDFLAGS=-Wl,-rpath=/home/matthew/OKplatform/ExternalSources/Installations/Ecl/9.10.2/lib > ./configure > --prefix=/home/matthew/OKplatform/ExternalSources/Installations/Ecl/9.10.2 > --with-gmp-prefix=/home/matthew/OKplatform/ExternalSources/Installations/Gmp/4.1.2/4.3.1 > CC=/home/matthew/OKplatform/ExternalSources/Installations/Gcc/4.1.2/bin/gcc > CXX=/home/matthew/OKplatform/ExternalSources/Installations/Gcc/4.1.2/bin/g++; > if [ $? != 0 ]; then exit 1; fi; \ > make; if [ $? != 0 ]; then exit 1; fi; \ > make install; if [ $? != 0 ]; then exit 1; fi; > Creating directory `build' > Switching to directory `build' to continue configuration. > checking build system type... x86_64-unknown-linux-gnu > checking host system type... x86_64-unknown-linux-gnu > checking for gcc... > /home/matthew/OKplatform/ExternalSources/Installations/Gcc/4.1.2/bin/gcc > checking for C compiler default output file name... > configure: error: in > `/home/matthew/OKplatform/ExternalSources/builds/Ecl/ecl-9.10.2/build': > configure: error: C compiler cannot create executables > See `config.log' for more details. > make: *** [ecl_core] Error 1 > make: Leaving directory `/home/matthew/OKplatform/ExternalSources' > ERROR[oklib]: The external sources build-process returned a value > different from zero: 2 > > > Regards, > Matthew > > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Oklibrary-developers mailing list > Okl...@li... > https://lists.sourceforge.net/lists/listinfo/oklibrary-developers -- Dr. Oliver Kullmann Computer Science Department Swansea University Faraday Building, Singleton Park Swansea SA2 8PP, UK http://cs.swan.ac.uk/~csoliver/ |
|
From: Matthew H. <Mat...@be...> - 2009-10-26 21:37:06
|
Hi,
>> I really just want to install OKlibrary's Maxima at present. Do I really
>> need to install GCC first? With 'oklib allmaxima' it seems that the
>> buildsystem first tries to install GCC.
>>
>
>
> not at all! I guess you mean "oklib all" ?
> As you can see, looking into the makefile
> OKplatform/OKsystem/OKlib/Buildsystem/ExternalSources/Makefile
> "all" first creates all compilers, but as you can see in
> OKplatform/OKsystem/OKlib/Buildsystem/ExternalSources/SpecialBuilds/maxima.mak
> "allmaxima" means ecl gnuplot maxima.
>
>
I really did mean 'oklib allmaxima' but I was slightly mistaken about
the nature of the problem. The buildsystem doesn't try to install GCC,
like I said. Rather, the installation of ECL expects GCC to be already
installed. So, it seems that GCC really should be a dependency of ECL?
matthew@artin:~/OKplatform/ExternalSources$ oklib allmaxima
make
--makefile=/home/matthew/OKplatform/.oklib/Configuration/../ExternalSources/Makefile
--directory=/home/matthew/OKplatform/ExternalSources
OKplatform=/home/matthew/OKplatform allmaxima
oklib: /home/matthew/OKplatform/.oklib/log/ExternalSources contains all
output of the build.
make: Entering directory `/home/matthew/OKplatform/ExternalSources'
mkdir -p /home/matthew/OKplatform/ExternalSources/Installations/Ecl
mkdir -p /home/matthew/OKplatform/ExternalSources/builds/Ecl
mkdir -p /home/matthew/OKplatform/ExternalSources/doc/Ecl
mkdir -p /home/matthew/OKplatform/ExternalSources/doc/Ecl/9.10.2
if [ -f
/home/matthew/OKplatform/ExternalSources/sources/Ecl/ecl-9.10.2.tar.gz
]; then tar --extract
--directory=/home/matthew/OKplatform/ExternalSources/builds/Ecl
--file=/home/matthew/OKplatform/ExternalSources/sources/Ecl/ecl-9.10.2.tar.gz
--ungzip; elif [ -f
/home/matthew/OKplatform/ExternalSources/sources/Ecl/ecl-9.10.2.tgz ];
then tar --extract
--directory=/home/matthew/OKplatform/ExternalSources/builds/Ecl
--file=/home/matthew/OKplatform/ExternalSources/sources/Ecl/ecl-9.10.2.tgz
--ungzip; elif [ -f
/home/matthew/OKplatform/ExternalSources/sources/Ecl/ecl-9.10.2.tar.bz2
]; then tar --extract
--directory=/home/matthew/OKplatform/ExternalSources/builds/Ecl
--file=/home/matthew/OKplatform/ExternalSources/sources/Ecl/ecl-9.10.2.tar.bz2
--bzip2; else exit 1; fi;
cd /home/matthew/OKplatform/ExternalSources/builds/Ecl/ecl-9.10.2; if [
$? != 0 ]; then exit 1; fi; \
LDFLAGS=-Wl,-rpath=/home/matthew/OKplatform/ExternalSources/Installations/Ecl/9.10.2/lib
./configure
--prefix=/home/matthew/OKplatform/ExternalSources/Installations/Ecl/9.10.2
--with-gmp-prefix=/home/matthew/OKplatform/ExternalSources/Installations/Gmp/4.1.2/4.3.1
CC=/home/matthew/OKplatform/ExternalSources/Installations/Gcc/4.1.2/bin/gcc
CXX=/home/matthew/OKplatform/ExternalSources/Installations/Gcc/4.1.2/bin/g++;
if [ $? != 0 ]; then exit 1; fi; \
make; if [ $? != 0 ]; then exit 1; fi; \
make install; if [ $? != 0 ]; then exit 1; fi;
Creating directory `build'
Switching to directory `build' to continue configuration.
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for gcc...
/home/matthew/OKplatform/ExternalSources/Installations/Gcc/4.1.2/bin/gcc
checking for C compiler default output file name...
configure: error: in
`/home/matthew/OKplatform/ExternalSources/builds/Ecl/ecl-9.10.2/build':
configure: error: C compiler cannot create executables
See `config.log' for more details.
make: *** [ecl_core] Error 1
make: Leaving directory `/home/matthew/OKplatform/ExternalSources'
ERROR[oklib]: The external sources build-process returned a value
different from zero: 2
Regards,
Matthew
|
|
From: Oliver K. <O.K...@sw...> - 2009-10-23 18:45:46
|
On Fri, Oct 23, 2009 at 09:45:46AM -0400, Matthew Henderson wrote: > Hi, > > Thanks for the response. > > Are you using the OKlibrary build mechanism? > > > Yes. The output in my original message came from issuing 'oklib gcc' in > ExternalSources. > > The 'oklib' command on my machine points to the correct binary: > > matthew@artin:~/OKplatform/ExternalSources$ which oklib > /home/matthew/OKplatform/bin/oklib > > > And if, which package? > > > The latest 'full' package: > > OKlibrary-0.2.1.2_00120-full.tar.bz2 > > > Such problems should be solved by our buildsystem, and > > the (corrected!) gcc-4.1.2-package which comes with > > the package. > > > I presume that the gcc-4.1.2 package which comes with the full OKlibrary > package is the corrected one? > yes. > I really just want to install OKlibrary's Maxima at present. Do I really > need to install GCC first? With 'oklib allmaxima' it seems that the > buildsystem first tries to install GCC. not at all! I guess you mean "oklib all" ? As you can see, looking into the makefile OKplatform/OKsystem/OKlib/Buildsystem/ExternalSources/Makefile "all" first creates all compilers, but as you can see in OKplatform/OKsystem/OKlib/Buildsystem/ExternalSources/SpecialBuilds/maxima.mak "allmaxima" means ecl gnuplot maxima. > Is there some method to ask the > buildsystem to use my system-wide installation of GCC? > There is a good chance that this wouldn't work; so where gcc is needed, there we rely on the local installation. Oliver > Thanks, > Matthew > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Oklibrary-developers mailing list > Okl...@li... > https://lists.sourceforge.net/lists/listinfo/oklibrary-developers -- Dr. Oliver Kullmann Computer Science Department Swansea University Faraday Building, Singleton Park Swansea SA2 8PP, UK http://cs.swan.ac.uk/~csoliver/ |
|
From: Matthew H. <Mat...@be...> - 2009-10-23 13:45:01
|
Hi, Thanks for the response. > Are you using the OKlibrary build mechanism? > Yes. The output in my original message came from issuing 'oklib gcc' in ExternalSources. The 'oklib' command on my machine points to the correct binary: matthew@artin:~/OKplatform/ExternalSources$ which oklib /home/matthew/OKplatform/bin/oklib > And if, which package? > The latest 'full' package: OKlibrary-0.2.1.2_00120-full.tar.bz2 > Such problems should be solved by our buildsystem, and > the (corrected!) gcc-4.1.2-package which comes with > the package. > I presume that the gcc-4.1.2 package which comes with the full OKlibrary package is the corrected one? I really just want to install OKlibrary's Maxima at present. Do I really need to install GCC first? With 'oklib allmaxima' it seems that the buildsystem first tries to install GCC. Is there some method to ask the buildsystem to use my system-wide installation of GCC? Thanks, Matthew |
|
From: Oliver K. <O.K...@sw...> - 2009-10-22 21:34:19
|
Are you using the OKlibrary build mechanism? And if, which package? Such problems should be solved by our buildsystem, and the (corrected!) gcc-4.1.2-package which comes with the package. Oliver On Thu, Oct 22, 2009 at 02:02:40PM -0400, Matthew Henderson wrote: > Hi, > > Does anybody recognize this error message: > > /home/matthew/OKplatform/ExternalSources/builds/Gcc/gcc-4.1.2_build/./gcc/xgcc > -B/home/matthew/OKplatform/ExternalSources/builds/Gcc/gcc-4.1.2_build/./gcc/ > -B/home/matthew/OKplatform/ExternalSources/Installations/Gcc/4.1.2/x86_64-unknown-linux-gnu/bin/ > -B/home/matthew/OKplatform/ExternalSources/Installations/Gcc/4.1.2/x86_64-unknown-linux-gnu/lib/ > -isystem > /home/matthew/OKplatform/ExternalSources/Installations/Gcc/4.1.2/x86_64-unknown-linux-gnu/include > -isystem > /home/matthew/OKplatform/ExternalSources/Installations/Gcc/4.1.2/x86_64-unknown-linux-gnu/sys-include > -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings > -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition > -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 > -D__GCC_FLOAT_NOT_NEEDED -shared -nodefaultlibs > -Wl,--soname=libgcc_s.so.1 -Wl,--version-script=libgcc/32/libgcc.map -o > 32/libgcc_s.so.1.tmp -m32 libgcc/32/_muldi3_s.o libgcc/32/_negdi2_s.o > libgcc/32/_lshrdi3_s.o libgcc/32/_ashldi3_s.o libgcc/32/_ashrdi3_s.o > libgcc/32/_cmpdi2_s.o libgcc/32/_ucmpdi2_s.o libgcc/32/_clear_cache_s.o > libgcc/32/_enable_execute_stack_s.o libgcc/32/_trampoline_s.o > libgcc/32/__main_s.o libgcc/32/_absvsi2_s.o libgcc/32/_absvdi2_s.o > libgcc/32/_addvsi3_s.o libgcc/32/_addvdi3_s.o libgcc/32/_subvsi3_s.o > libgcc/32/_subvdi3_s.o libgcc/32/_mulvsi3_s.o libgcc/32/_mulvdi3_s.o > libgcc/32/_negvsi2_s.o libgcc/32/_negvdi2_s.o libgcc/32/_ctors_s.o > libgcc/32/_ffssi2_s.o libgcc/32/_ffsdi2_s.o libgcc/32/_clz_s.o > libgcc/32/_clzsi2_s.o libgcc/32/_clzdi2_s.o libgcc/32/_ctzsi2_s.o > libgcc/32/_ctzdi2_s.o libgcc/32/_popcount_tab_s.o > libgcc/32/_popcountsi2_s.o libgcc/32/_popcountdi2_s.o > libgcc/32/_paritysi2_s.o libgcc/32/_paritydi2_s.o libgcc/32/_powisf2_s.o > libgcc/32/_powidf2_s.o libgcc/32/_powixf2_s.o libgcc/32/_powitf2_s.o > libgcc/32/_mulsc3_s.o libgcc/32/_muldc3_s.o libgcc/32/_mulxc3_s.o > libgcc/32/_multc3_s.o libgcc/32/_divsc3_s.o libgcc/32/_divdc3_s.o > libgcc/32/_divxc3_s.o libgcc/32/_divtc3_s.o libgcc/32/_fixunssfsi_s.o > libgcc/32/_fixunsdfsi_s.o libgcc/32/_fixunsxfsi_s.o > libgcc/32/_fixsfdi_s.o libgcc/32/_fixunssfdi_s.o > libgcc/32/_floatdisf_s.o libgcc/32/_fixdfdi_s.o > libgcc/32/_fixunsdfdi_s.o libgcc/32/_floatdidf_s.o > libgcc/32/_fixxfdi_s.o libgcc/32/_fixunsxfdi_s.o > libgcc/32/_floatdixf_s.o libgcc/32/_fixtfdi_s.o > libgcc/32/_fixunstfdi_s.o libgcc/32/_floatditf_s.o libgcc/32/_divdi3_s.o > libgcc/32/_moddi3_s.o libgcc/32/_udivdi3_s.o libgcc/32/_umoddi3_s.o > libgcc/32/_udiv_w_sdiv_s.o libgcc/32/_udivmoddi4_s.o > libgcc/32/unwind-dw2_s.o libgcc/32/unwind-dw2-fde-glibc_s.o > libgcc/32/unwind-sjlj_s.o libgcc/32/gthr-gnat_s.o libgcc/32/unwind-c_s.o > -lc && rm -f 32/libgcc_s.so && if [ -f 32/libgcc_s.so.1 ]; then mv -f > 32/libgcc_s.so.1 32/libgcc_s.so.1.backup; else true; fi && mv > 32/libgcc_s.so.1.tmp 32/libgcc_s.so.1 && ln -s libgcc_s.so.1 32/libgcc_s.so > /usr/bin/ld: skipping incompatible /usr/lib/../lib/libc.so when > searching for -lc > /usr/bin/ld: skipping incompatible /usr/lib/../lib/libc.a when searching > for -lc > /usr/bin/ld: skipping incompatible /usr/bin/../lib/libc.so when > searching for -lc > /usr/bin/ld: skipping incompatible /usr/bin/../lib/libc.a when searching > for -lc > /usr/bin/ld: i386:x86-64 architecture of input file > `/usr/lib/../lib/crti.o' is incompatible with i386 output > /usr/bin/ld: i386:x86-64 architecture of input file > `/usr/lib/../lib/crtn.o' is incompatible with i386 output > collect2: ld returned 1 exit status > make[4]: *** [32/libgcc_s.so] Error 1 > make[4]: Leaving directory > `/home/matthew/OKplatform/ExternalSources/builds/Gcc/gcc-4.1.2_build/gcc' > make[3]: *** [stmp-multilib] Error 2 > make[3]: Leaving directory > `/home/matthew/OKplatform/ExternalSources/builds/Gcc/gcc-4.1.2_build/gcc' > make[2]: *** [all-gcc] Error 2 > make[2]: Leaving directory > `/home/matthew/OKplatform/ExternalSources/builds/Gcc/gcc-4.1.2_build' > make[1]: *** [all] Error 2 > make[1]: Leaving directory > `/home/matthew/OKplatform/ExternalSources/builds/Gcc/gcc-4.1.2_build' > make: *** [gcc] Error 1 > make: Leaving directory `/home/matthew/OKplatform/ExternalSources' > ERROR[oklib]: The external sources build-process returned a value > different from zero: 2 > > ??? > > I am trying to build a local copy of GCC on a 64-bit machine. I believe > that I installed the correct 32-bit glibc libraries required. I am using > Ubuntu 8.10 and installed the 'libc6-dev-i386' package. > > Regards, > Matthew Henderson > > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Oklibrary-developers mailing list > Okl...@li... > https://lists.sourceforge.net/lists/listinfo/oklibrary-developers -- Dr. Oliver Kullmann Computer Science Department Swansea University Faraday Building, Singleton Park Swansea SA2 8PP, UK http://cs.swan.ac.uk/~csoliver/ |
|
From: Matthew H. <Mat...@be...> - 2009-10-22 18:01:55
|
Hi, Does anybody recognize this error message: /home/matthew/OKplatform/ExternalSources/builds/Gcc/gcc-4.1.2_build/./gcc/xgcc -B/home/matthew/OKplatform/ExternalSources/builds/Gcc/gcc-4.1.2_build/./gcc/ -B/home/matthew/OKplatform/ExternalSources/Installations/Gcc/4.1.2/x86_64-unknown-linux-gnu/bin/ -B/home/matthew/OKplatform/ExternalSources/Installations/Gcc/4.1.2/x86_64-unknown-linux-gnu/lib/ -isystem /home/matthew/OKplatform/ExternalSources/Installations/Gcc/4.1.2/x86_64-unknown-linux-gnu/include -isystem /home/matthew/OKplatform/ExternalSources/Installations/Gcc/4.1.2/x86_64-unknown-linux-gnu/sys-include -O2 -O2 -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -shared -nodefaultlibs -Wl,--soname=libgcc_s.so.1 -Wl,--version-script=libgcc/32/libgcc.map -o 32/libgcc_s.so.1.tmp -m32 libgcc/32/_muldi3_s.o libgcc/32/_negdi2_s.o libgcc/32/_lshrdi3_s.o libgcc/32/_ashldi3_s.o libgcc/32/_ashrdi3_s.o libgcc/32/_cmpdi2_s.o libgcc/32/_ucmpdi2_s.o libgcc/32/_clear_cache_s.o libgcc/32/_enable_execute_stack_s.o libgcc/32/_trampoline_s.o libgcc/32/__main_s.o libgcc/32/_absvsi2_s.o libgcc/32/_absvdi2_s.o libgcc/32/_addvsi3_s.o libgcc/32/_addvdi3_s.o libgcc/32/_subvsi3_s.o libgcc/32/_subvdi3_s.o libgcc/32/_mulvsi3_s.o libgcc/32/_mulvdi3_s.o libgcc/32/_negvsi2_s.o libgcc/32/_negvdi2_s.o libgcc/32/_ctors_s.o libgcc/32/_ffssi2_s.o libgcc/32/_ffsdi2_s.o libgcc/32/_clz_s.o libgcc/32/_clzsi2_s.o libgcc/32/_clzdi2_s.o libgcc/32/_ctzsi2_s.o libgcc/32/_ctzdi2_s.o libgcc/32/_popcount_tab_s.o libgcc/32/_popcountsi2_s.o libgcc/32/_popcountdi2_s.o libgcc/32/_paritysi2_s.o libgcc/32/_paritydi2_s.o libgcc/32/_powisf2_s.o libgcc/32/_powidf2_s.o libgcc/32/_powixf2_s.o libgcc/32/_powitf2_s.o libgcc/32/_mulsc3_s.o libgcc/32/_muldc3_s.o libgcc/32/_mulxc3_s.o libgcc/32/_multc3_s.o libgcc/32/_divsc3_s.o libgcc/32/_divdc3_s.o libgcc/32/_divxc3_s.o libgcc/32/_divtc3_s.o libgcc/32/_fixunssfsi_s.o libgcc/32/_fixunsdfsi_s.o libgcc/32/_fixunsxfsi_s.o libgcc/32/_fixsfdi_s.o libgcc/32/_fixunssfdi_s.o libgcc/32/_floatdisf_s.o libgcc/32/_fixdfdi_s.o libgcc/32/_fixunsdfdi_s.o libgcc/32/_floatdidf_s.o libgcc/32/_fixxfdi_s.o libgcc/32/_fixunsxfdi_s.o libgcc/32/_floatdixf_s.o libgcc/32/_fixtfdi_s.o libgcc/32/_fixunstfdi_s.o libgcc/32/_floatditf_s.o libgcc/32/_divdi3_s.o libgcc/32/_moddi3_s.o libgcc/32/_udivdi3_s.o libgcc/32/_umoddi3_s.o libgcc/32/_udiv_w_sdiv_s.o libgcc/32/_udivmoddi4_s.o libgcc/32/unwind-dw2_s.o libgcc/32/unwind-dw2-fde-glibc_s.o libgcc/32/unwind-sjlj_s.o libgcc/32/gthr-gnat_s.o libgcc/32/unwind-c_s.o -lc && rm -f 32/libgcc_s.so && if [ -f 32/libgcc_s.so.1 ]; then mv -f 32/libgcc_s.so.1 32/libgcc_s.so.1.backup; else true; fi && mv 32/libgcc_s.so.1.tmp 32/libgcc_s.so.1 && ln -s libgcc_s.so.1 32/libgcc_s.so /usr/bin/ld: skipping incompatible /usr/lib/../lib/libc.so when searching for -lc /usr/bin/ld: skipping incompatible /usr/lib/../lib/libc.a when searching for -lc /usr/bin/ld: skipping incompatible /usr/bin/../lib/libc.so when searching for -lc /usr/bin/ld: skipping incompatible /usr/bin/../lib/libc.a when searching for -lc /usr/bin/ld: i386:x86-64 architecture of input file `/usr/lib/../lib/crti.o' is incompatible with i386 output /usr/bin/ld: i386:x86-64 architecture of input file `/usr/lib/../lib/crtn.o' is incompatible with i386 output collect2: ld returned 1 exit status make[4]: *** [32/libgcc_s.so] Error 1 make[4]: Leaving directory `/home/matthew/OKplatform/ExternalSources/builds/Gcc/gcc-4.1.2_build/gcc' make[3]: *** [stmp-multilib] Error 2 make[3]: Leaving directory `/home/matthew/OKplatform/ExternalSources/builds/Gcc/gcc-4.1.2_build/gcc' make[2]: *** [all-gcc] Error 2 make[2]: Leaving directory `/home/matthew/OKplatform/ExternalSources/builds/Gcc/gcc-4.1.2_build' make[1]: *** [all] Error 2 make[1]: Leaving directory `/home/matthew/OKplatform/ExternalSources/builds/Gcc/gcc-4.1.2_build' make: *** [gcc] Error 1 make: Leaving directory `/home/matthew/OKplatform/ExternalSources' ERROR[oklib]: The external sources build-process returned a value different from zero: 2 ??? I am trying to build a local copy of GCC on a 64-bit machine. I believe that I installed the correct 32-bit glibc libraries required. I am using Ubuntu 8.10 and installed the 'libc6-dev-i386' package. Regards, Matthew Henderson |
|
From: edison <R.W...@sw...> - 2009-10-21 19:26:21
|
Hi, After a couple of searching, I found this: www.freelists.org/index.html It looks like a good choice, because they state they are ads-free, and provide free mailing list hosting to groups whose topics are related to technology, computers and so on. Details can be viewed on the website. I have tried to registered an account for testing.Just need to wait for their confirmation now. Rui On Wed, Oct 21, 2009 at 06:38:56PM +0100, Oliver Kullmann wrote: > Hi, > > the ads on the project page are bad enough, but > having advertisements attached to the e-mails > is not acceptable for me. > > I've e-mailed them, but I guess nothing comes out of it. > So is somebody aware of a mailing-list service which we > could use instead? I think mailing lists are very important, > since mails are the closest we get to real letters, not just > chatter and noise. Unfortunately it seems GitHub offers only > such. > > Installing the mail services, the web server and the mailman > software was a horrible experience, and I would like to avoid that. > > Oliver > > -- > Dr. Oliver Kullmann > Computer Science Department > Swansea University > Faraday Building, Singleton Park > Swansea SA2 8PP, UK > http://cs.swan.ac.uk/~csoliver/ > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Oklibrary-developers mailing list > Okl...@li... > https://lists.sourceforge.net/lists/listinfo/oklibrary-developers |
|
From: Oliver K. <O.K...@sw...> - 2009-10-21 17:39:08
|
Hi, the ads on the project page are bad enough, but having advertisements attached to the e-mails is not acceptable for me. I've e-mailed them, but I guess nothing comes out of it. So is somebody aware of a mailing-list service which we could use instead? I think mailing lists are very important, since mails are the closest we get to real letters, not just chatter and noise. Unfortunately it seems GitHub offers only such. Installing the mail services, the web server and the mailman software was a horrible experience, and I would like to avoid that. Oliver -- Dr. Oliver Kullmann Computer Science Department Swansea University Faraday Building, Singleton Park Swansea SA2 8PP, UK http://cs.swan.ac.uk/~csoliver/ |
|
From: Oliver K. <O.K...@sw...> - 2009-10-21 17:20:01
|
Hello, release 00120 is available at the OKlibrary home page http://www.ok-sat-library.org/ If you need to refresh your whole OKlibrary installation, then this should be an opportunity. Oliver -- Dr. Oliver Kullmann Computer Science Department Swansea University Faraday Building, Singleton Park Swansea SA2 8PP, UK http://cs.swan.ac.uk/~csoliver/ |