Программное обеспечение INSTALL GATE

Я пытаюсь установить ЛОГИЧЕСКИЙ ЭЛЕМЕНТ на Ubuntu 16.04 в (сделайте-j4), шаг я добрался:

/usr/bin/ld: cannot find -lPostscript
/usr/bin/ld: cannot find -lPhysics
collect2: error: ld returned 1 exit status
CMakeFiles/Gate.dir/build.make:16728: recipe for target 'Gate' failed
make[2]: *** [Gate] Error 1
CMakeFiles/Makefile2:68: recipe for target 'CMakeFiles/Gate.dir/all' failed
make[1]: *** [CMakeFiles/Gate.dir/all] Error 2
Makefile:127: recipe for target 'all' failed
make: *** [all] Error 2

как я могу найти "Постскриптум" и "Физику"?

0
задан 30 October 2018 в 14:01

1 ответ

От man ld:

   -l namespec
   --library=namespec
       Add the archive or object file specified by namespec to the list of files to link.
       This option may be used any number of times.  If namespec is of the form :filename, ld
       will search the library path for a file called filename, otherwise it will search the
       library path for a file called libnamespec.a.

       On systems which support shared libraries, ld may also search for files other than
       libnamespec.a.  Specifically, on ELF and SunOS systems, ld will search a directory for
       a library called libnamespec.so before searching for one called libnamespec.a.  (By
       convention, a ".so" extension indicates a shared library.)  Note that this behavior
       does not apply to :filename, which always specifies a file called filename.

Так, файлы Ваш поиск libPhysics.so, libPhysics.a, libPostscript.so и libPostscript.a.

Я не могу найти эти файлы в архиве пакета Ubuntu, таким образом, я предполагаю, что они были предназначены, чтобы быть настроенными через более ранние шаги.

Проверьте свою работу (Вы вводили команду правильно, команда работала?) на предыдущих шагах.

0
ответ дан 27 October 2019 в 06:23

Другие вопросы по тегам:

Похожие вопросы: