Erro de compilação Ocaml no AIX 6.1

1

Eu encontro o seguinte erro quando tento compilar o Ocaml em meu servidor executando o AIX 6.1:

"../Makefile.shared", line 39: make: 1254-055 Dependency line needs colon or double colon operator.
"../Makefile.shared", line 40: make: 1254-055 Dependency line needs colon or double colon operator.
"../Makefile.shared", line 41: make: 1254-055 Dependency line needs colon or double colon operator.
make: 1254-058 Fatal errors encountered -- cannot continue.
make: 1254-004 The error code from the last command is 2.

Aparece quando executo make world . Esta é a saída final de ./configure :

Directories where Objective Caml will be installed:
        binaries.................. /usr/local/bin
        standard library.......... /usr/local/lib/ocaml
        manual pages.............. /usr/local/man (with extension .1)
Configuration for the bytecode compiler:
        C compiler used........... gcc
        options for compiling..... -fno-defer-pop -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT
        options for linking.......   -lm  -lcurses -lpthread
        shared libraries not supported
Configuration for the native-code compiler:
        (not supported on this platform)
Source-level replay debugger: supported
Additional libraries supported:
        unix str num dynlink bigarray systhreads threads graph dbm
Configuration for the "num" library:
        target architecture ...... generic (asm level 0)
Configuration for the "graph" library:
        options for compiling .... -I/usr/X11R7/include
        options for linking ...... -L/usr/X11R7/lib -lX11
The "labltk" library: not supported
** Objective Caml configuration completed successfully **
    
por Gilles 28.07.2011 / 10:01

2 respostas

1

O AIX não é mais uma plataforma oficialmente suportada . Há uma porta não oficial do OCaml 3.11.2 .

Você pode corrigir seu erro de compilação imediato usando o GNU make. Como alternativa, você pode tentar refazer o makefile. otherlibs/Makefile.shared está usando uma construção não padrão ?= ; altere as três linhas para usar = , ou seja, CMIFILES = $(CAMLOBJS:.cmo=.cmi) e assim por diante. Você também precisará alterar otherlibs/num/Makefile para mover a linha com a definição de CMIFILES abaixo de include ../Makefile e, da mesma forma, em otherlibs/dbm/Makefile e otherlibs/str/Makefile moverá a definição de CLIBNAME abaixo de include ../Makefile .

Eu recomendo pesquisar ou postar na lista de vídeos . Este é o melhor lugar para entrar em contato com outras pessoas que ainda podem estar usando o Ocaml no AIX.

    
por 28.07.2011 / 13:25
0

Você deve colocar logs completos (em pastebin ou qualquer outro) e não cortar partes arbitrárias! Também mostre a saída de make --version (o GNU make deve funcionar).

    
por 28.07.2011 / 13:25