Browse Source

Cleanup

master
cancel 6 years ago
parent
commit
085a540f9b
  1. 4
      base.h

4
base.h

@ -7,13 +7,11 @@
#include <string.h>
#include <unistd.h>
// clang or gcc or msvc or other
// clang or gcc or other
#if defined(__clang__)
#define ORCA_OPT_MINSIZE __attribute__((minsize))
#elif defined(__GNUC__)
#define ORCA_OPT_MINSIZE __attribute__(("Os"))
#elif defined(_MSC_VER)
#define ORCA_OPT_MINSIZE
#else
#define ORCA_OPT_MINSIZE
#endif

Loading…
Cancel
Save