Browse Source

When compiling for device, build both the armv7 and the armv7s target

Felix Paul Kühne 12 years ago
parent
commit
5983956be7
1 changed files with 7 additions and 4 deletions
  1. 7 4
      buildAspenProject.sh

+ 7 - 4
buildAspenProject.sh

@@ -193,13 +193,16 @@ spushd ImportedSources
 spushd vlc/extras/package/ios
 info "Building vlc"
 args=""
-if [ "$PLATFORM" = "Simulator" ]; then
-    args="${args} -s"
-fi
 if [ "$VERBOSE" = "yes" ]; then
     args="${args} -v"
 fi
-./build.sh ${args} -k "${SDK}"
+if [ "$PLATFORM" = "Simulator" ]; then
+    args="${args} -s"
+    ./build.sh ${args} -k "${SDK}"
+else
+    ./build.sh -a armv7 ${args} -k "${SDK}" && ./build.sh -a armv7s ${args} -k "${SDK}"
+fi
+
 spopd
 
 spushd VLCKit