Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
f6943a9f
Commit
f6943a9f
authored
25 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Aix patches from Zeugswetter Andrea
parent
b39c6d00
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/FAQ_AIX
+17
-28
17 additions, 28 deletions
doc/FAQ_AIX
with
17 additions
and
28 deletions
doc/FAQ_AIX
+
17
−
28
View file @
f6943a9f
From: ZEUGSWETTER Andreas IZ5 <Andreas.Zeugswetter@telecom.at>
To: "'Thomas Lockhart'" <lockhart@alumni.caltech.edu>
Cc: "'hackers@postgresql.org'" <hackers@postgresql.org>
Subject: Re: [HACKERS] Call for updates!
Date: Tue, 14 September 1999
Mon Apr 17 14:01:23 EDT 2000
> Hi. I'd like to update the ports list in the docs to include
> references to v6.5 for the various platforms for which PostgreSQL-6.5b
> has been tested
.
AIX 4.3.2 with native IBM compiler xlc 3.6.4 passes all regression tests.
Other versions of OS and compiler should also work. If you don't have
a powerpc there might be differences in the geometry regression test
.
PostgreSQL 6.5.2 compiles and regresses ok on AIX 4.3.2
using the IBM compiler.
gcc has problems with shared libs that are not easily resolved.
Use the following configure flags in addition to your own:
./configure --without-CXX
and if you have readline there:
--with-includes=/usr/local/include --with-libraries=/usr/local/lib
The following regression tests fail because of different rounding
behavior or error messages:
int2 .. failed -- same as int2-i386-netbsd.out
int4 .. failed -- same as int4-i386-netbsd.out
geometry .. failed -- Some Zero Values with minus sign (-0)
abstime .. failed
tinterval .. failed
horology .. failed
libpq++ does not work because xlC does not have the string and bool classes.
compiling the few files, that fail, with g++ does work.
It has the following problems:
Compiling PostgreSQL with gcc (2.95.2) on AIX does work if you use the
configure
option: --template=aix_gcc
1. AIX has int8,int16,int32,int64 in /usr/include/inttypes.h
--> configure fails to find snprintf support for int8
(because it includes stdio.h)
I feel this is an IBM problem. I changed my /usr/include/inttypes.h
Either do that or comment out int8-int32 in src/include/c.h.
2. libpq++ does not work because xlC does not have the string and bool classes.
it does compile/work with gcc
With the current compiler flags the redefines of int8 - int64 that prior
versions
had a problem with are not a problem any more.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment