Skip to content

Commit

Permalink
Makefile.cross-compiles: Fix softfloat flag not being honored for mip…
Browse files Browse the repository at this point in the history
…sle. (fatedier#4176)
  • Loading branch information
ddscentral authored Apr 22, 2024
1 parent 885278c commit eaae212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.cross-compiles
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ app:
if [ "$${os}" = "linux" ] && [ "$${arch}" = "arm" ] && [ "$${extra}" != "" ] ; then \
flags=GOARM=$${extra}; \
target_suffix=$${os}_$${arch}_$${extra}; \
elif [ "$${os}" = "linux" ] && [ "$${arch}" = "mips" ] && [ "$${extra}" != "" ] ; then \
elif [ "$${os}" = "linux" ] && ([ "$${arch}" = "mips" ] || [ "$${arch}" = "mipsle" ]) && [ "$${extra}" != "" ] ; then \
flags=GOMIPS=$${extra}; \
fi; \
echo "Build $${os}-$${arch}$${extra:+ ($${extra})}..."; \
Expand Down

0 comments on commit eaae212

Please sign in to comment.