diff --git a/Makefile b/Makefile index 778735a..08baa96 100644 --- a/Makefile +++ b/Makefile @@ -3,8 +3,7 @@ SHELL = /bin/bash -o pipefail # using gcc version 5.4.1 20161213 (Linaro GCC 5.4-2017.01-rc2) -# This is the location of the linaro compiler in the wsbu/toolchain-linaro docker container -BASE = /opt/linaro/bin/arm-linux-gnueabihf +BASE = arm-linux-gnueabihf CC = $(BASE)-gcc LD = $(CC) diff --git a/README.md b/README.md deleted file mode 100644 index fe47695..0000000 --- a/README.md +++ /dev/null @@ -1,50 +0,0 @@ -# Main_MiSTer - -Goal of this is to sort out container building for - -# Development Setup: Boot2Docker, Windows 7 - -- Download and install Docker - you won't be able to do Docker for Windows unless you are on a newer version of the OS. -- Once installed and tested, ssh into your boot2docker guest machine -- Issue this command to pull down a working linaro toolchain: -``` -docker pull wsbu/toolchain-linaro -``` -- Issue this command to run a bash on the linaro container and mount the repo root folder inside the container at /source: -``` -docker run -ti -v :/source wsbu/toolchain-linaro bash -``` -- Go into the /source folder -``` -cd /source -``` -- Make MiSTer -``` -root@d6f7eba5be6f:/source# make -sxmlc.c -ini_parser.cpp -minimig_hdd.cpp -cfg.cpp -spi.cpp -user_io.cpp -archie.cpp -st_ikbd.cpp -tzx2wav.cpp -x86.cpp -battery.cpp -hardware.cpp -st_tos.cpp -input.cpp -minimig_boot.cpp -brightness.cpp -DiskImage.cpp -file_io.cpp -fpga_io.cpp -minimig_config.cpp -sharpmz.cpp -minimig_fdd.cpp -menu.cpp -osd.cpp -main.cpp -MiSTer -```