mirror of
https://github.com/hashcat/hashcat.git
synced 2025-05-29 12:18:53 +00:00
Makefile: prevent make failure with Apple Silicon in case of partial rebuild
This commit is contained in:
parent
f840574aab
commit
2dd820a084
@ -93,6 +93,7 @@
|
|||||||
- User Options: added --metal-compiler-runtime option
|
- User Options: added --metal-compiler-runtime option
|
||||||
- Hardware Monitor: avoid sprintf in src/ext_iokit.c
|
- Hardware Monitor: avoid sprintf in src/ext_iokit.c
|
||||||
- Help: show supported hash-modes only with -hh
|
- Help: show supported hash-modes only with -hh
|
||||||
|
- Makefile: prevent make failure with Apple Silicon in case of partial rebuild
|
||||||
|
|
||||||
* changes v6.2.5 -> v6.2.6
|
* changes v6.2.5 -> v6.2.6
|
||||||
|
|
||||||
|
@ -646,6 +646,11 @@ endif
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
obj/combined.NATIVE.a: $(NATIVE_OBJS)
|
obj/combined.NATIVE.a: $(NATIVE_OBJS)
|
||||||
|
ifeq ($(UNAME),Darwin)
|
||||||
|
ifeq ($(IS_APPLE_SILICON),1)
|
||||||
|
$(RM) -f obj/combined.NATIVE.a
|
||||||
|
endif
|
||||||
|
endif
|
||||||
$(AR) rcs $@ $^
|
$(AR) rcs $@ $^
|
||||||
|
|
||||||
ifeq ($(UNAME),Darwin)
|
ifeq ($(UNAME),Darwin)
|
||||||
|
Loading…
Reference in New Issue
Block a user