forked from mirrors/nixpkgs
darwin.trash: fix on aarch64-darwin
None of these clang options should be necessary with the nixpkgs stdenv infrastructure, and the -arch was breaking Apple Silicon builds.
This commit is contained in:
parent
bca7162d60
commit
35a1ca8a0a
|
@ -7,7 +7,7 @@ index 5e4306f..9c975fc 100644
|
|||
@echo ---- Compiling:
|
||||
@echo ======================================
|
||||
- $(CC) -O2 -Wall -Wextra -Wpartial-availability -Wno-unguarded-availability -force_cpusubtype_ALL -mmacosx-version-min=10.7 -arch i386 -arch x86_64 -framework AppKit -framework ScriptingBridge -o $@ $(SOURCE_FILES)
|
||||
+ $(CC) -O2 -Wall -Wextra -Wpartial-availability -Wno-unguarded-availability -force_cpusubtype_ALL -mmacosx-version-min=10.7 -arch x86_64 -framework AppKit -framework ScriptingBridge -o $@ $(SOURCE_FILES)
|
||||
+ $(CC) -O2 -Wall -Wextra -Wpartial-availability -Wno-unguarded-availability -framework AppKit -framework ScriptingBridge -o $@ $(SOURCE_FILES)
|
||||
|
||||
analyze:
|
||||
@echo
|
||||
|
|
Loading…
Reference in a new issue