forked from Dniel97/segatools
build: don't hardcode cross-toolchain path
It doesn't seem to be needed, and this makes the build work for environments where MinGW-w64 cross-toolchains get installed someplace else (e.g. macOS with Homebrew to /usr/local).
This commit is contained in:
parent
40e2b03766
commit
1cf9e1a1b0
@ -1,7 +1,7 @@
|
|||||||
[binaries]
|
[binaries]
|
||||||
c = '/usr/bin/i686-w64-mingw32-gcc'
|
c = 'i686-w64-mingw32-gcc'
|
||||||
ar = '/usr/bin/i686-w64-mingw32-ar'
|
ar = 'i686-w64-mingw32-ar'
|
||||||
strip = '/usr/bin/i686-w64-mingw32-strip'
|
strip = 'i686-w64-mingw32-strip'
|
||||||
|
|
||||||
[host_machine]
|
[host_machine]
|
||||||
system = 'windows'
|
system = 'windows'
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[binaries]
|
[binaries]
|
||||||
c = '/usr/bin/x86_64-w64-mingw32-gcc'
|
c = 'x86_64-w64-mingw32-gcc'
|
||||||
ar = '/usr/bin/x86_64-w64-mingw32-ar'
|
ar = 'x86_64-w64-mingw32-ar'
|
||||||
strip = '/usr/bin/x86_64-w64-mingw32-strip'
|
strip = 'x86_64-w64-mingw32-strip'
|
||||||
|
|
||||||
[host_machine]
|
[host_machine]
|
||||||
system = 'windows'
|
system = 'windows'
|
||||||
|
Loading…
Reference in New Issue
Block a user