diff options
| author | John Wilbert Villamor <lameguy64@gmail.com> | 2020-01-06 09:11:51 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-06 09:11:51 +0800 |
| commit | e5d2799a8d2b929a3ed00e9af60a4f9a42840df3 (patch) | |
| tree | a61030dc2c433249d6a0c30ecfa3de2b296f4675 /libpsn00b | |
| parent | a32f227dbd17fad1c4dc29201aafebd03b4fae07 (diff) | |
| parent | 15263ff19694f0a6e03eb3d32021e0121e91ab19 (diff) | |
| download | psn00bsdk-e5d2799a8d2b929a3ed00e9af60a4f9a42840df3.tar.gz | |
Merge pull request #11 from greenaddress/readme_typo
toolchain readme typo and don't set GCC_BASE if already set
Diffstat (limited to 'libpsn00b')
| -rw-r--r-- | libpsn00b/common.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libpsn00b/common.mk b/libpsn00b/common.mk index 83b45e9..d15d4a5 100644 --- a/libpsn00b/common.mk +++ b/libpsn00b/common.mk @@ -2,9 +2,15 @@ # You may need to modify these values to match with your toolchain setup. # GCC version +ifndef GCC_VERSION + GCC_VERSION = 7.4.0 +endif + # GCC base paths +ifndef GCC_BASE + ifeq "$(OS)" "Windows_NT" # For Windows GCC_BASE = /c/mipsel-unknown-elf @@ -15,6 +21,8 @@ GCC_BASE = /usr/local/mipsel-unknown-elf endif +endif + # Toolchain prefix PREFIX = mipsel-unknown-elf- |
