473,473 Members | 1,974 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

error durring compilation

Hallo,
I tried to compile PGSQL 7.4 and I got error (durring make):
ar: command not found

What is it? Whe I can found it?
I have:

$ uname -a
SunOS ... 5.8 Generic_108528-03 sun4u sparc SUNW,UltraSPARC-IIi-cEngine

$ make --version
GNU Make 3.80

etc.

-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/

---------------------------(end of broadcast)---------------------------
TIP 7: don't forget to increase your free space map settings

Nov 12 '05 #1
4 2128

"ar" is a tool used to create and maintain portable archives and libraries.PostgreSQL uses this command to create static libraries.

Just do the following command.

# whereis ar
ar: /usr/bin/ar
#

Regs,
Durai.

----- Original Message -----
From: <ko**@chalu.cz>
To: <pg***********@postgresql.org>
Sent: Thursday, November 20, 2003 9:21 PM
Subject: [GENERAL] error durring compilation

Hallo,
I tried to compile PGSQL 7.4 and I got error (durring make):
ar: command not found

What is it? Whe I can found it?
I have:

$ uname -a
SunOS ... 5.8 Generic_108528-03 sun4u sparc SUNW,UltraSPARC-IIi-cEngine

$ make --version
GNU Make 3.80

etc.



-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/

---------------------------(end of broadcast)---------------------------
TIP 7: don't forget to increase your free space map settings

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.538 / Virus Database: 333 - Release Date: 11/10/2003
Nov 12 '05 #2
hmm
thanks. I do not have in standard path, but I have it.
Do I need it for database running and must I add it into standard PATH or it is
needed only for compilation?

Jiri

Cituji z emailu od Durai <vi**************@lycos.co.uk>:

"ar" is a tool used to create and maintain portable archives and libraries.
PostgreSQL uses this command to create static libraries.

Just do the following command.

# whereis ar
ar: /usr/bin/ar
#

Regs,
Durai.

----- Original Message -----
From: <ko**@chalu.cz>
To: <pg***********@postgresql.org>
Sent: Thursday, November 20, 2003 9:21 PM
Subject: [GENERAL] error durring compilation

Hallo,
I tried to compile PGSQL 7.4 and I got error (durring make):
ar: command not found

What is it? Whe I can found it?
I have:

$ uname -a
SunOS ... 5.8 Generic_108528-03 sun4u sparc SUNW,UltraSPARC-IIi-cEngine

$ make --version
GNU Make 3.80

etc.

-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/

---------------------------(end of broadcast)---------------------------
TIP 7: don't forget to increase your free space map settings

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.538 / Virus Database: 333 - Release Date: 11/10/2003



-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/

