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