Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
iOS
Sequoia4iOS
Compare Revisions
222394513b40473a677ef59fb2da3fbeda75be85...3b4b432400c9827ecaf2f7a185333ea1488f4e5c
Source
3b4b432400c9827ecaf2f7a185333ea1488f4e5c
Select Git revision
...
Target
222394513b40473a677ef59fb2da3fbeda75be85
Select Git revision
Compare
Commits (2)
works around: cross building for iOS specific targets fails as unsupported for crate-type cdylib
· f5d05645
Andreas Buff
authored
Nov 26, 2019
f5d05645
comments out workaround. We can safely ignore the "dropping unsupported crate" warning
· 3b4b4324
Andreas Buff
authored
Nov 26, 2019
3b4b4324
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
build.sh
build.sh
+12
-0
No files found.
build.sh
View file @
3b4b4324
...
@@ -24,6 +24,18 @@ cd sequoia
...
@@ -24,6 +24,18 @@ cd sequoia
SEQUOIA_DIR
=
$PWD
SEQUOIA_DIR
=
$PWD
#####################################################################
# Workaround
# for warning: dropping unsupported crate type `cdylib` for target `aarch64-apple-ios`
# Currently commented out. It seems to build fine even dropping the above mentioned crate type.
#####################################################################
# rm the line ..-
#PROBLEM_TOML_FILE=$SEQUOIA_DIR/openpgp-ffi/Cargo.toml
#printf -v escapedSearchTerm "%q" "\"cdylib\", "
#sed -i.bak "/${escapedSearchTerm}/ d" $PROBLEM_TOML_FILE
## ... and replace it with a working version (without cdylib)
#echo "crate-type = [\"lib\", \"staticlib\"]" >> $PROBLEM_TOML_FILE
#####################################################################
#####################################################################
# Get dependency sources
# Get dependency sources
#####################################################################
#####################################################################
...
...