Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added Apple Silicon support
  • Loading branch information
vit9696 committed Aug 27, 2022
1 parent 1279144 commit 434820c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Changelog.md
Expand Up @@ -3,6 +3,7 @@ Acidanthera dmidecode Changelog

#### v3.4a
- Synced with dmidecode a1a2258f
- Added Apple Silicon support

#### v3.3c
- Fixed compatibility for macOS 10.7+
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -32,8 +32,8 @@ LDFLAGS ?=

UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
CFLAGS += -mmacosx-version-min=10.7
LDFLAGS += -Wl,-framework,CoreFoundation -Wl,-framework,IOKit -mmacosx-version-min=10.7
CFLAGS += -mmacosx-version-min=10.7 -arch arm64 -arch x86_64
LDFLAGS += -Wl,-framework,CoreFoundation -Wl,-framework,IOKit -mmacosx-version-min=10.7 -arch arm64 -arch x86_64
endif

DESTDIR =
Expand Down

0 comments on commit 434820c

Please sign in to comment.