Skip to content

Commit

Permalink
Merge branch 'main' into tailwind
Browse files Browse the repository at this point in the history
  • Loading branch information
ethteck committed Dec 10, 2024
2 parents 3d55b72 + 4ef64cb commit bbced5c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backend/coreapp/m2c_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ class M2CError(Exception):
class M2CWrapper:
@staticmethod
def get_triple(compiler: Compiler, arch: str) -> str:
if "mips" in arch:
if "mipse" in arch:
t_arch = "mipsel"
elif "mips" in arch:
t_arch = "mips"
elif "ppc" in arch:
t_arch = "ppc"
Expand Down

0 comments on commit bbced5c

Please sign in to comment.