Skip to content
This repository was archived by the owner on Jun 24, 2022. It is now read-only.

Commit 6e1027b

Browse files
Should sign the jsc binary
https://bugs.webkit.org/show_bug.cgi?id=72332 Reviewed by David Kilzer. * Configurations/JSC.xcconfig: * entitlements.plist: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100223 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 2206b55 commit 6e1027b

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

Source/JavaScriptCore/ChangeLog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2011-11-14 Gavin Barraclough <[email protected]>
2+
3+
Should sign the jsc binary
4+
https://bugs.webkit.org/show_bug.cgi?id=72332
5+
6+
Reviewed by David Kilzer.
7+
8+
* Configurations/JSC.xcconfig:
9+
* entitlements.plist: Added.
10+
111
2011-11-14 Filip Pizlo <[email protected]>
212

313
DFG's inline references to objects should be tracked

Source/JavaScriptCore/Configurations/JSC.xcconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,5 @@
2323

2424
INSTALL_PATH = $(JAVASCRIPTCORE_FRAMEWORKS_DIR)/JavaScriptCore.framework/Resources
2525
PRODUCT_NAME = jsc;
26+
CODE_SIGN_ENTITLEMENTS = $(CODE_SIGN_ENTITLEMENTS_$(REAL_PLATFORM_NAME));
27+
CODE_SIGN_ENTITLEMENTS_iphoneos = entitlements.plist;
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>dynamic-codesigning</key>
6+
<true/>
7+
</dict>
8+
</plist>

0 commit comments

Comments
 (0)