mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-18 09:45:45 +01:00
Compare commits
10 Commits
7bdee8215f
...
21f4d04a21
| Author | SHA1 | Date | |
|---|---|---|---|
| 21f4d04a21 | |||
| 017df1bee4 | |||
| d933931829 | |||
| f020347f71 | |||
| b13de01f24 | |||
| 3a0704710c | |||
| b72b8eaee1 | |||
| 55635d44ae | |||
| 4fa0b41e7a | |||
| 8a5afd6915 |
@@ -16,19 +16,19 @@
|
||||
#define htole16(x) (x)
|
||||
#define htole32(x) (x)
|
||||
#define htole64(x) (x)
|
||||
#define be16toh(x) __bswap16(x)
|
||||
#define be32toh(x) __bswap32(x)
|
||||
#define be64toh(x) __bswap64(x)
|
||||
#define htobe16(x) __bswap16(x)
|
||||
#define htobe32(x) __bswap32(x)
|
||||
#define htobe64(x) __bswap64(x)
|
||||
#define be16toh(x) __bswap_16(x)
|
||||
#define be32toh(x) __bswap_32(x)
|
||||
#define be64toh(x) __bswap_64(x)
|
||||
#define htobe16(x) __bswap_16(x)
|
||||
#define htobe32(x) __bswap_32(x)
|
||||
#define htobe64(x) __bswap_64(x)
|
||||
#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||
#define le16toh(x) __bswap16(x)
|
||||
#define le32toh(x) __bswap32(x)
|
||||
#define le64toh(x) __bswap64(x)
|
||||
#define htole16(x) __bswap16(x)
|
||||
#define htole32(x) __bswap32(x)
|
||||
#define htole64(x) __bswap64(x)
|
||||
#define le16toh(x) __bswap_16(x)
|
||||
#define le32toh(x) __bswap_32(x)
|
||||
#define le64toh(x) __bswap_64(x)
|
||||
#define htole16(x) __bswap_16(x)
|
||||
#define htole32(x) __bswap_32(x)
|
||||
#define htole64(x) __bswap_64(x)
|
||||
#define be16toh(x) (x)
|
||||
#define be32toh(x) (x)
|
||||
#define be64toh(x) (x)
|
||||
|
||||
2
makefile
2
makefile
@@ -51,7 +51,7 @@ PROF = rel
|
||||
CFLAGS += -DNDEBUG -O2
|
||||
endif
|
||||
|
||||
CFLAGS += $(shell pkg-config --cflags glfw3 libarchive) -Ilib/include -Ilib/glad/include
|
||||
CFLAGS += $(shell pkg-config --cflags glfw3 libarchive) -Iinclude -Ilib/glad/include
|
||||
LDFLAGS += $(shell pkg-config --libs glfw3 libarchive) -lm
|
||||
|
||||
# get source files
|
||||
|
||||
Reference in New Issue
Block a user