mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-17 11:54:33 +01:00
macosx notarization: added signed avr* tool and some entitlements
This commit is contained in:
parent
054562f754
commit
443650279c
@ -514,11 +514,11 @@
|
||||
<target name="macosx-build-avr-toolchain" unless="light_bundle">
|
||||
<antcall target="avr-toolchain-bundle">
|
||||
<param name="unpack_target" value="untar-native"/>
|
||||
<param name="gcc_archive_file" value="avr-gcc-${AVRGCC-VERSION}-x86_64-apple-darwin14.tar.bz2"/>
|
||||
<param name="gcc_archive_file" value="avr-gcc-${AVRGCC-VERSION}-x86_64-apple-darwin14-signed.tar.bz2"/>
|
||||
<param name="gcc_version" value="${AVRGCC-VERSION}"/>
|
||||
<param name="avrdude_archive_file" value="avrdude-${AVRDUDE-VERSION}-x86_64-apple-darwin12.tar.bz2"/>
|
||||
<param name="avrdude_archive_file" value="avrdude-${AVRDUDE-VERSION}-x86_64-apple-darwin12-signed.tar.bz2"/>
|
||||
<param name="avrdude_version" value="${AVRDUDE-VERSION}"/>
|
||||
<param name="arduinoOTA_archive_file" value="arduinoOTA-${arduinoOTA-VERSION}-darwin_amd64.tar.bz2"/>
|
||||
<param name="arduinoOTA_archive_file" value="arduinoOTA-${arduinoOTA-VERSION}-darwin_amd64-signed.tar.bz2"/>
|
||||
<param name="arduinoOTA_version" value="${arduinoOTA-VERSION}"/>
|
||||
</antcall>
|
||||
|
||||
@ -556,7 +556,7 @@
|
||||
|
||||
<!-- Sign app -->
|
||||
<exec executable="codesign" dir="macosx/work" failonerror="true">
|
||||
<arg line="--keychain "${macosx-sign-keychain}" --force -s "${macosx-sign-id}" --deep -v Arduino.app/" />
|
||||
<arg line="--keychain "${macosx-sign-keychain}" --force -s "${macosx-sign-id}" --timestamp --options runtime --deep -v Arduino.app/" />
|
||||
</exec>
|
||||
|
||||
<!-- Check for successful signing -->
|
||||
|
@ -0,0 +1 @@
|
||||
d36e992b402ff0f41e458c527ebd433827c55c1c
|
@ -0,0 +1 @@
|
||||
c641845446426e3fabf5d1b3f01ef7921ae227cf
|
@ -0,0 +1 @@
|
||||
0694b2f647b9cf847e38dacd6b54c6a8591dc323
|
8
build/macosx/gcc.entitlements
Normal file
8
build/macosx/gcc.entitlements
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>com.apple.security.cs.disable-library-validation</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
16
build/macosx/jre2.entitlements
Normal file
16
build/macosx/jre2.entitlements
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>com.apple.security.cs.allow-jit</key>
|
||||
<true/>
|
||||
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
|
||||
<true/>
|
||||
<key>com.apple.security.cs.disable-executable-page-protection</key>
|
||||
<true/>
|
||||
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
|
||||
<true/>
|
||||
<key>com.apple.security.cs.disable-library-validation</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
Loading…
x
Reference in New Issue
Block a user