Browse Source

code signing

tags/0.3.0
boB Rudis 3 years ago
parent
commit
2bf7ad520f
No known key found for this signature in database GPG Key ID: 1D7529BE14E2BBA9
  1. 6
      Makefile
  2. 1
      NEWS.md

6
Makefile

@ -1,8 +1,14 @@
# replace this with yours if you want to codesign your own binary
IDENTITY="Apple Development: Bob Rudis (9V3BZ2VH79)"
archinfo:
$(CC) archinfo.c -o x86_app -target x86_64-apple-macos10.12
$(CC) archinfo.c -o arm_app -target arm64-apple-macos11
lipo -create -output archinfo x86_app arm_app && rm x86_app arm_app
sign: archinfo
codesign --force --verify --verbose --sign ${IDENTITY} archinfo
clean:
rm -f archinfo

1
NEWS.md

@ -1,5 +1,6 @@
# 0.2.0 • 2021-03-14
- removed Xcode dependency
- added codesigning option
- added option for either columnar output or ndjson output
# 0.1.0 • 2021-03-13

Loading…
Cancel
Save