Skip to content

Commit

Permalink
fix OS_SIZE extraction for aarch64; fixes #33
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Beyeler committed Dec 2, 2017
1 parent e352de7 commit f62bf50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion carlsim/configure.mk
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ OSUPPER = $(shell uname -s 2>/dev/null | tr "[:lower:]" "[:upper:]")
OSLOWER = $(shell uname -s 2>/dev/null | tr "[:upper:]" "[:lower:]")

# Flags to detect 32-bit or 64-bit OS platform
OS_SIZE = $(shell uname -m | sed -e "s/i.86/32/" -e "s/x86_64/64/" -e "s/armv7l/32/")
OS_SIZE = $(shell uname -m | sed -e "s/i.86/32/" -e "s/x86_64/64/" -e "s/armv7l/32/" -e "s/aarch64/64/")
OS_ARCH = $(shell uname -m | sed -e "s/i386/i686/")

# search at Darwin (unix based info)
Expand Down

0 comments on commit f62bf50

Please sign in to comment.