Thread: WIN32 Build?
View Single Post

   
  #4 (permalink)  
Old 04-09-2008, 10:57 AM
DEV
 
Posts: n/a
Default Re: WIN32 Build?

Shoaib,
That looks like it worked thank you!

Bruce,
I am using the following compliler:
C:\Dev\postgresql-8.1.4\src\interfaces\libpq\Release>nmake --help

Microsoft (R) Program Maintenance Utility Version 7.10.3077
Copyright (C) Microsoft Corporation. All rights reserved.

Which came with
Microsoft Visual C++ .NET Version 7.1.3088

Don't know if that helps or not!

-----Original Message-----
From: Bruce Momjian [mailto:bruce@momjian.us]
Sent: Wednesday, August 09, 2006 3:41 PM
To: Shoaib Mir
Cc: DEV; pgsql-general@postgresql.org
Subject: Re: [GENERAL] WIN32 Build?

Shoaib Mir wrote:
> I too faced same kind of a problem building libpq on Windows and as a
> solution to it removed "inline" from the file
> "\backend\utils\mb\wchar.c"
>
> Did the following ... changed "static inline int" to "static int"
> instead at a couple of places in the wchar.c file
>
> Run "nmake" after doing this specific change and hopefully it will
> solve the problem.


Interesting. It seem the key line is here:

> > cl : Command line warning D4029 : optimization is not available in the
> > standard edition compiler


So the "standard" version doesn't support inline functions. To fix
that, I think we need some compiler define test to tell us if it is a
"standard" edition compiler.

--
Bruce Momjian bruce@momjian.us
EnterpriseDB http://www.enterprisedb.com

+ If your life is a hard drive, Christ can be your backup. +




---------------------------(end of broadcast)---------------------------
TIP 4: Have you searched our list archives?

http://archives.postgresql.org

Reply With Quote