No need to remove function names, they don't slow anything down and they're invaluable for crash debugging.

This commit is contained in:
Alcaro 2016-05-06 20:20:16 +02:00
parent 77649b2f23
commit eae911bcd2
2 changed files with 4 additions and 6 deletions

View File

@ -120,7 +120,6 @@ ifeq ($(DEBUG), 1)
else else
CFLAGS += -O3 -ffast-math CFLAGS += -O3 -ffast-math
CXXFLAGS += -O3 -ffast-math CXXFLAGS += -O3 -ffast-math
LDCXXFLAGS += -s
endif endif
CFLAGS += -Wall -Wno-unused-result -Wno-unused-variable -I. CFLAGS += -Wall -Wno-unused-result -Wno-unused-variable -I.

View File

@ -113,7 +113,6 @@ void content_playlist_get_index_by_path(content_playlist_t *playlist,
*crc32 = playlist->entries[i].crc32; *crc32 = playlist->entries[i].crc32;
break; break;
} }
} }
bool content_playlist_entry_exists(content_playlist_t *playlist, bool content_playlist_entry_exists(content_playlist_t *playlist,