| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | "Merlin Moncure" <merlin(dot)moncure(at)rcsonline(dot)com> |
| Cc: | pgsql-hackers-win32(at)postgresql(dot)org |
| Subject: | Re: profiling on win32 |
| Date: | 2005-08-26 04:45:52 |
| Message-ID: | 5422.1125031552@sss.pgh.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-hackers-win32 |
"Merlin Moncure" <merlin(dot)moncure(at)rcsonline(dot)com> writes:
> 4. to compile postgresql for profiling (assumes you already have mingw,
> etc. installed).
> a. do make clean, make, and make install as normal.
> b. edit makefile.global and add -pg to the end of cflags line.
> c. do make clean, and make, and make install of just the backend. you
> can do this by running make from backend folder.
You shouldn't have to touch Makefile.global; there's a parameter built
into the makefiles for this. Just do
cd .../src/backend
make clean
make PROFILE="-pg" all
(Quoting syntax might be different on Windows, but as long as it's
GNU make I'd expect this to work.)
I tend to abuse the PROFILE option for any old random compile/link flags
I'd like to add to a particular build ...
regards, tom lane
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Merlin Moncure | 2005-08-26 15:08:06 | Re: profiling on win32 |
| Previous Message | Dave Page | 2005-08-25 20:42:48 | Re: profiling on win32 |