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
95668f0d
Commit
95668f0d
authored
23 years ago
by
Peter Eisentraut
Browse files
Options
Downloads
Patches
Plain Diff
Minor improvements
parent
41acf3d8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/FAQ_IRIX
+16
-19
16 additions, 19 deletions
doc/FAQ_IRIX
with
16 additions
and
19 deletions
doc/FAQ_IRIX
+
16
−
19
View file @
95668f0d
...
@@ -3,7 +3,7 @@ Frequently Asked Questions (FAQ) for PostgreSQL 7.2
...
@@ -3,7 +3,7 @@ Frequently Asked Questions (FAQ) for PostgreSQL 7.2
IRIX Specific
IRIX Specific
TO BE READ IN CONJUNCTION WITH THE NORMAL FAQ
TO BE READ IN CONJUNCTION WITH THE NORMAL FAQ
=======================================================
=======================================================
last updated: $Date: 2001/12/
03 19:33:35
$
last updated: $Date: 2001/12/
19 18:50:48
$
current maintainer: Luis Amigo (lamigo@atc.unican.es)
current maintainer: Luis Amigo (lamigo@atc.unican.es)
original author: Luis Amigo (lamigo@atc.unican.es)
original author: Luis Amigo (lamigo@atc.unican.es)
...
@@ -26,35 +26,32 @@ and r12000(ip35) processors, running IRIX 6.5.5m, 6.5.12 and 6.5.13 with
...
@@ -26,35 +26,32 @@ and r12000(ip35) processors, running IRIX 6.5.5m, 6.5.12 and 6.5.13 with
MIPSPro compilers version 7.30, 7.3.1.2m and 7.3.
MIPSPro compilers version 7.30, 7.3.1.2m and 7.3.
Aside from the PostgreSQL source distribution, you will need GNU make
Aside from the PostgreSQL source distribution, you will need GNU make
(SGI's make will not do), and MIPSPro full ANSI C compiler.
(SGI's make will not do), and
the
MIPSPro full ANSI C compiler.
Until now t
here are problems trying to
install with GNU's gcc, i
t is a known
T
here are problems trying to
build with GCC. I
t is a known
gcc bug
gcc bug
(not fixed a
t current date,
version 3.0) using functions that return
(not fixed a
s of
version 3.0)
related to
using functions that return
some
kind of structures. This bug affects functions like
inet_ntoa,
certain
kind
s
of structures. This bug affects functions like
inet_lnaof, inet_netof, inet_makeaddr and semctl. It is
supposed to be fixed
inet_ntoa,
inet_lnaof, inet_netof, inet_makeaddr and semctl. It is
by forcing code to link those functions with
libgcc, but this has not been
supposed to be fixed
by forcing code to link those functions with
tested yet.
libgcc, but this has not been
tested yet.
1.2) Anything special about the build/install procedure?
1.2) Anything special about the build/install procedure?
In order to compile with cc you will need to:
In order to compile with cc you will need to
execute
:
configure
with-CC=cc
CC=cc ./
configure
Or y
ou may
edit postgres.../
src/templates/irix5
Y
ou may
want to edit
src/templates/irix5
to include something like:
including something like:
CC=cc
CFLAGS='-O2'
CFLAGS='-O2'
LDFLAGS='-O2'
LDFLAGS='-O2'
It is a good place to improve performance o
n p
ostgre
sql
, because here you
It is a good place to improve performance o
f P
ostgre
SQK
, because here you
may use all MIPSPro power generating specific objects, see man cc.
may use all MIPSPro power generating specific objects, see man cc.
O
ther known problem is include location, it may be different from some
Ano
ther known problem is include location, it may be different from some
compiler installations to others
, if you are getting
something like:
compiler installations to others
. This may manifest itself with
something like:
cc-1020 cc: ERROR File = pqcomm.c, Line = 427
cc-1020 cc: ERROR File = pqcomm.c, Line = 427
The identifier "TCP_NODELAY" is undefined.
The identifier "TCP_NODELAY" is undefined.
...
@@ -62,8 +59,8 @@ cc-1020 cc: ERROR File = pqcomm.c, Line = 427
...
@@ -62,8 +59,8 @@ cc-1020 cc: ERROR File = pqcomm.c, Line = 427
if (setsockopt(port->sock, IPPROTO_TCP, TCP_NODELAY,
if (setsockopt(port->sock, IPPROTO_TCP, TCP_NODELAY,
Some versions include TCP definitions in <sys/xti.h>, so it is necessary to
Some versions include TCP definitions in <sys/xti.h>, so it is necessary to
add #include <sys/xti.h> in
/
src/backend/libpq/pqcomm.c and in
add #include <sys/xti.h> in src/backend/libpq/pqcomm.c and in
src/interfaces/libpq/fe-connect.c
src/interfaces/libpq/fe-connect.c
.
1.3) OK, it seemed to build and install, but the regression test fails.
1.3) OK, it seemed to build and install, but the regression test fails.
...
...
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