bug-tar
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug-tar] quick changes for MIPSpro C compilation


From: James Bigler
Subject: [Bug-tar] quick changes for MIPSpro C compilation
Date: Mon, 11 Apr 2005 16:08:32 -0600
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20040616

Hi,

Just downloaded 1.15.1 version to compile on my SGI IRIX system. We don't install the GCC compilers, so I had to use the MIPSpro compiler version Comp7.3.1.3m. I built a 32 bit build and it worked fine once I made a couple of changes to get it to compile. I didn't actually try to change the compiler options to get it to compile it. The manual code changes were simple enough.

% diff lib/argp-help.c~ lib/argp-help.c
1058c1058,1064
<   struct pentry_state pest = { entry, stream, hhstate, 1, state };
---
>   struct pentry_state pest;
>
>   pest.entry = entry;
>   pest.stream = stream;
>   pest.hhstate = hhstate;
>   pest.first = 1;
>   pest.state = state;
% diff lib/argp-parse.c~ lib/argp-parse.c
741c741
<       static const char bad_key_err[] =
---
>       static const char* bad_key_err =

James




reply via email to

[Prev in Thread] Current Thread [Next in Thread]