Compiling R9B-0 on SuSE Linux Linux 8.1

Kent Boortz kent@REDACTED
Wed Mar 5 01:01:50 CET 2003


Roger Price <rprice@REDACTED> writes:
> Hi, has anyone gotten R9B-0 to install on SuSE Linux 8.1 ?
> Here is what happens when I run configure:
> 
> olive:/mnt/home/erlang/otp_src_R9B-0 # ./configure
> checking host system type... i686-pc-linux-gnu
>     ===============lines omitted===============
> checking size of short... (cached) 2
> checking size of int... (cached) 4
> checking size of long... (cached) 4
> checking size of void *... (cached) 4
> checking size of unsigned long long... (cached) 8
> checking size of size_t... (cached) 4
> checking size of off_t... (cached) 4
> checking int/long/void*/size_t sizes... failed
> configure: error: Cannot handle this combination of int/long/void*/size_t
> sizes

You could try to remove the "config.cache" file and rerun configure.
If it still doesn't work, could you please send me the output from
the program

  #include <stdio.h>

  int main()
  {
    printf("void * = %d\n", sizeof(void *));
    printf("size_t = %d\n",sizeof(size_t));
    printf("int    = %d\n",sizeof(int));
    printf("long   = %d\n",sizeof(long));
    exit(0);
  }

kent



More information about the erlang-questions mailing list