Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ios12commoncrypto #114

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Conversation

radianttap
Copy link

@radianttap radianttap commented Aug 1, 2018

This approach, as explained in this SO answer works rather well. It checks if CommonCrypto is available and if yes (on iOS 12) it does nothing.
On earlier version it automatically creates CommonCrypto module map.

Fixes #102

Aleksandar Vacic added 3 commits July 31, 2018 20:42
- remove CommonCrypto file(s) from the file system
- added new aggregate target which conditionally builds CommonCrypto
- link to that target in all 4 of our targets

Per: https://stackoverflow.com/a/42852743/108859

re kylef#102
- no additional target
- run script before Compile Sources
re kylef#102
KeimyPlaza
KeimyPlaza previously approved these changes Aug 17, 2018
Copy link

@KeimyPlaza KeimyPlaza left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is better solution, compatibility for old version

crisbarril
crisbarril previously approved these changes Sep 4, 2018
Copy link

@crisbarril crisbarril left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work. This should work.

@b-onc
Copy link

b-onc commented Sep 5, 2018

Can we get this merged, please?

kylebrennan
kylebrennan previously approved these changes Sep 10, 2018
@KeimyPlaza
Copy link

@kylef Can you accept this PR? Xcode 10 GM is already released

Thanks

quver
quver previously approved these changes Sep 17, 2018
@quver
Copy link

quver commented Sep 17, 2018

@radianttap could you resolve conflicts?

@radianttap
Copy link
Author

@quver I would gladly, but not sure how. What I should do..?

In master there is no project file. This whole fix is actually updating the project file.

@quver
Copy link

quver commented Sep 17, 2018

Have you tried to merge kylef:master to your branch?

@radianttap
Copy link
Author

Just tried locally and ends up with unbuildable mess. :( Conflict resolution suggests deleting the pbxproj file. There is no solution I can pull of here.

The problem here is that kylef/jwa branch (which seems like a private dev branch) was cherry picked into master for no reason I can understand.
I think that master should be rolled back a bit – this commit seems appropriate – and the merging would be possible then.

Should simplify CocoaPods integration
@radianttap
Copy link
Author

Take a look at the master branch on my fork, where I did just that - reverted to mentioned commit and merge ios12commoncrypto branch into it. It merges without conflicts.

@jeannustre
Copy link

@radianttap It breaks compatibility with Xcode 9.4.1 for me. Is it expected ?

@radianttap
Copy link
Author

@radianttap It breaks compatibility with Xcode 9.4.1 for me. Is it expected ?

@jeannustre From last week yes. My fork/master is my personal space :) thus I already updated it to Swift 4.2. Also with podspec branch, which I'm personally using in a client project. I could not wait anymore, I needed this to work in Xcode 10, Swift 4.2.

The ios12commoncrypto branch remains intact so it could be merged here (after proposed changes to the master here).

@KeimyPlaza
Copy link

KeimyPlaza commented Sep 26, 2018

@radianttap About podspec file, Is this line correct if the CommonCrypto folder was deleted?

spec.preserve_paths = 'CommonCrypto/{shim.h,module.modulemap}'

thks a lot

@radianttap
Copy link
Author

@radianttap About podspec file, Is this line correct if the CommonCrypto folder was deleted?

spec.preserve_paths = 'CommonCrypto/{shim.h,module.modulemap}'

Probably not. I did not see any error, thus pod seems to ignore useless instructions.

@judithgomlor
Copy link

judithgomlor commented Oct 3, 2018

@radianttap It breaks compatibility with Xcode 9.4.1 for me. Is it expected ?

@jeannustre From last week yes. My fork/master is my personal space :) thus I already updated it to Swift 4.2. Also with podspec branch, which I'm personally using in a client project. I could not wait anymore, I needed this to work in Xcode 10, Swift 4.2.

Exists compatibility with Xcode 9.4.1 and Xcode 10.0 if we add next line in podspec:

spec.script_phase = { :name => 'CommonCrypto', 
                        :script => 'COMMON_CRYPTO_DIR="${SDKROOT}/usr/include/CommonCrypto"
                        if [ -f "${COMMON_CRYPTO_DIR}/module.modulemap" ]
                        then
                          echo "CommonCrypto already exists, skipping"
                        else
                          FRAMEWORK_DIR="${BUILT_PRODUCTS_DIR}/CommonCrypto.framework"

                          if [ -d "${FRAMEWORK_DIR}" ]; then
                            echo "${FRAMEWORK_DIR} already exists, so skipping the rest of the script."
                            exit 0
                          fi

                          mkdir -p "${FRAMEWORK_DIR}/Modules"
                          echo "module CommonCrypto [system] {
                            header \\"${SDKROOT}/usr/include/CommonCrypto/CommonCrypto.h\\"
                            export *
                          }" >> "${FRAMEWORK_DIR}/Modules/module.modulemap"

                          ln -sf "${SDKROOT}/usr/include/CommonCrypto" "${FRAMEWORK_DIR}/Headers"
                        fi', 
                        :execution_position => :before_compile }

@juanvcarbonell
Copy link

Please guys, merge this...

@alexandrekarst
Copy link

Hi, we are providing a third-party library which contains a dependency to JSONWebToken. Could we help in any way to make this fix merged?

@carlosalban
Copy link

Anything we can do to move this along?

@dylanreich
Copy link

Just another bump :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.