---------------------------(end of broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to ma*******@postgresql.org

Nov 12 '05 #3

It is need on compilation time. If you linked the static library on
compilation to the postgresql binaries, you do not need when you running the
database.

To link the static library, Edit src/Makefile.global file, there will be a
entry like "-lpq".
Change this to like
"<base_dir>/postgresql-7.4/src/interfaces/libpq/libpq.a"

Regs,
Durai.

----- Original Message -----
From: <ko**@chalu.cz>
To: "Durai" <vi**************@lycos.co.uk>
Cc: <pg***********@postgresql.org>
Sent: Thursday, November 20, 2003 9:53 PM
Subject: Re: [GENERAL] error durring compilation

hmm
thanks. I do not have in standard path, but I have it.
Do I need it for database running and must I add it into standard PATH or it is needed only for compilation?

Jiri

Cituji z emailu od Durai <vi**************@lycos.co.uk>:

"ar" is a tool used to create and maintain portable archives and libraries. PostgreSQL uses this command to create static libraries.

Just do the following command.

# whereis ar
ar: /usr/bin/ar
#

Regs,
Durai.

----- Original Message -----
From: <ko**@chalu.cz>
To: <pg***********@postgresql.org>
Sent: Thursday, November 20, 2003 9:21 PM
Subject: [GENERAL] error durring compilation

Hallo,
I tried to compile PGSQL 7.4 and I got error (durring make):
ar: command not found

What is it? Whe I can found it?
I have:

$ uname -a
SunOS ... 5.8 Generic_108528-03 sun4u sparc SUNW,UltraSPARC-IIi-cEngine
$ make --version
GNU Make 3.80

etc.

-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/

---------------------------(end of broadcast)--------------------------- TIP 7: don't forget to increase your free space map settings

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.538 / Virus Database: 333 - Release Date: 11/10/2003



-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.538 / Virus Database: 333 - Release Date: 11/10/2003
---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

Nov 12 '05 #4
Thank you
Jiri

Cituji z emailu od Durai <vi**************@lycos.co.uk>:

It is need on compilation time. If you linked the static library on
compilation to the postgresql binaries, you do not need when you running the
database.

To link the static library, Edit src/Makefile.global file, there will be a
entry like "-lpq".
Change this to like
"<base_dir>/postgresql-7.4/src/interfaces/libpq/libpq.a"

Regs,
Durai.

----- Original Message -----
From: <ko**@chalu.cz>
To: "Durai" <vi**************@lycos.co.uk>
Cc: <pg***********@postgresql.org>
Sent: Thursday, November 20, 2003 9:53 PM
Subject: Re: [GENERAL] error durring compilation

hmm
thanks. I do not have in standard path, but I have it.
Do I need it for database running and must I add it into standard PATH or

it is
needed only for compilation?

Jiri

Cituji z emailu od Durai <vi**************@lycos.co.uk>:

"ar" is a tool used to create and maintain portable archives and libraries. PostgreSQL uses this command to create static libraries.

Just do the following command.

# whereis ar
ar: /usr/bin/ar
#

Regs,
Durai.

----- Original Message -----
From: <ko**@chalu.cz>
To: <pg***********@postgresql.org>
Sent: Thursday, November 20, 2003 9:21 PM
Subject: [GENERAL] error durring compilation
> Hallo,
> I tried to compile PGSQL 7.4 and I got error (durring make):
> ar: command not found
>
> What is it? Whe I can found it?
> I have:
>
> $ uname -a
> SunOS ... 5.8 Generic_108528-03 sun4u sparc SUNW,UltraSPARC-IIi-cEngine >
> $ make --version
> GNU Make 3.80
>
> etc.
>
>
>
> -------------------------------------------------
> This mail sent through IMP: http://horde.org/imp/
>
> ---------------------------(end of broadcast)--------------------------- > TIP 7: don't forget to increase your free space map settings
>
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.538 / Virus Database: 333 - Release Date: 11/10/2003



-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.538 / Virus Database: 333 - Release Date: 11/10/2003



-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

Nov 12 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Daniel | last post by:
is it possible to install multiple copys of the same .net web service on the same computer but with different service names specified durring instalation?
4
by: konf | last post by:
Hallo, I tried to compile PGSQL 7.4 and I got error (durring make): ar: command not found What is it? Whe I can found it? I have: $ uname -a SunOS ... 5.8 Generic_108528-03 sun4u sparc...
10
by: Brian Conway | last post by:
I have no idea what is going on. I have a Login screen where someone types in their login information and this populates a datagrid based off of the login. Works great in debug and test through...
0
by: Catherine Tarbox via .NET 247 | last post by:
I am getting a Microsoft Visual C++ Runtime Library error whenrunning an application I built in VB.NET. The error occursinfrequently and at different time during execution. The errortext is: ...
0
by: psilu | last post by:
Hi , I have created a virtual directory and copied my web services file to corresponding physical directory. But when i am trying to discover the webservice from virtual directory i am getting...
2
by: tshad | last post by:
This has been driving me crazy. I have been trying to get the error handling working on my system and can get parts of it working and others won't work at all. I found that you can't access...
2
by: Balasubramanian Ramanathan | last post by:
I am getting this error while precompiling a website for deployment. Errorstack information error ASPRUNTIME: Object '/c107cdc3_b65c_4b6c_9d8f_82fe5a457fdb/ctofbyvagqsbvrgsc7xzxa5o_9.rem' has...
0
by: Daniel | last post by:
What do FTP servers do when file send fails durring a file upload? Are partial files ever written? does ftp protocol cover this?
21
by: Mark Rae | last post by:
Hi, I have an ASP.NET 2 web application (not web site) project and am using a web deployment project to deploy to the testing, then the production server. All has been working well for months...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.