mirror of
https://github.com/rfivet/stm32bringup.git
synced 2024-11-16 09:36:01 -05:00
Avoid using ~ for home directory as the linker seems not to expand it properly. Let gmake expand $(HOME) instead.
This commit is contained in:
parent
d5b4417571
commit
3d6cd1bdc2
3
Makefile
3
Makefile
@ -5,7 +5,8 @@
|
|||||||
|
|
||||||
ifeq (linux, $(findstring linux, $(MAKE_HOST)))
|
ifeq (linux, $(findstring linux, $(MAKE_HOST)))
|
||||||
#GCCDIR = ~/Packages/gcc-arm-none-eabi-9-2019-q4-major
|
#GCCDIR = ~/Packages/gcc-arm-none-eabi-9-2019-q4-major
|
||||||
GCCDIR = ~/Packages/gcc-arm-none-eabi-9-2020-q2-update
|
#GCCDIR = ~/Packages/gcc-arm-none-eabi-9-2020-q2-update
|
||||||
|
GCCDIR = $(HOME)/Packages/gcc-arm-none-eabi-9-2020-q2-update
|
||||||
else
|
else
|
||||||
#GCCDIR = "D:/Program Files (x86)/GNU Tools ARM Embedded/9 2019-q4-major"
|
#GCCDIR = "D:/Program Files (x86)/GNU Tools ARM Embedded/9 2019-q4-major"
|
||||||
GCCDIR = "D:/Program Files (x86)/GNU Arm Embedded Toolchain/9 2020-q2-update"
|
GCCDIR = "D:/Program Files (x86)/GNU Arm Embedded Toolchain/9 2020-q2-update"
|
||||||
|
Loading…
Reference in New Issue
Block a user