mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-18 20:35:45 +01:00
Compare commits
10 Commits
21f4d04a21
...
7bdee8215f
| Author | SHA1 | Date | |
|---|---|---|---|
| 7bdee8215f | |||
| fb52517f06 | |||
| 63df7430b7 | |||
| 527b1e2b16 | |||
| 08ab721622 | |||
| 0baa1ac9e8 | |||
| 9cb0631df8 | |||
| 008604ff5e | |||
| 56427673cb | |||
| 93db7681eb |
@@ -16,19 +16,19 @@
|
||||
#define htole16(x) (x)
|
||||
#define htole32(x) (x)
|
||||
#define htole64(x) (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)
|
||||
#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)
|
||||
#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||
#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 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 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) -Iinclude -Ilib/glad/include
|
||||
CFLAGS += $(shell pkg-config --cflags glfw3 libarchive) -Ilib/include -Ilib/glad/include
|
||||
LDFLAGS += $(shell pkg-config --libs glfw3 libarchive) -lm
|
||||
|
||||
# get source files
|
||||
|
||||
Reference in New Issue
Block a user