I was actually trying to build for the iOS; but this actually repeats on Ubuntu 64 as well, both fail in same spot before going to examples at all
On the mac OSX, GCC 4.2.1, On Ubuntu, GCC 4.4.3
On either:
% WGET/CURL "http://www.iro.umontreal.ca/~gambit/download/gambit/v4.6/source/gambc-v4_6_0..." % tar ... % cd gambc-v4_6_0-devel % ./configure --enable-single-host % make -j 2 % make update
Is there something I'm doing wrong? They both fail on _io.o with the following type error
gcc -Wno-unused -O1 -fno-math-errno -fschedule-insns2 -fno-trapping-math -fno-strict-aliasing -fwrapv -fomit-frame-pointer -fPIC -fno-common -mieee-fp -I"../include" -c -o "_io.o" -I. -DHAVE_CONFIG_H -D___GAMBCDIR=""/usr/local/Gambit-C"" -D___SYS_TYPE_CPU=""x86_64"" -D___SYS_TYPE_VENDOR=""unknown"" -D___SYS_TYPE_OS=""linux-gnu"" -D___CONFIGURE_COMMAND=""./configure --enable-single-host --no-create --no-recursion"" -D___OBJ_EXTENSION="".o"" -D___EXE_EXTENSION="""" -D___BAT_EXTENSION="""" -D___PRIMAL _io.c -D___LIBRARY In file included from ../include/gambit.h:12, from _io.c:1343: ../include/gambit-not406001.h:1:2: error: #error "The version indicated in ___VERSION is not supported by gambit.h" ../include/gambit-not406001.h:2:2: error: #error "You are probably compiling C code generated by a Gambit compiler earlier or later than v4.6.1" ../include/gambit-not406001.h:3:2: error: #error "___VERSION will be set to 406001 to reduce other errors" make[2]: *** [_io.o] Error 1 make[2]: Leaving directory `/home/blahblahblah/t/gambc-v4_6_0-devel/lib' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/blahblahblah/t/gambc-v4_6_0-devel' make: *** [update] Error 2
Afficher les réponses par date
On Aug 11, 2011, at 10:50 AM, Matt Lamari wrote:
I was actually trying to build for the iOS; but this actually repeats on Ubuntu 64 as well, both fail in same spot before going to examples at all
On the mac OSX, GCC 4.2.1, On Ubuntu, GCC 4.4.3
On either:
% WGET/CURL "http://www.iro.umontreal.ca/~gambit/download/gambit/v4.6/source/gambc-v4_6_0..." % tar ... % cd gambc-v4_6_0-devel % ./configure --enable-single-host % make -j 2 % make update
Is there something I'm doing wrong?
The current version is 4.6.1, and "make update" does not take you correctly from 4.6.0 to 4.6.1 (or from any version to a different one), you need to download 4.6.1 before "make update".
Brad
11.08.2011 19:11, Bradley Lucier пишет:
On Aug 11, 2011, at 10:50 AM, Matt Lamari wrote:
I was actually trying to build for the iOS; but this actually repeats on Ubuntu 64 as well, both fail in same spot before going to examples at all
On the mac OSX, GCC 4.2.1, On Ubuntu, GCC 4.4.3
On either:
% WGET/CURL "http://www.iro.umontreal.ca/~gambit/download/gambit/v4.6/source/gambc-v4_6_0..." % tar ... % cd gambc-v4_6_0-devel % ./configure --enable-single-host % make -j 2 % make update
Is there something I'm doing wrong?
The current version is 4.6.1, and "make update" does not take you correctly from 4.6.0 to 4.6.1 (or from any version to a different one), you need to download 4.6.1 before "make update".
If a bootstrap build (i.e. 4.6.0 -> 4.6.1) is enough for your needs have a look on the %build section of the this gambit.spec file:
http://git.altlinux.org/gears/g/gambit.git?p=gambit.git;a=blob;f=gambit.spec...
It successfully builds a new version of Gambit on a top of a previous one.
Brad _______________________________________________ Gambit-list mailing list Gambit-list@iro.umontreal.ca https://webmail.iro.umontreal.ca/mailman/listinfo/gambit-list
A new version (0.2) of Gambit for Android has been released on the Android Market:
https://market.android.com/details?id=org.keithflower.gambit
You can read more about Gambit for Android here:
http://apps.keithflower.org/?page_id=152
Thanks to Steve Graham, Alexander Shendi, Marc Feeley, and others for valuable feedback and suggestions on this version.
Features added: A native code crash triggers optional email to the developer with a description and stack backtrace (Java-side problems are already automatically reported). Adding a new script adds to the beginning of the script list, rather than to the end. User can start the REPL server from the Android menu.
Bug fixes: Some Java-Native Interface functions were serialized to prevent thread contention. Fixed REPL window backspace problem, which caused a StringIndexOutOfBoundsException. Changed aviation weather script example - NOAA seems to have altered its web interface. Added Gambit tests to the Android version test suite: r4rstest.scm mix.scm debug.scm error.scm
What I'm currently working on: Incorporating Gambit (iOS) v2.0 changes. Adding user interface preferences, e.g., choose REPL window font size. Migrating source to Gambit git repository.