From 437ec45d6612fb2a21b5a74e5b47562e8799e7cd Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Tue, 9 Sep 2014 20:15:49 -0700 Subject: [PATCH] Binutils with patch (brought forward a decade) for vmx128. --- .gitignore | 7 + Vagrantfile | 46 ++ third_party/binutils/README.md | 6 + .../binutils/binutils-2.24-vmx128.patch | 396 ++++++++++++++++++ third_party/binutils/build.sh | 65 +++ xenia-build.py | 54 +-- 6 files changed, 543 insertions(+), 31 deletions(-) create mode 100644 Vagrantfile create mode 100644 third_party/binutils/README.md create mode 100644 third_party/binutils/binutils-2.24-vmx128.patch create mode 100644 third_party/binutils/build.sh diff --git a/.gitignore b/.gitignore index 1a83a9bd8..c976ca4a3 100644 --- a/.gitignore +++ b/.gitignore @@ -75,5 +75,12 @@ build-test/ # ============================================================================== # Local-only paths # ============================================================================== + +.vagrant attic/ +third_party/binutils/binutils-2.24.tar.gz +third_party/binutils/bin/ +third_party/binutils/powerpc-none-elf/ +third_party/binutils/share/ +third_party/binutils/binutils* third_party/vasm/ diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 000000000..c659c6438 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,46 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +VAGRANTFILE_API_VERSION = "2" + +$script = <