blob: d92ac6c89f0e93c748c0635a5b8e8d221d72451c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#
# Makefile.include for all RISCV targets
#
# Debian only really cares about 64 bit going forward
#
ifeq ($(TARGET_NAME),riscv64)
DOCKER_IMAGE=debian-riscv64-cross
DOCKER_CROSS_COMPILER=riscv64-linux-gnu-gcc
endif
|