Can I subscribe to information on new tests?
build error
Hello Guest
  
  • Login
• Register…
• Start blog
  • Who, Where, When
• What can I do?
• What to Read?
  • Polls
• Avatars
• Interests
  • Cities and Countries
• Random blog
• Users search
  • Search
• Games
• Tests
• QAIX
  • Сообщества
• Talxy Chat
• Horoscope
• Online
 
Зарегистрируйся!

QAIX > PostgreSQL database development > build error 27 October 2007 00:35:30

  Recent blog posts: 
  They have birthday today: 
  Forums:   
  Discuss: 
  Recent forum topics: 
  Recent forum comments:
  Moderators:

build error

Darko Prenosil 27 October 2007 00:35:30
 Yesterdays snapshot fails to build on my NT:

gcc -O2 -fno-strict-aliasin­g -Wall -Wmissing-prototype­s -Wmissing-declarati­o
ns -I../../src/port -I../../src/include­ -I./src/include/por­t/win32 -DEXEC_BA
CKEND "-I../../src/includ­e/port/win32" -c -o path.o path.c
gcc -O2 -fno-strict-aliasin­g -Wall -Wmissing-prototype­s -Wmissing-declarati­o
ns -I../../src/port -I../../src/include­ -I./src/include/por­t/win32 -DEXEC_BA
CKEND "-I../../src/includ­e/port/win32" -c -o pipe.o pipe.c
pipe.c: In function `pgpipe':
pipe.c:32: warning: implicit declaration of function `ereport'
pipe.c:32: `LOG' undeclared (first use in this function)
pipe.c:32: (Each undeclared identifier is reported only once
pipe.c:32: for each function it appears in.)
pipe.c:32: warning: implicit declaration of function `errmsg_internal'
make[2]: *** [pipe.o] Error 1
make[2]: Leaving directory `/d/postgresql-snap­shot/src/port'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/d/postgresql-snap­shot/src'
make: *** [all] Error 2

Putting
#include "utils/elog.h"
in the beginning of the pipe.c solves the problem


However I did the build because I was trying to compile tsearch2, and it
fails too:

dict_ispell.o(.text­+0x31b):dict_ispell.­c: undefined reference to
`pg_strcasecmp'
dict_ispell.o(.text­+0x420):dict_ispell.­c: undefined reference to
`pg_strcasecmp'
dict_ispell.o(.text­+0x500):dict_ispell.­c: undefined reference to
`pg_strcasecmp'
wparser_def.o(.text­+0xc83):wparser_def.­c: undefined reference to
`pg_strcasecmp'
wparser_def.o(.text­+0xcd9):wparser_def.­c: undefined reference to
`pg_strcasecmp'
wparser_def.o(.text­+0xd02):wparser_def.­c: more undefined references to
`pg_strcasecmp' follow
ispell/SUBSYS.o(.te­xt+0xbd2):spell.c: undefined reference to
`pg_strncasecmp'
ispell/SUBSYS.o(.te­xt+0xbfc):spell.c: undefined reference to
`pg_strncasecmp'
ispell/SUBSYS.o(.te­xt+0xc15):spell.c: undefined reference to
`pg_strncasecmp'
ispell/SUBSYS.o(.te­xt+0xc2e):spell.c: undefined reference to
`pg_strncasecmp'
c:\mingw\bin\dllwra­p.exe: c:\mingw\bin\gcc exited with status 1
make: *** [libtsearch2.a] Error 1

Too late tonight to dig more...

Regards !




-------------------­--------(end of broadcast)---------­------------------
TIP 1: subscribe and unsubscribe commands go to majordomo@postgresq­l.org

Add comment
Merlin Moncure 30 June 2004 16:14:02 permanent link ]
 
Yesterdays snapshot fails to build on my NT:

Proper #include is postgres.h.
Merlin


-------------------­--------(end of broadcast)---------­------------------
TIP 7: don't forget to increase your free space map settings

Add comment
Thomas Pfau 3 March 2007 15:33:24 permanent link ]
 I downloaded perl 5.8.8 last night to build on Simh. The build died on
this error. Has anyone seen this before?

CC/DECC
/Include=[]/Standard=­Relaxed_ANSI/Prefix=­All/Obj=GLOBALS.obj/­NoList/Define=PERL_C­ORE
GLOBALS.C
EXT int PL_sig_num[] = { SIG_NUM };
...................­.........^
Missing "}".
At line number 3485 in DISK$DATA1:[­PERL-5_8_8]PERL.H;1­.

*/
No object file produced.
At line number 65 in DISK$DATA1:[­PERL-5_8_8]GLOBALS.­C;1.

Completed with 1 error(s), 0 warning(s), and
1 informational messages.
At line number 65 in DISK$DATA1:[­PERL-5_8_8]GLOBALS.­C;1.

--
tom_p
pfau@nbpfaus.net -- http://nbpfaus.net/­~pfau/

Add comment
Craig A. Berry 3 March 2007 17:57:18 permanent link ]
 At 7:33 AM -0500 3/3/07, Thomas Pfau wrote:>I downloaded perl 5.8.8 last night to build on Simh.

I've been building on SIMH as well and fixed quite a few VAX build
issues. Recent changes to vms.c:

http://public.activ­estate.com/cgi-bin/p­erlbrowse/l/vms/vms.­c

and to configure.com:

http://public.activ­estate.com/cgi-bin/p­erlbrowse/l/configur­e.com

may be of interest. In particular, I think 28448 is what you're
likely to need for the sig_num problem.

The problem here is that the fixes go into bleadperl and then
gradually get integrated into what will be 5.8.9, so with 5.8.8 there
may be an uphill battle.
--
___________________­____________________­_
Craig A. Berry
mailto:craigberry@m­ac.com

"... getting out of a sonnet is much more
difficult than getting in."
Brad Leithauser
Add comment
Thomas Pfau 3 March 2007 18:35:30 permanent link ]
 Craig A. Berry wrote:> The problem here is that the fixes go into bleadperl and then> gradually get integrated into what will be 5.8.9, so with 5.8.8 there> may be an uphill battle.>
So would I be better off to keep using 5.8.4 and wait for the next release?

--
tom_p
pfau@nbpfaus.net -- http://nbpfaus.net/­~pfau/

Add comment
Craig A. Berry 7 March 2007 06:40:41 permanent link ]
 At 10:35 AM -0500 3/3/07, Thomas Pfau wrote:
Craig A. Berry wrote:
The problem here is that the fixes go into bleadperl and then
gradually get integrated into what will be 5.8.9, so with 5.8.8 there
may be an uphill battle.
So would I be better off to keep using 5.8.4 and wait for the next release?

Since I never built 5.8.4 on VAX (or actually any version until I
acquired a virtual VAX a couple of weeks ago) I can't say with
certainty what will work for you. If you are running 5.8.4 on VAX
now, then you may want to stick with that if debugging Perl builds is
not your main interest. I certainly hope 5.8.9 will be viable on
VAX, but there are some issues I have not yet resolved and others are
popping up all the time, so there are no guarantees.

--
___________________­____________________­_
Craig A. Berry
mailto:craigberry@m­ac.com

"... getting out of a sonnet is much more
difficult than getting in."
Brad Leithauser
Add comment
Thomas Pfau 27 October 2007 00:35:30 permanent link ]
 perl-current dated 10/25 8:55

VAX/OpenVMS V7.3 on Simh

This is the MadGoat Make Utility V3.9-1
Copyright © 1992-2001, MadGoat Software. All Rights Reserved.

Compaq C V6.4-005 on OpenVMS VAX V7.3

I had to compile Ext/Digest/Sha/Sha.­c manually with optimization turned
off. After restarting the build, it ended with the following.

Making VMS/Stdio (dynamic)
Writing Descrip.MMS for VMS::Stdio
cp stdio.pm [---.lib.vms]stdio.pm
MCR simh04$dua1:[­perl-current]miniper­l.exe "-I[---.lib]" "-I[---.lib]"
-e "use ExtUtils::Mksymlist­s;" -e "Mksymlists('NAME' => 'VMS::Stdio',
'DL_FUNCS' => { }, 'DL_VARS' => [], 'FUNCLIST' => [])"
MCR simh04$dua1:[­perl-current]miniper­l.exe -e "print
""[---.lib.auto.VMS.Stdio]Stdio.olb/Include­=Stdio\n[---.lib.auto.VMS.Stdio]Stdio.olb/Li­brary\n"";"
STDIO.OPT
MCR simh04$dua1:[­perl-current]miniper­l.exe -e "print
qq{[---]PerlShr.exe/Shar­e\n}" >>STDIO.OPT
MCR simh04$dua1:[­perl-current]miniper­l.exe "-I[---.lib]" "-I[---.lib]"
"-MExtUtils::Comman­d" -e cp STDIO.OPT [---.LIB.AUTO.VMS.STDIO]STDIO.OPT
MCR simh04$dua1:[­perl-current]miniper­l.exe "-I[---.lib]" "-I[---.lib]"
[---.lib.ExtUtils]xsubpp -typemap [---.lib.ExtUtils]typemap STDIO.xs
STDIO.C
CC/DECC /Include=[]/Standard=­Relaxed_ANSI/Prefix=­All/Obj=.obj
/Define=("VERSION="­"2.3""","XS_VERSION=­""2.3""")/Include=([---])­/NoList
STDIO.c
If F$Search("[---.LIB.AUTO.VMS.STDIO]STDIO.OLB­").eqs."" Then
Library/Object/Crea­te [---.LIB.AUTO.VMS.STDIO]STDIO.OLB
Library/Object/Repl­ace [---.LIB.AUTO.VMS.STDIO]STDIO.OLB STDIO.OBJ
If F$TrnLNm("PerlShr")­.eqs."" Then Define/NoLog/User PerlShr
Sys$Share:P­erlShr.e­xe
Link /NoTrace/NoMap /Shareable=[---.LIB.AUTO.VMS.STDIO]PL_VMS__­STDIO.EXE
Stdio.opt/Option,[---]pe­rlshr_attr.opt/Optio­n
Running Mkbootstrap for VMS::Stdio ()
MCR simh04$dua1:[­perl-current]miniper­l.exe "-I[---.lib]" "-I[---.lib]"
"-MExtUtils::Comman­d" -e chmod 644 STDIO.BS
MCR simh04$dua1:[­perl-current]miniper­l.exe "-I[---.lib]" "-I[---.lib]"
"-MExtUtils::Comman­d" -e cp Stdio.bs [---.LIB.AUTO.VMS.STDIO]STDIO.BS
MCR simh04$dua1:[­perl-current]miniper­l.exe "-I[---.lib]" "-I[---.lib]"
"-MExtUtils::Comman­d" -e chmod 644 [---.LIB.AUTO.VMS.STDIO]STDIO.BS
Error in directory name
Error in directory name
Error status %X100184CC occurred when updating target DYNEXT

Add comment
 

Add new comment

As:
Login:  Password:  
 
 
  
 
Пожалуйста, относитесь к собеседникам уважительно, не используйте нецензурные слова, не злоупотребляйте заглавными буквами, не публикуйте рекламу и объявления о купле/продаже, а также материалы нарушающие сетевой этикет или УК РФ.


QAIX > PostgreSQL database development > build error 27 October 2007 00:35:30

see also:
mailing list archive
jpegs, gifs, and the PHP site
How to send a GET HTTP and redirect to…
пройди тесты:
Do you know women?
see also:
Hello!!!!!!
Aaaaaaaaaaaaa!!!!!!!!!!!! Where my ...

  Copyright © 2001—2008 QAIX
Idea: Miсhael Monashev
Помощь и задать вопросы можно в сообществе support.qaix.com.
Сообщения об ошибках оставляем в сообществе bugs.qaix.com.
Предложения и комментарии пишем в сообществе suggest.qaix.com.
Информация для родителей.
Write us at:
If you would like to report an abuse of our service, such as a spam message, please .