Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pbme installation numerix #2374

Closed
vicuna opened this issue Feb 22, 2000 · 1 comment
Closed

pbme installation numerix #2374

vicuna opened this issue Feb 22, 2000 · 1 comment
Labels

Comments

@vicuna
Copy link

vicuna commented Feb 22, 2000

Original bug ID: 40
Reporter: administrator
Status: closed
Resolution: not a bug
Priority: normal
Severity: minor
Category: ~DO NOT USE (was: OCaml general)

Bug description

Bonjour.

J'essaie d'installer numerix.
J'utilise ocam 2.02

Machine : une sillicon graphics
uname -a ==> IRIX64 leger 6.2 06101031 IP28

La config fournit gnumake, mais pas gcc ...

Je ne peux compiler ni pour ocaml, ni pour caml.
J'ai tente les options les + basiques (Clong, etc).
J'ai l'impression que les messages d'erreur sont + clairs
pour le cas de caml. Je vous joins le Makefile, et la sortie
stdout/stderr de : gnumake lib (j'ai bien fait le gnumake clean avant)
En esperant que le bug vous paraitra evident.

===============

Qd je ne demande pas caml, mais seulement ocaml :
gnumake clean, gnumake lib se passent bien (enfin... memes
warnings qu'avant du preprocesseur), mais
lors de "gnumake exemples",
dans la compilation de numerix/exemples/cmp/ocaml/cmp.ml,
survient le message d'erreur: Unbound module type Int_type
ligne 10 : "module Main(E:Int_type) = struct "
La commande en cours est :

ocamlc -custom -o cmp-byte -I ../../../lib/ocaml nums.cma numerix.cmo
cmp.ml -ccopt -L../../../
lib/common -cclib -lmlnumx -cclib -lnums
et ../../../lib/ocaml contient bien numerix.cmi, .cmo, etc,
et le open Numerix qui precede n'a pas pose de problemes...

ocamlnumx a ete cree. Quand je le lance, la banniere est:
% ocamlnumx
Objective Caml version 2.02

il ne donne donc pas de liste de modules disponibles (contrairement
a la doc).

================

Any hint ?

--
Dominique Michelucci Dominique.Michelucci@emse.fr
http://www.emse.fr/~micheluc
Ecole Nationale Superieure des Mines de St-Etienne
158 cours Fauriel, 42023 Saint Etienne cedex 2, France
Tel: +33 4 77 42 01 73 from abroad, 04 77 42 01 73 from France
Fax: +33 4 77 42 66 66 from abroad, 04 77 42 66 66 from France


+----------------------------------------------------------------------------+

| |

| Entiers de longueur arbitraire |

| Arbitrarily lengthy integers |

| |

| Règles de compilation |

| Compile rules |

| |

+----------------------------------------------------------------------------+

M. Quercia, 2 Feb 2000

Note : Utilisez GNU-make pour compiler, un make ordinaire ne marche pas

Use GNU-make to build the libraries, ordinary make doesn't work

               # +---------------------------+
               # |  taille d'un mot machine  |
               # |      machine word size    |
               # +---------------------------+

export BITS_64 = 0
export BITS_32 = 1

              # +-----------------------------+
              # |  bibliothèques à contruire  |
              # |     libraries to build      |
              # +-----------------------------+

code C portable, portable C code

export USE_CLONG = 1

code C avec les entiers long long (ne marche pas en 64 bits)

C code with gcc long long datatype (doesn't work on 64 bits platform)

export USE_DLONG = 0

Code assembleur x86, x86 assembly code

export USE_SLONG = 0

Si vous avez GMP-2.02, if you have GMP-2.02

#export USE_GMP = 1
export USE_GMP = 0

                    # +------------------+
                    # |   quoi faire ?   |
                    # | what to build ?  |
                    # +------------------+

bibliothèque pour programmation en C

build the C programming libraries

#export MAKE_C_LIB = 1
export MAKE_C_LIB = 0

bibliothèque pour programmation en Ocaml

build the Ocaml programming libraries

export MAKE_OCAML_LIB = 1

bibliothèque pour programmation en Caml-light

build the Caml-light programming libraries

export MAKE_CAML_LIB = 1
#export MAKE_CAML_LIB = 0

bibliothèque pour programmation en Pascal

build the Pascal programming libraries

export MAKE_PASCAL_LIB = 0

Versions de Ocaml et Camllight sans point décimal

Ocaml and Camllight versions without period

export OCAML_VERSION = 202
export CAML_VERSION = 074

                     # +---------------+
                     # |  Répertoires  |
                     # |  Directories  |
                     # +---------------+

où se trouvent les fichiers de Caml-Ocaml, where are Caml-Ocaml files ?

#export CAML_LIBDIR = /usr/local/lib/caml-light
export CAML_LIBDIR = /usr/share/local/Caml/lib
#export OCAML_LIBDIR = /usr/local/lib/ocaml
export OCAML_LIBDIR = $(HOME)/OCAML/lib

installation, installation

#export INSTALL_LIB = $(HOME)/test/lib
export INSTALL_LIB = $(HOME)/OCAML/lib
#export INSTALL_INCLUDE = $(HOME)/test/include
export INSTALL_INCLUDE = $(HOME)/OCAML/lib
#export INSTALL_BIN = $(HOME)/test/bin
export INSTALL_BIN = $(HOME)/OCAML/bin

#----------------------- Ne rien changer au delà -----------------------

Nothing to change below

                   # +-------------------+
                   # |  cibles, targets  |
                   # +-------------------+

.PHONY : all lib install exemples examples tests clean exclean

all: lib exemples

lib:
cd lib; $(MAKE) all

install:
cd lib; $(MAKE) install

exemples:
cd exemples; $(MAKE) all

examples: exemples

ex-%:
cd exemples; $(MAKE) $(patsubst ex-%,%,$@)

test:
cd exemples; $(MAKE) test

clean:
cd lib; $(MAKE) clean
cd exemples; $(MAKE) clean

       # +-------------------------------------------+
       # |  options de compilation, compile options  |
       # +-------------------------------------------+

initialisations inutiles pour éviter les avertissemens de gcc

useless initializations to avoid gcc warnings

export CFLAGS += -Duseless_init

pour déboguage, for debugging

#CFLAGS += -Ddebug_k -Ddebug_some

taille des mots machine, machine word size

ifeq ($(strip $(BITS_64)),1)
CFLAGS += -Dbits_64
endif
ifeq ($(strip $(BITS_32)),1)
CFLAGS += -Dbits_32
endif

     # +----------------------------------------------+
     # |  Commandes de compilation, compile commands  |
     # +----------------------------------------------+

export GCC = gcc -O2 -Wall $(CFLAGS)

export GCC = cc -mips3 -n32 -O2 $(CFLAGS)
#export CPP = cpp -P
export CPP = cc -P

export CAML = camlc
export CAMLLIBR = camllibr
export CAMLMKTOP = camlmktop

export OCAML = ocamlc
export OCAMLOPT = ocamlopt
export OCAMLMKTOP = ocamlmktop

export AR = ar -rcs

          # +-------------------------------------+
          # |  Numéro de version, version number  |
          # +-------------------------------------+

export NUMERIX_VERSION = '0.13 (2 Feb 2000)'


cd lib; gnumake all
gnumake[1]: Entering directory /tmp_mnt/hosts/picasso/usr/people/domi/ESSAI_CAML/numerix/lib' for dir in common ocaml camllight; do (cd $dir; gnumake all) || break; done gnumake[2]: Entering directory /tmp_mnt/hosts/picasso/usr/people/domi/ESSAI_CAML/numerix/lib/common'
cc -mips3 -n32 -O2 -Duseless_init -Dbits_32 -c chrono.c
cc -mips3 -n32 -O2 -Duseless_init -Dbits_32 -o long_int-c.o -c long_int.c
"long_int.h", line 142: warning(1011): unrecognized preprocessing directive
#warning "Taille des mots inconnue, definir l'un des symboles 'bits_64'"
^

"long_int.h", line 143: warning(1011): unrecognized preprocessing directive
#warning "ou 'bits_32' selon votre architecture."
^

"long_int.h", line 144: warning(1011): unrecognized preprocessing directive
#warning
^

"long_int.h", line 145: warning(1011): unrecognized preprocessing directive
#warning "Unknown word size, define one of the symbols 'bits_64'"
^

"long_int.h", line 146: warning(1011): unrecognized preprocessing directive
#warning "or 'bits_32' depending on your hardware."
^

"long_int.c", line 2308: warning(1183): pointless comparison of unsigned
integer with zero
if (a < 0) {
^

cc -mips3 -n32 -O2 -Duseless_init -Dbits_32 -DOCAML_VERSION=202 -I/usr/people/domi/OCAML/lib -o ml-long_int-c.o -c ml-long_int.c
"long_int.h", line 142: warning(1011): unrecognized preprocessing directive
#warning "Taille des mots inconnue, definir l'un des symboles 'bits_64'"
^

"long_int.h", line 143: warning(1011): unrecognized preprocessing directive
#warning "ou 'bits_32' selon votre architecture."
^

"long_int.h", line 144: warning(1011): unrecognized preprocessing directive
#warning
^

"long_int.h", line 145: warning(1011): unrecognized preprocessing directive
#warning "Unknown word size, define one of the symbols 'bits_64'"
^

"long_int.h", line 146: warning(1011): unrecognized preprocessing directive
#warning "or 'bits_32' depending on your hardware."
^

ar -rcs libmlnumx.a chrono.o long_int-c.o ml-long_int-c.o
cc -mips3 -n32 -O2 -Duseless_init -Dbits_32 -I/usr/share/local/Caml/lib -Duse_camllight -o cl-long_int-c.o -c ml-long_int.c
"long_int.h", line 142: warning(1011): unrecognized preprocessing directive
#warning "Taille des mots inconnue, definir l'un des symboles 'bits_64'"
^

"long_int.h", line 143: warning(1011): unrecognized preprocessing directive
#warning "ou 'bits_32' selon votre architecture."
^

"long_int.h", line 144: warning(1011): unrecognized preprocessing directive
#warning
^

"long_int.h", line 145: warning(1011): unrecognized preprocessing directive
#warning "Unknown word size, define one of the symbols 'bits_64'"
^

"long_int.h", line 146: warning(1011): unrecognized preprocessing directive
#warning "or 'bits_32' depending on your hardware."
^

"ml-long_int.c", line 64: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(a,x,l,b);
^

"ml-long_int.c", line 64: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(a,x,l,b);
^

"ml-long_int.c", line 71: error(1133): expression must be a modifiable lvalue
Alloc_1_1(b,la,a);
^

"ml-long_int.c", line 176: error(1133): expression must be a modifiable lvalue
Alloc_1_1(c,la,a);
^

"ml-long_int.c", line 185: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(c,x,la,a);
^

"ml-long_int.c", line 185: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(c,x,la,a);
^

"ml-long_int.c", line 193: error(1133): expression must be a modifiable lvalue
Alloc_1_1(c,la,a);
^

"ml-long_int.c", line 202: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(c,x,la,a);
^

"ml-long_int.c", line 202: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(c,x,la,a);
^

"ml-long_int.c", line 215: error(1133): expression must be a modifiable lvalue
Alloc_1_2(c,max(la,lb)+1,a,b);
^

"ml-long_int.c", line 215: error(1133): expression must be a modifiable lvalue
Alloc_1_2(c,max(la,lb)+1,a,b);
^

"ml-long_int.c", line 223: error(1133): expression must be a modifiable lvalue
Alloc_1_2(c,max(la,lb)+1,a,b);
^

"ml-long_int.c", line 223: error(1133): expression must be a modifiable lvalue
Alloc_1_2(c,max(la,lb)+1,a,b);
^

"ml-long_int.c", line 231: error(1133): expression must be a modifiable lvalue
Enlarge_1_2(c,x,max(la,lb)+1,a,b);
^

"ml-long_int.c", line 231: error(1133): expression must be a modifiable lvalue
Enlarge_1_2(c,x,max(la,lb)+1,a,b);
^

"ml-long_int.c", line 231: error(1133): expression must be a modifiable lvalue
Enlarge_1_2(c,x,max(la,lb)+1,a,b);
^

"ml-long_int.c", line 238: error(1133): expression must be a modifiable lvalue
Enlarge_1_2(c,x,max(la,lb)+1,a,b);
^

"ml-long_int.c", line 238: error(1133): expression must be a modifiable lvalue
Enlarge_1_2(c,x,max(la,lb)+1,a,b);
^

"ml-long_int.c", line 238: error(1133): expression must be a modifiable lvalue
Enlarge_1_2(c,x,max(la,lb)+1,a,b);
^

"ml-long_int.c", line 255: error(1133): expression must be a modifiable lvalue
Alloc_1_1(c,lc,a);
^

"ml-long_int.c", line 271: error(1133): expression must be a modifiable lvalue
Alloc_1_1(c,lc,a);
^

"ml-long_int.c", line 287: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(c,x,lc,a);
^

"ml-long_int.c", line 287: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(c,x,lc,a);
^

"ml-long_int.c", line 301: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(c,x,lc,a);
^

"ml-long_int.c", line 301: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(c,x,lc,a);
^

"ml-long_int.c", line 318: error(1133): expression must be a modifiable lvalue
AllocN_2_1(res,2,c,lc,d,ld,a);
^

"ml-long_int.c", line 318: error(1133): expression must be a modifiable lvalue
AllocN_2_1(res,2,c,lc,d,ld,a);
^

"ml-long_int.c", line 318: error(1133): expression must be a modifiable lvalue
AllocN_2_1(res,2,c,lc,d,ld,a);
^

"ml-long_int.c", line 318: warning(1551): variable "c" is used before its
value is set
AllocN_2_1(res,2,c,lc,d,ld,a);
^

"ml-long_int.c", line 318: error(1133): expression must be a modifiable lvalue
AllocN_2_1(res,2,c,lc,d,ld,a);
^

"ml-long_int.c", line 318: warning(1551): variable "d" is used before its
value is set
AllocN_2_1(res,2,c,lc,d,ld,a);
^

"ml-long_int.c", line 318: error(1133): expression must be a modifiable lvalue
AllocN_2_1(res,2,c,lc,d,ld,a);
^

"ml-long_int.c", line 334: error(1133): expression must be a modifiable lvalue
Enlarge_2_1(c,x,lc,d,y,ld,a);
^

"ml-long_int.c", line 334: error(1133): expression must be a modifiable lvalue
Enlarge_2_1(c,x,lc,d,y,ld,a);
^

"ml-long_int.c", line 334: error(1133): expression must be a modifiable lvalue
Enlarge_2_1(c,x,lc,d,y,ld,a);
^

"ml-long_int.c", line 334: error(1133): expression must be a modifiable lvalue
Enlarge_2_1(c,x,lc,d,y,ld,a);
^

"ml-long_int.c", line 334: error(1133): expression must be a modifiable lvalue
Enlarge_2_1(c,x,lc,d,y,ld,a);
^

"ml-long_int.c", line 334: warning(1551): variable "c" is used before its
value is set
Enlarge_2_1(c,x,lc,d,y,ld,a);
^

"ml-long_int.c", line 345: error(1133): expression must be a modifiable lvalue
Alloc_1_2(d,ld,a,b);
^

"ml-long_int.c", line 345: error(1133): expression must be a modifiable lvalue
Alloc_1_2(d,ld,a,b);
^

"ml-long_int.c", line 357: error(1133): expression must be a modifiable lvalue
Enlarge_1_2(d,x,ld,a,b);
^

"ml-long_int.c", line 357: error(1133): expression must be a modifiable lvalue
Enlarge_1_2(d,x,ld,a,b);
^

"ml-long_int.c", line 357: error(1133): expression must be a modifiable lvalue
Enlarge_1_2(d,x,ld,a,b);
^

"ml-long_int.c", line 370: error(1133): expression must be a modifiable lvalue
Alloc_1_1(c,la+2,a);
^

"ml-long_int.c", line 380: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(c,x,la+2,a);
^

"ml-long_int.c", line 380: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(c,x,la+2,a);
^

"ml-long_int.c", line 387: error(1133): expression must be a modifiable lvalue
Alloc_1_2(c,la+lb,a,b);
^

"ml-long_int.c", line 387: error(1133): expression must be a modifiable lvalue
Alloc_1_2(c,la+lb,a,b);
^

"ml-long_int.c", line 395: error(1133): expression must be a modifiable lvalue
Enlarge_1_2(c,x,la+lb,a,b);
^

"ml-long_int.c", line 395: error(1133): expression must be a modifiable lvalue
Enlarge_1_2(c,x,la+lb,a,b);
^

"ml-long_int.c", line 395: error(1133): expression must be a modifiable lvalue
Enlarge_1_2(c,x,la+lb,a,b);
^

"ml-long_int.c", line 408: error(1133): expression must be a modifiable lvalue
Alloc_1_1(c,2*la,a);
^

"ml-long_int.c", line 417: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(c,x,2*la,a);
^

"ml-long_int.c", line 417: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(c,x,2*la,a);
^

"ml-long_int.c", line 434: error(1133): expression must be a modifiable lvalue
AllocN_1_1(res,2,q,max(la,2),a);
^

"ml-long_int.c", line 434: error(1133): expression must be a modifiable lvalue
AllocN_1_1(res,2,q,max(la,2),a);
^

"ml-long_int.c", line 434: warning(1551): variable "q" is used before its
value is set
AllocN_1_1(res,2,q,max(la,2),a);
^

"ml-long_int.c", line 434: error(1133): expression must be a modifiable lvalue
AllocN_1_1(res,2,q,max(la,2),a);
^

"ml-long_int.c", line 447: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(q,x,max(la,2),a);
^

"ml-long_int.c", line 447: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(q,x,max(la,2),a);
^

"ml-long_int.c", line 459: error(1133): expression must be a modifiable lvalue
AllocN_2_2(res,2,q,lq,r,max(la+1,lb),a,b);
^

"ml-long_int.c", line 459: error(1133): expression must be a modifiable lvalue
AllocN_2_2(res,2,q,lq,r,max(la+1,lb),a,b);
^

"ml-long_int.c", line 459: error(1133): expression must be a modifiable lvalue
AllocN_2_2(res,2,q,lq,r,max(la+1,lb),a,b);
^

"ml-long_int.c", line 459: warning(1551): variable "q" is used before its
value is set
AllocN_2_2(res,2,q,lq,r,max(la+1,lb),a,b);
^

"ml-long_int.c", line 459: error(1133): expression must be a modifiable lvalue
AllocN_2_2(res,2,q,lq,r,max(la+1,lb),a,b);
^

"ml-long_int.c", line 459: warning(1551): variable "r" is used before its
value is set
AllocN_2_2(res,2,q,lq,r,max(la+1,lb),a,b);
^

"ml-long_int.c", line 459: error(1133): expression must be a modifiable lvalue
AllocN_2_2(res,2,q,lq,r,max(la+1,lb),a,b);
^

"ml-long_int.c", line 459: error(1133): expression must be a modifiable lvalue
AllocN_2_2(res,2,q,lq,r,max(la+1,lb),a,b);
^

"ml-long_int.c", line 474: error(1133): expression must be a modifiable lvalue
Enlarge_2_2(q,x,lq,r,y,lr,a,b);
^

"ml-long_int.c", line 474: error(1133): expression must be a modifiable lvalue
Enlarge_2_2(q,x,lq,r,y,lr,a,b);
^

"ml-long_int.c", line 474: error(1133): expression must be a modifiable lvalue
Enlarge_2_2(q,x,lq,r,y,lr,a,b);
^

"ml-long_int.c", line 474: error(1133): expression must be a modifiable lvalue
Enlarge_2_2(q,x,lq,r,y,lr,a,b);
^

"ml-long_int.c", line 474: error(1133): expression must be a modifiable lvalue
Enlarge_2_2(q,x,lq,r,y,lr,a,b);
^

"ml-long_int.c", line 474: error(1133): expression must be a modifiable lvalue
Enlarge_2_2(q,x,lq,r,y,lr,a,b);
^

"ml-long_int.c", line 474: warning(1551): variable "q" is used before its
value is set
Enlarge_2_2(q,x,lq,r,y,lr,a,b);
^

"ml-long_int.c", line 483: error(1133): expression must be a modifiable lvalue
Alloc_1_2(q,lq,a,b);
^

"ml-long_int.c", line 483: error(1133): expression must be a modifiable lvalue
Alloc_1_2(q,lq,a,b);
^

"ml-long_int.c", line 494: error(1133): expression must be a modifiable lvalue
Enlarge_1_2(q,x,lq,a,b);
^

"ml-long_int.c", line 494: error(1133): expression must be a modifiable lvalue
Enlarge_1_2(q,x,lq,a,b);
^

"ml-long_int.c", line 494: error(1133): expression must be a modifiable lvalue
Enlarge_1_2(q,x,lq,a,b);
^

"ml-long_int.c", line 506: error(1133): expression must be a modifiable lvalue
Alloc_1_1(c,lc+1,a);
^

"ml-long_int.c", line 515: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(c,x,lc+1,a);
^

"ml-long_int.c", line 515: error(1133): expression must be a modifiable lvalue
Enlarge_1_1(c,x,lc+1,a);
^

"ml-long_int.c", line 528: error(1133): expression must be a modifiable lvalue
AllocN_5_2(res,5,p,l,q,l,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 528: error(1133): expression must be a modifiable lvalue
AllocN_5_2(res,5,p,l,q,l,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 528: error(1133): expression must be a modifiable lvalue
AllocN_5_2(res,5,p,l,q,l,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 528: error(1133): expression must be a modifiable lvalue
AllocN_5_2(res,5,p,l,q,l,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 528: error(1133): expression must be a modifiable lvalue
AllocN_5_2(res,5,p,l,q,l,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 528: error(1133): expression must be a modifiable lvalue
AllocN_5_2(res,5,p,l,q,l,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 528: warning(1551): variable "p" is used before its
value is set
AllocN_5_2(res,5,p,l,q,l,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 528: error(1133): expression must be a modifiable lvalue
AllocN_5_2(res,5,p,l,q,l,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 528: warning(1551): variable "q" is used before its
value is set
AllocN_5_2(res,5,p,l,q,l,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 528: error(1133): expression must be a modifiable lvalue
AllocN_5_2(res,5,p,l,q,l,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 528: warning(1551): variable "u" is used before its
value is set
AllocN_5_2(res,5,p,l,q,l,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 528: error(1133): expression must be a modifiable lvalue
AllocN_5_2(res,5,p,l,q,l,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 528: warning(1551): variable "v" is used before its
value is set
AllocN_5_2(res,5,p,l,q,l,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 528: error(1133): expression must be a modifiable lvalue
AllocN_5_2(res,5,p,l,q,l,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 528: warning(1551): variable "d" is used before its
value is set
AllocN_5_2(res,5,p,l,q,l,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 528: error(1133): expression must be a modifiable lvalue
AllocN_5_2(res,5,p,l,q,l,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 528: error(1133): expression must be a modifiable lvalue
AllocN_5_2(res,5,p,l,q,l,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 543: error(1133): expression must be a modifiable lvalue
AllocN_3_2(res,3,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 543: error(1133): expression must be a modifiable lvalue
AllocN_3_2(res,3,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 543: error(1133): expression must be a modifiable lvalue
AllocN_3_2(res,3,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 543: error(1133): expression must be a modifiable lvalue
AllocN_3_2(res,3,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 543: warning(1551): variable "u" is used before its
value is set
AllocN_3_2(res,3,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 543: error(1133): expression must be a modifiable lvalue
AllocN_3_2(res,3,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 543: warning(1551): variable "v" is used before its
value is set
AllocN_3_2(res,3,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 543: error(1133): expression must be a modifiable lvalue
AllocN_3_2(res,3,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 543: warning(1551): variable "d" is used before its
value is set
AllocN_3_2(res,3,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 543: error(1133): expression must be a modifiable lvalue
AllocN_3_2(res,3,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 543: error(1133): expression must be a modifiable lvalue
AllocN_3_2(res,3,u,l,v,l,d,l,a,b);
^

"ml-long_int.c", line 562: error(1133): expression must be a modifiable lvalue
Alloc_1_2(d,l,a,b);
^

"ml-long_int.c", line 562: error(1133): expression must be a modifiable lvalue
Alloc_1_2(d,l,a,b);
^

"ml-long_int.c", line 576: error(1133): expression must be a modifiable lvalue
Enlarge_5_2(p,r,l,q,s,l,u,x,l,v,y,l,d,z,l,a,b);
^

"ml-long_int.c", line 576: error(1133): expression must be a modifiable lvalue
Enlarge_5_2(p,r,l,q,s,l,u,x,l,v,y,l,d,z,l,a,b);
^

Error limit reached.
100 errors detected in the compilation of "ml-long_int.c".
Compilation terminated.
gnumake[2]: *** [cl-long_int-c.o] Error 2
gnumake[2]: Leaving directory /tmp_mnt/hosts/picasso/usr/people/domi/ESSAI_CAML/numerix/lib/common' gnumake[1]: Leaving directory /tmp_mnt/hosts/picasso/usr/people/domi/ESSAI_CAML/numerix/lib'



@vicuna
Copy link
Author

vicuna commented Feb 22, 2000

Comment author: administrator

J'essaie d'installer numerix.
J'utilise ocam 2.02
[Longue liste de problèmes supprimée]

Je crois qu'il faut vous adresser directement à l'auteur de Numerix
(Michel Quercia, apparemment). Nous ne connaissons rien sur cette
bibliothèque.

Cordialement,

  • Xavier Leroy

@vicuna vicuna closed this as completed Feb 22, 2000
@vicuna vicuna added the bug label Mar 19, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant