We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5d265d commit 08811e6Copy full SHA for 08811e6
project-template-ios/internal/nsld.sh
@@ -66,14 +66,12 @@ if [[ -z "$NS_LD" ]]; then
66
NS_LD="$DEFAULT_LD"
67
else
68
echo "NSLD: Skipping link because toolchain clang not found: $DEFAULT_LD (TOOLCHAIN_DIR may be missing)."
69
- exit 0
70
fi
71
72
73
# If NS_LD was explicitly set to the default path but it's missing, skip as well.
74
if [[ "$NS_LD" == "$DEFAULT_LD" && ! -x "$NS_LD" ]]; then
75
echo "NSLD: Skipping link because toolchain clang not found: $NS_LD (TOOLCHAIN_DIR may be missing)."
76
+else
+ "$NS_LD" "$@"
77
78
-
79
-"$NS_LD" "$@"
0 commit comments