AIX 6.1을 실행하는 서버에서 Ocaml을 컴파일하려고 하면 다음 오류가 발생합니다.
"../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.
내가 실행할 때의 make world
최종 출력은 다음과 같습니다 ./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 **
답변1
AIX는 더 이상 존재하지 않습니다.공식적으로 지원되는 플랫폼. 하나 있다OCaml 3.11.2의 비공식 포트.
GNU make를 사용하여 즉시 생성되는 오류를 수정할 수 있습니다. 또는 makefile을 조정해 볼 수도 있습니다. otherlibs/Makefile.shared
비표준 구성을 사용하십시오 . , 등을 ?=
사용하려면 세 줄을 변경하십시오 . 또한 다음 정의를 사용하여 행을 이동하도록 변경하고 유사하게 다음 정의를 이동해야 합니다 .=
CMIFILES = $(CAMLOBJS:.cmo=.cmi)
otherlibs/num/Makefile
CMIFILES
include ../Makefile
otherlibs/dbm/Makefile
otherlibs/str/Makefile
CLIBNAME
include ../Makefile
검색하거나 게시하는 것이 좋습니다.캠 목록. 이곳은 여전히 AIX에서 Ocaml을 사용하고 있는 다른 사람들과 연락할 수 있는 가장 좋은 장소입니다.
답변2
임의의 부분을 잘라내는 대신 전체 로그(pastebin 등)를 넣어야 합니다! 또한 make --version
(GNU make가 작동해야 함)의 출력도 표시됩니다.