mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-03 17:05:47 +00:00
fix setting cross compilation variables. this is ported over from Capstone
This commit is contained in:
parent
203876d4f6
commit
342a68f9da
8
Makefile
8
Makefile
|
@ -70,10 +70,10 @@ AR ?= ar
|
|||
RANLIB ?= ranlib
|
||||
STRIP ?= strip
|
||||
else
|
||||
CC ?= $(CROSS)-gcc
|
||||
AR ?= $(CROSS)-ar
|
||||
RANLIB ?= $(CROSS)-ranlib
|
||||
STRIP ?= $(CROSS)-strip
|
||||
CC = $(CROSS)-gcc
|
||||
AR = $(CROSS)-ar
|
||||
RANLIB = $(CROSS)-ranlib
|
||||
STRIP = $(CROSS)-strip
|
||||
GLIB = "-L/usr/$(CROSS)/lib/ -lglib-2.0"
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue