[gambit-list] Running gambit program
Marc Feeley
feeley at iro.umontreal.ca
Tue Mar 19 12:58:02 EDT 2013
On 2013-03-19, at 12:35 PM, Steve Graham <jsgrahamus at yahoo.com> wrote:
> > ##os-configure-command-string-saved
> "./configure '--enable-single-host'"
> > ##os-system-type-string-saved
> "x86_64-unknown-linux-gnu"
> >
>
> I don't recall the steps I went through to build Gambit. Is the make trace stored somewhere automatically?
>
Just
make clean
make
Also, can you compile this simple C program:
#include <stdio.h>
int main(int argc, char *argv[]) {
char **p = argv;
while (*p != NULL) printf("%s\n", *p++);
return 0;
}
and then do
./a.out a b c
If that doesn't work then we have a problem.
Marc
More information about the Gambit-list
mailing list