Re: [BUGS] BUG #14742: build fails on psql

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [BUGS] BUG #14742: build fails on psql
Дата
Msg-id 4841.1500042127@sss.pgh.pa.us
обсуждение исходный текст
Ответ на [BUGS] BUG #14742: build fails on psql  (chris@cdrbill.com)
Ответы Re: [BUGS] BUG #14742: build fails on psql  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: [BUGS] BUG #14742: build fails on psql  (Chris Ruprecht <chris@cdrbill.com>)
Список pgsql-bugs
chris@cdrbill.com writes:
> Undefined symbols for architecture x86_64:
>   "_appendShellStringNoError", referenced from:
>       _psql_get_variable in common.o
>   "_psql_scan_set_passthrough", referenced from:
>       _MainLoop in mainloop.o
>       _main in startup.o

appendShellStringNoError() and psql_scan_set_passthrough() should be in
src/fe_utils/libpgfeutils.a, but they are both new as of v10.  I suppose
you're somehow linking against a 9.6 or earlier version of that
library.  Looking at the link line, -L/usr/local/lib is probably the
source of the problem.  Do you have any idea how it got there?
I don't see an equivalent reference to the --prefix lib directory
when I do this, so it's not that.
        regards, tom lane


-- 
Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-bugs

В списке pgsql-bugs по дате отправления:

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: Re: [BUGS] BUG #14634: On Windows pg_basebackup should write tar tostdout in binary mode
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [BUGS] BUG #14742: build fails on psql