Location to specify C compiler option in C extension

From: Demitri Muna <postgresql(at)demitri(dot)com>
To: pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Location to specify C compiler option in C extension
Date: 2018-02-23 18:35:31
Message-ID: 5186A762-290F-42CC-851E-E9D873CE51B0@demitri.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi,

I’m writing a C extension and have successfully based my Makefile on existing templates. This conveniently hides the details of the full Makefile provided by "pg_config --pgxs”. Which variable would be the appropriate one to specify the ‘-std=c99’ compiler flag? I’ve tried many and still get warnings that this flag should suppress (specifically, "ISO C90 forbids mixed declarations and code”). These are the variables I currently define:

EXTENSION
DATA
PGFILEDESC
MODULE_big
PG_CPPFLAGS (this one seemed like the right place)
SHLIB_LINK
OBJS
PG_CONFIG
PGXS

A workaround has been:

OBJS = file1.o file2.o CPPFLAGS+=-Wdeclaration-after-statement

but it’s not exactly the same thing.

Thanks,
Demitri

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Keiko Oda 2018-02-23 18:58:41 Trigger file behavior with the standby
Previous Message Demitri Muna 2018-02-23 18:23:12 Re: Getting a primitive numeric value from "DatumGetNumeric"?