-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make it compile on the raspberry Pi zero
- Loading branch information
1 parent
903142b
commit ffbde69
Showing
17 changed files
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,3 +28,4 @@ host | |
*.user | ||
.vs | ||
MiSTer | ||
arm-buildroot-linux-gnueabihf_sdk-buildroot/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
# makefile to fail if any command in pipe is failed. | ||
SHELL = /bin/bash -o pipefail | ||
|
||
BASE = ./arm-buildroot-linux-gnueabihf_sdk-buildroot/bin/arm-buildroot-linux-gnueabihf | ||
|
||
CC = $(BASE)-gcc | ||
LD = $(BASE)-ld | ||
STRIP = $(BASE)-strip | ||
|
||
ifeq ($(V),1) | ||
Q := | ||
else | ||
Q := @ | ||
endif | ||
|
||
SDK_SYSROOT = arm-buildroot-linux-gnueabihf_sdk-buildroot/arm-buildroot-linux-gnueabihf/sysroot/ | ||
SDK_LIB = $(SDK_SYSROOT)/usr/lib | ||
|
||
INCLUDE = -I./ | ||
INCLUDE += -I./lib/libco | ||
INCLUDE += -I./lib/miniz | ||
INCLUDE += -I./lib/md5 | ||
INCLUDE += -I./lib/lzma | ||
INCLUDE += -I./lib/gpiod/ | ||
INCLUDE += -I./lib/libchdr/include | ||
INCLUDE += -I./lib/flac/include | ||
INCLUDE += -I./lib/flac/src/include | ||
INCLUDE += -I./lib/bluetooth | ||
INCLUDE += -I./lib/serial_server/library | ||
|
||
PRJ = MiSTer | ||
C_SRC = $(wildcard *.c) \ | ||
$(wildcard ./lib/miniz/*.c) \ | ||
$(wildcard ./lib/md5/*.c) \ | ||
$(wildcard ./lib/lzma/*.c) \ | ||
$(wildcard ./lib/flac/src/*.c) \ | ||
$(wildcard ./lib/libchdr/*.c) \ | ||
lib/libco/arm.c | ||
|
||
CPP_SRC = $(wildcard *.cpp) \ | ||
arm/scheduler.cpp \ | ||
$(wildcard ./lib/serial_server/library/*.cpp) \ | ||
$(wildcard ./support/*/*.cpp) | ||
|
||
IMG = $(wildcard *.png) | ||
|
||
IMLIB2_LIB = -L$(SDK_LIB) -lfreetype -lbz2 -lpng16 -lz -lImlib2 -lgpiod | ||
|
||
OBJ = $(C_SRC:.c=.c.o) $(CPP_SRC:.cpp=.cpp.o) $(IMG:.png=.png.o) | ||
DEP = $(C_SRC:.c=.c.d) $(CPP_SRC:.cpp=.cpp.d) | ||
|
||
DFLAGS = $(INCLUDE) -D_7ZIP_ST -DPACKAGE_VERSION=\"1.3.3\" -DRASPBERRY_PI -DUSE_SCHEDULER -DFLAC_API_EXPORTS -DFLAC__HAS_OGG=0 -DHAVE_LROUND -DHAVE_STDINT_H -DHAVE_STDLIB_H -DHAVE_SYS_PARAM_H -DENABLE_64_BIT_WORDS=0 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DVDATE=\"`date +"%y%m%d"`\" | ||
CFLAGS = $(DFLAGS) -w -Wextra -Wno-strict-aliasing -Wno-stringop-overflow -Wno-stringop-truncation -Wno-format-truncation -Wno-psabi -Wno-restrict -c -O3 | ||
LFLAGS = -lc -lstdc++ -lm -lrt $(IMLIB2_LIB) -Llib/bluetooth -lbluetooth -lpthread | ||
|
||
ifeq ($(PROFILING),1) | ||
DFLAGS += -DPROFILING | ||
endif | ||
|
||
$(PRJ): $(OBJ) | ||
$(Q)$(info $@) | ||
$(Q)$(CC) -o $@ $+ $(LFLAGS) | ||
$(Q)cp $@ [email protected] | ||
$(Q)$(STRIP) $@ | ||
|
||
.PHONY: sdk | ||
sdk: | ||
tar xzf ../MiSTeX-buildroot/rpi-zero/buildroot/output/images/arm-buildroot-linux-gnueabihf_sdk-buildroot.tar.gz | ||
|
||
.PHONY: clean | ||
clean: | ||
$(Q)rm -f *.elf *.map *.lst *.user *~ $(PRJ) | ||
$(Q)rm -rf obj DTAR* x64 | ||
$(Q)find . \( -name '*.o' -o -name '*.d' -o -name '*.bak' -o -name '*.rej' -o -name '*.org' \) -exec rm -f {} \; | ||
|
||
%.c.o: %.c | ||
$(Q)$(info $<) | ||
$(Q)$(CC) $(CFLAGS) -std=gnu99 -o $@ -c $< 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):\([0-9]\+\):/\1(\2,\ \3):/g' | ||
|
||
%.cpp.o: %.cpp | ||
$(Q)$(info $<) | ||
$(Q)$(CC) $(CFLAGS) -std=gnu++14 -Wno-class-memaccess -o $@ -c $< 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):\([0-9]\+\):/\1(\2,\ \3):/g' | ||
|
||
%.png.o: %.png | ||
$(Q)$(info $<) | ||
$(Q)$(LD) -r -b binary -o $@ $< 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):\([0-9]\+\):/\1(\2,\ \3):/g' | ||
|
||
|
||
ifneq ($(MAKECMDGOALS), clean) | ||
-include $(DEP) | ||
endif | ||
%.c.d: %.c | ||
$(Q)$(CC) $(DFLAGS) -MM $< -MT $@ -MT $*.c.o -MF $@ 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):\([0-9]\+\):/\1(\2,\ \3):/g' | ||
|
||
%.cpp.d: %.cpp | ||
$(Q)$(CC) $(DFLAGS) -MM $< -MT $@ -MT $*.cpp.o -MF $@ 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):\([0-9]\+\):/\1(\2,\ \3):/g' | ||
|
||
# Ensure correct time stamp | ||
main.cpp.o: $(filter-out main.cpp.o, $(OBJ)) |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.