Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,15 @@ else
else ifneq (,$(findstring linux,$(gcc_machine)))
detected_openhome_system = Linux
endif
ifeq ($(gcc_machine),arm-none-linux-gnueabi)
detected_openhome_architecture = armel
ifneq (,$(findstring arm,$(gcc_machine)))
ifneq (,$(findstring linux-gnueabi,$(gcc_machine)))
detected_openhome_architecture = armel
endif
endif
ifeq ($(gcc_machine),arm-linux-gnueabi)
detected_openhome_architecture = armel
endif
ifeq ($(gcc_machine),arm-linux-gnueabihf)
detected_openhome_architecture = armhf
ifneq (,$(findstring arm,$(gcc_machine)))
ifneq (,$(findstring linux-gnueabihf,$(gcc_machine)))
detected_openhome_architecture = armhf
endif
endif
ifneq (,$(findstring i686,$(gcc_machine)))
detected_openhome_architecture = x86
Expand Down