zsh-workers
 help / color / mirror / code / Atom feed
From: Peter Stephenson <p.w.stephenson@ntlworld.com>
To: Daniel Qarras <dqarras@yahoo.com>, zsh-workers@sunsite.dk
Subject: Re: Compile errors on AIX 5.2
Date: Tue, 19 Jun 2007 21:31:07 +0100	[thread overview]
Message-ID: <200706192031.l5JKV7BL008397@pws-pc.ntlworld.com> (raw)
In-Reply-To: Message from Daniel Qarras <dqarras@yahoo.com>  of "Tue, 19 Jun 2007 11:55:35 PDT." <20070619185535.77735.qmail@web36806.mail.mud.yahoo.com>

Daniel Qarras wrote:
> > Sorry about the noise, that was obvious, the prototype just didn't
> > match the function.

Another one I should have spotted; I've fixed that.

> But this one seems more hairy:
> > 
> > gcc  -s -shared -o cap.so -Wl,-bI:../../Src/zsh.export
> > -Wl,-bE:cap.export -emodentry cap..o  ../../Src/modentry..o  -liconv
> > -ldl -lcurses -lm  -lc 
> > cap..o(.pr+0x32):cap.c: relocation truncated to fit: 0x03
> > module_features
> 
> Well, this one seems to be caused by GNU binutils-2.15 ld, native AIX
> ld works ok here.

module_features is file static, so I don't see a lot I can do about this
anyway, but if renaming it or something such helps I can do it.

> But after this a problem comes up from AIX specific
> defines that I cannot grok.
> 
> ld: 0711-317 ERROR: Undefined symbol: .enables_
> ld: 0711-317 ERROR: Undefined symbol: .features_

I didn't update the newuser module for feature support; most systems
don't care but AIX insists on linking all module functions.  This
should fix it.

Index: Src/Modules/newuser.c
===================================================================
RCS file: /cvsroot/zsh/zsh/Src/Modules/newuser.c,v
retrieving revision 1.5
diff -u -r1.5 newuser.c
--- Src/Modules/newuser.c	7 Feb 2006 05:19:21 -0000	1.5
+++ Src/Modules/newuser.c	19 Jun 2007 20:26:37 -0000
@@ -40,6 +40,20 @@
 }
 
 /**/
+int
+features_(Module m, char ***features)
+{
+    return 1;
+}
+
+/**/
+int
+enables_(Module m, int **enables)
+{
+    return 0;
+}
+
+/**/
 static int
 check_dotfile(const char *dotdir, const char *fname)
 {

-- 
Peter Stephenson <p.w.stephenson@ntlworld.com>
Web page now at http://homepage.ntlworld.com/p.w.stephenson/


  reply	other threads:[~2007-06-19 20:31 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-06-19 18:01 Daniel Qarras
2007-06-19 18:10 ` Peter Stephenson
2007-06-19 18:19   ` Daniel Qarras
2007-06-19 18:21     ` Daniel Qarras
2007-06-19 18:55       ` Daniel Qarras
2007-06-19 20:31         ` Peter Stephenson [this message]
2007-06-19 20:37           ` Daniel Qarras

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200706192031.l5JKV7BL008397@pws-pc.ntlworld.com \
    --to=p.w.stephenson@ntlworld.com \
    --cc=dqarras@yahoo.com \
    --cc=zsh-workers@sunsite.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).