1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-30 02:32:53 +08:00

Inverting polarity for compiler

This commit is contained in:
Andreas.Olofsson 2020-03-26 12:20:00 -04:00
parent bf277f3d2f
commit cbb8f79fd2

View File

@ -2,7 +2,8 @@
#############################################################################
# elf2hex <arch> <inputfile> <outputfile>
#
# Uses '<arch>-unknown-elf-objcopy'
# Arch: e (for epiphany)
# rv32i/rv64i/etc (for riscv)
#
#############################################################################
import os
@ -14,10 +15,10 @@ HEX = sys.argv[3]
#############################################
#SETUP
if(ARCH=="rv32i"):
GCCROOT="riscv64-unknown-elf-"
else:
if(ARCH=="e"):
GCCROOT="e-"
else:
GCCROOT="riscv64-unknown-elf-"
##############################################
#RUN OBJCOPY