cleanup
SVN-Revision: 5106
This commit is contained in:
parent
9737163928
commit
a0a752a477
2 changed files with 1 additions and 13 deletions
|
@ -27,6 +27,6 @@ $(UTILS_BUILD_DIR):
|
||||||
mkdir -p $(UTILS_BUILD_DIR)
|
mkdir -p $(UTILS_BUILD_DIR)
|
||||||
|
|
||||||
$(UTILS_BUILD_DIR)/%: src/%.c
|
$(UTILS_BUILD_DIR)/%: src/%.c
|
||||||
$(CC) -O2 -I $(STAGING_DIR)/include-host -o $@ $(patsubst $(UTILS_BUILD_DIR)/%,src/%.c,$@)
|
$(CC) -O2 -I $(STAGING_DIR)/include-host -include endian.h -o $@ $(patsubst $(UTILS_BUILD_DIR)/%,src/%.c,$@)
|
||||||
chmod 755 $@
|
chmod 755 $@
|
||||||
|
|
||||||
|
|
|
@ -44,18 +44,6 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#if defined(__APPLE__)
|
|
||||||
#include <machine/endian.h>
|
|
||||||
#include <machine/byte_order.h>
|
|
||||||
#define __BYTE_ORDER BYTE_ORDER
|
|
||||||
#define __BIG_ENDIAN BIG_ENDIAN
|
|
||||||
#define bswap_16(x) NXSwapShort(x)
|
|
||||||
#define bswap_32(x) NXSwapInt(x)
|
|
||||||
#define bswap_64(x) NXSwapLongLong(x)
|
|
||||||
#else
|
|
||||||
#include <endian.h>
|
|
||||||
#include <byteswap.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __BYTE_ORDER == __BIG_ENDIAN
|
#if __BYTE_ORDER == __BIG_ENDIAN
|
||||||
#define STORE32_LE(X) bswap_32(X)
|
#define STORE32_LE(X) bswap_32(X)
|
||||||
|
|
Loading…
Reference in a new issue