Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
6ba959ee
Commit
6ba959ee
authored
Nov 18, 2000
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AIX patches from Andreas.
parent
31e3634a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
14 deletions
+7
-14
doc/FAQ_AIX
doc/FAQ_AIX
+3
-4
src/template/aix
src/template/aix
+4
-10
No files found.
doc/FAQ_AIX
View file @
6ba959ee
...
...
@@ -12,8 +12,7 @@ if you have readline or libz there:
libpq++ does not work because xlC does not have the string and bool classes.
compiling the few files, that fail, with g++ does work.
Compiling PostgreSQL with gcc (2.95.2) on AIX does work if you use the
configure option: --with-template=aix_gcc
Compiling PostgreSQL with gcc (2.95.2) on AIX also works.
There will probably be warnings about int8 - int64 redefines
and
0.0/0.0
d
evision warnings,
which you can safely ignore.
There will probably be warnings about int8 - int64 redefines
,
0.0/0.0
d
ivision and duplicate symbol warnings
which you can safely ignore.
src/template/aix
View file @
6ba959ee
if test "$GCC" = yes ; then
CFLAGS=
-pipe
CFLAGS=
'-O2 -pipe'
else # not GCC
CFLAGS='-O2 -qmaxmem=16384 -qsrcmsg -qlonglong'
case $host_os in
aix3.2.5)
CFLAGS='-qchars=signed -qmaxmem=8192 -qhalt=w -qsrcmsg'
;;
aix4.1)
CFLAGS='-qchars=signed -qmaxmem=8192 -qhalt=w -qsrcmsg -qcheck=divzero'
;;
aix4.2 | aix4.3)
CFLAGS='-qmaxmem=16384 -qhalt=w -qsrcmsg -qlanglvl=extended -qlonglong'
;;
aix3.2.5 | aix4.1*)
CFLAGS='-qmaxmem=16384 -qsrcmsg' ;;
esac
fi # not GCC
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment