8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 22:43:03 +01:00

Doc notes

This commit is contained in:
Paul Reeves 2023-03-30 12:15:21 +02:00
parent bdece9f348
commit 18ad25f4ad

View File

@ -267,13 +267,16 @@
; Some more strings to distinguish the name of final executable
; shipping with debug symbols should not be confused with actual debug builds
#ifdef ship_pdb
#define pdb_str="-withDebugSymbols"
#else
#define pdb_str=""
#endif
; This is intended for builds that have been built with the debug flag
; So far we have never actually released such a build.
#if GetEnv("FBBUILD_BUILDTYPE") == "debug"
#define debug_str="-withDebugSymbols"
#define debug_str="-debugbuild"
#else
#define debug_str=""
#endif