Makefile: Changes in PATH for Windows environments.
Added quotation marks when setting PATH - without it compilation on Cygwin, etc. may lead to an error. PATH on Windows can contain spaces e.g. 'C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common' which causes problems.
This commit is contained in:
parent
bf5eb90f34
commit
f2031692d8
6
Makefile
6
Makefile
@ -165,9 +165,9 @@ $(TOOLCHAIN)/xtensa-lx106-elf/sysroot/usr/lib/libhal.a: $(TOOLCHAIN)/bin/xtensa-
|
||||
|
||||
_libhal:
|
||||
autoreconf -i
|
||||
PATH=$(TOOLCHAIN)/bin:$(PATH) ./configure --host=xtensa-lx106-elf --prefix=$(TOOLCHAIN)/xtensa-lx106-elf/sysroot/usr
|
||||
PATH=$(TOOLCHAIN)/bin:$(PATH) make
|
||||
PATH=$(TOOLCHAIN)/bin:$(PATH) make install
|
||||
PATH="$(TOOLCHAIN)/bin:$(PATH)" ./configure --host=xtensa-lx106-elf --prefix=$(TOOLCHAIN)/xtensa-lx106-elf/sysroot/usr
|
||||
PATH="$(TOOLCHAIN)/bin:$(PATH)" make
|
||||
PATH="$(TOOLCHAIN)/bin:$(PATH)" make install
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user