mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-03-22 10:41:43 +00:00
Add -foverlap-locals - something we really should make possible
This commit is contained in:
parent
3072ce7eba
commit
ac26c2f2f2
1 changed files with 2 additions and 0 deletions
2
gmqcc.h
2
gmqcc.h
|
@ -987,12 +987,14 @@ typedef struct {
|
|||
/*===================================================================*/
|
||||
/* list of -f flags, like -fdarkplaces-string-table-bug */
|
||||
enum {
|
||||
OVERLAP_LOCALS,
|
||||
DP_STRING_TABLE_BUG,
|
||||
OMIT_NULLBYTES,
|
||||
|
||||
NUM_F_FLAGS
|
||||
};
|
||||
static const opt_flag_def opt_flag_list[] = {
|
||||
{ "overlap-locals", LONGBIT(OVERLAP_LOCALS) },
|
||||
{ "darkplaces-string-table-bug", LONGBIT(DP_STRING_TABLE_BUG) },
|
||||
{ "omit-nullbytes", LONGBIT(OMIT_NULLBYTES) }
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue