Building VLC1.1.0 for IOS with Xcode4.5 Mountain Lion

macOS specific usage questions
ReadyXuMin
Blank Cone
Blank Cone
Posts: 19
Joined: 22 Aug 2011 13:20

Building VLC1.1.0 for IOS with Xcode4.5 Mountain Lion

Postby ReadyXuMin » 29 Jan 2013 20:13

VLC1.1.0 for IOS is a little out of date. Since Xcode and some sources have been changed. Compiling VLC1.1.0 for IOS is not easy. I made it once about one year ago. I don't remember how I made it any more. Yesterday I started working on it, and finally I made it again today. Since most information about building VLC for IOS on the Internet is slightly out of date and hard to follow. I want to share my experience here.
I didn't get a macbook, I'm just happen to get a VMware Virtual Machine installed Mountain Lion and Xcode4.5. So I use it. But I suggest using Mac computer.
Here's my environment:
  • lenovo Z470 i5 8GRAM
    VMware Workstation 9
    Max os10.8 64bit Mountain Lion
    Xcode4.5 IOS6
You also need Internet connection during the compiling.
I assume you already get a mac and installed with Xcode4.5. Here we go!

1.Check whether GCC is installed or not.
after Xcode 4.2 in Lion, gcc is an optional component for Xcode. So we must check it.
Open a terminal , type

Code: Select all

gcc -v
if it shows this

Code: Select all

-bash: gcc : command not found
then your need to install gcc first. if it shows something like "...gcc version 4.2.1..." then go to step 2.
Here's how to install gcc: Xcode-->Preferences-->Downloads-->Components. then Click install Command Line Tools
2.Download three source tars form http://www.videolan.org/vlc/download-ios.html, unpack them.
3.rename the folder you just unpacked.
VLC-iOS-1.1.0-sources ----> vlc
MediaLibraryKit-1.1.0-sources ----> MediaLibraryKit
MobileVLC-1.1.0-sources ----> MobileVLC
4.Put them under one folder then move MobileVLC\buildMobileVLC.sh to that folder.
So here's that folder looks like
┎----vlc

┣----MediaLibraryKit

┣----MobileVLC

┗----buildMobileVLC.sh
5. open /vlc/extras/contrib/bootstrap with text editor.
find this part and add EXTRA_LDFLAGS="${EXTRA_LDFLAGS} -isysroot ${IOS_SDK_ROOT}"

Code: Select all

... ios) echo 'HAVE_IOS = 1' >> config.mak EXTRA_LDFLAGS="${EXTRA_LDFLAGS} -isysroot ${IOS_SDK_ROOT}" if test -z "$IOS_SDK_ROOT"; then ...
6.vlc/extras/contrib/src/Makefile
add --disable-asm\

Code: Select all

FFMPEGCONF += \ --disable-debug \ --enable-gpl \ --enable-postproc \ --disable-ffprobe \ --disable-ffserver \ --disable-ffmpeg \ --disable-ffplay \ --disable-devices \ --disable-protocols \ --disable-avfilter \ --disable-asm\ --disable-network
or you'll see this

Code: Select all

error: invalid operand in inline asm: 'adds $1, ${2:R}, ${2:Q}, lsr #31 mvnne $1, #1<<31 eorne $0, $1, ${2:R}, asr #31 ' make[2]: *** [libavcodec/audioconvert.o] Error 1 make[1]: *** [.ffmpeg] Error 2 make: *** [using-src] Error 2
7. vlc\extras\package\ios\build_for_iOS.sh
find them and change

Code: Select all

DEVROOT=`xcode-select -print-path`/Platforms/iPhone${PLATFORM}.platform/Developer IOS_SDK_ROOT=${DEVROOT}/SDKs/iPhone${PLATFORM}6.0.sdk" export IOS_SDK_ROOT export CPP="xcrun cc -E" export CXXCPP="xcrun c++ -E" export CC="${DEVROOT}/usr/bin/[color=gcc" export OBJC="${DEVROOT}/usr/bin/[color=gcc" export CXX="${DEVROOT}/usr/bin/[color=g++"
8. /vlc/extras/contrib/src/Makefile
find this

Code: Select all

...(cd $@; echo|$(CC) -iquote . -E - || sed -i 's/-iquote /-I/' libfaad/Makefile.am; sh ./bootstrap)...
remove ; sh ./bootstrap

Code: Select all

...(cd $@; echo|$(CC) -iquote . -E - || sed -i 's/-iquote /-I/' libfaad/Makefile.am)...
or you may see this error

Code: Select all

./bootstrap: line 12: aclocal: command not found make[1]: *** [faad2] Error 127 make: *** [using-src] Error 2
9. /vlc/extras/contrib/Makefile
find this

Code: Select all

ifdef HAVE_DARWIN_OS CONTRIBREV=34 contrib-macosx-$(ARCH)-$(CONTRIBREV).tar.bz2: $(WGET) http://downloads.videolan.org/pub/videolan/testing/contrib/$@
remove /testing

Code: Select all

ifdef HAVE_DARWIN_OS CONTRIBREV=34 contrib-macosx-$(ARCH)-$(CONTRIBREV).tar.bz2: $(WGET) http://downloads.videolan.org/pub/videolan/contrib/$@
10. /vlc/extras/contrib/bootstrap
change

Code: Select all

..... i686-apple-darwin* ..... CC="/Developer/usr/bin/gcc-4.2" CXX="/Developer/usr/bin/g++-4.2" ..... if test -e /Developer/SDKs; then echo "SDKs found. Everything is fine." >&2
to

Code: Select all

.... .... CC="/Developer/usr/bin/gcc" CXX="/Developer/usr/bin/g++" .... if test -e `xcode-select -print-path`/Platforms/MacOSX.platform/Developer/SDKs; then echo "SDKs found. Everything is fine." >&2 ....
or you'll meet this error:

Code: Select all

ERROR: Your Developer Tools' SDKs were not found. You need to add extra symbolic links to /Developer to achieve correctly
11. finally you can run buildMobileVLC.sh if you are lucky,run this script twice,if no error appear, open MobileVLC/MobileVLC.xcodeproj, that's it .
notice: live555 may hit error when you first run the script. try it again, then it wouldn't show up. but some other error information may appear.
if you run buildMobileVLC.sh it may give you 3 or 4 error information, it's so confusing. , it wouldn't stop when it hits error.so I suggest at the beginning, you run build_for_iOS.sh can help you find more details.

fkuehne
Developer
Developer
Posts: 7234
Joined: 16 Mar 2004 19:37
VLC version: 0.4.6 - present
Operating System: Darwin
Location: Germany
Contact:

Re: Building VLC1.1.0 for IOS with Xcode4.5 Mountain Lion

Postby fkuehne » 01 Feb 2013 10:38

An easier solution is probably to use VLC for iOS directly from git.
VideoLAN
Felix Paul Kühne
Medic. VLC developer for appleOS since before you were born.
Blog: https://www.feepk.net

ReadyXuMin
Blank Cone
Blank Cone
Posts: 19
Joined: 22 Aug 2011 13:20

Re: Building VLC1.1.0 for IOS with Xcode4.5 Mountain Lion

Postby ReadyXuMin » 02 Feb 2013 04:46

An easier solution is probably to use VLC for iOS directly from git.
Yes,VLC1.1.0 for IOS doesn't work on my devices, so I builded git edition several days ago. It's much easier.

rdahiya55
New Cone
New Cone
Posts: 7
Joined: 10 Apr 2013 10:42

Re: Building VLC1.1.0 for IOS with Xcode4.5 Mountain Lion

Postby rdahiya55 » 10 Apr 2013 10:52

I followed every step mentioned above but when i try to run ./buildMobileVLC.sh it always asks for password. Can you please tell me which password i require to go further ?


Here is the terminal log given below whatever i have done so far.

Code: Select all

del1-dmac-26926:MobileVLC rinku.dahiya$ ./buildMobileVLC.sh Cloning into vlc... The authenticity of host 'dev.applidium.com (88.162.180.91)' can't be established. RSA key fingerprint is c5:d4:ed:ef:63:0c:1d:d4:15:eb:99:9e:3e:33:ad:5a. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added 'dev.applidium.com,88.162.180.91' (RSA) to the list of known hosts. Password: Password: Password: Permission denied (publickey,keyboard-interactive). fatal: The remote end hung up unexpectedly Cloning into MediaLibraryKit... Password: Password: Connection closed by 88.162.180.91 fatal: The remote end hung up unexpectedly Cloning into MobileVLC... Password: Password: Password: Permission denied (publickey,keyboard-interactive). fatal: The remote end hung up unexpectedly ./buildMobileVLC.sh: line 7: pushd: vlc: No such file or directory ./buildMobileVLC.sh: line 8: pushd: extras/package/ios: No such file or directory ./buildMobileVLC.sh: line 9: ./build_for_iOS.sh: No such file or directory ./buildMobileVLC.sh: line 10: popd: directory stack empty ./buildMobileVLC.sh: line 11: pushd: projects/macosx/framework: No such file or directory xcodebuild: error: 'MobileVLCKit.xcodeproj' does not exist. xcodebuild: error: 'MobileVLCKit.xcodeproj' does not exist. ./buildMobileVLC.sh: line 14: popd: directory stack empty ./buildMobileVLC.sh: line 15: popd: directory stack empty ./buildMobileVLC.sh: line 17: pushd: MediaLibraryKit: No such file or directory ln: External/MobileVLCKit: File exists xcodebuild: error: 'MobileMediaLibraryKit.xcodeproj' does not exist. ./buildMobileVLC.sh: line 20: popd: directory stack empty ./buildMobileVLC.sh: line 22: pushd: MobileVLC: No such file or directory ln: External/MobileVLCKit: File exists ln: External/MediaLibraryKit: File exists ./buildMobileVLC.sh: line 25: popd: directory stack empty

ReadyXuMin
Blank Cone
Blank Cone
Posts: 19
Joined: 22 Aug 2011 13:20

Re: Building VLC1.1.0 for IOS with Xcode4.5 Mountain Lion

Postby ReadyXuMin » 10 Apr 2013 12:39

step 3: make sure the names of three folders(vlc, MediaLibraryKit, MediaLibraryKit) are right.
step 4: make sure buildMobileVLC.sh is in the same folder.

┎----vlc

┣----MediaLibraryKit

┣----MobileVLC

┗----buildMobileVLC.sh

ReadyXuMin
Blank Cone
Blank Cone
Posts: 19
Joined: 22 Aug 2011 13:20

Re: Building VLC1.1.0 for IOS with Xcode4.5 Mountain Lion

Postby ReadyXuMin » 10 Apr 2013 16:01

Notice: Step 7
Here's the right code for step7
vlc\extras\package\ios\build_for_iOS.sh

Code: Select all

DEVROOT=`xcode-select -print-path`/Platforms/iPhone${PLATFORM}.platform/Developer IOS_SDK_ROOT=${DEVROOT}/SDKs/iPhone${PLATFORM}6.0.sdk export IOS_SDK_ROOT export CPP="xcrun cc -E" export CXXCPP="xcrun c++ -E" export CC="${DEVROOT}/usr/bin/gcc" export OBJC="${DEVROOT}/usr/bin/rgcc" export CXX="${DEVROOT}/usr/bin/g++"
If you installed new sdk you need to change to 6.0.sdk to your new sdk.
for example: xcode 4.6.1-----------------6.1.sdk

you can find it in your xcode contents-->Developer-->Platforms-->iPhoneOS.platform-->Developer-->SDKs

rdahiya55
New Cone
New Cone
Posts: 7
Joined: 10 Apr 2013 10:42

Re: Building VLC1.1.0 for IOS with Xcode4.5 Mountain Lion

Postby rdahiya55 » 11 Apr 2013 08:22

I did the same as you mentioned above in your last post. Still there are two errors in building the project. Please help me out in this.

Here is the terminal log given below.

Code: Select all

/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/projects/macosx/framework/../../../install-ios-OS/lib/vlc/plugins/video_filter/librss_plugin.a (No such file or directory) /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/projects/macosx/framework/../../../install-ios-OS/lib/vlc/plugins/video_filter/librv32_plugin.a (No such file or directory) /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/projects/macosx/framework/../../../install-ios-OS/lib/vlc/plugins/video_filter/libscale_plugin.a (No such file or directory) /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/projects/macosx/framework/../../../install-ios-OS/lib/vlc/plugins/video_filter/libscene_plugin.a (No such file or directory) /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/projects/macosx/framework/../../../install-ios-OS/lib/vlc/plugins/video_filter/libsharpen_plugin.a (No such file or directory) /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/projects/macosx/framework/../../../install-ios-OS/lib/vlc/plugins/video_filter/libswscale_plugin.a (No such file or directory) /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/projects/macosx/framework/../../../install-ios-OS/lib/vlc/plugins/video_filter/libwall_plugin.a (No such file or directory) /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/projects/macosx/framework/../../../install-ios-OS/lib/vlc/plugins/video_filter/libwave_plugin.a (No such file or directory) /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/projects/macosx/framework/../../../install-ios-OS/lib/vlc/plugins/video_filter/libyuvp_plugin.a (No such file or directory) /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/projects/macosx/framework/../../../install-ios-OS/lib/vlc/plugins/video_output/libvmem_plugin.a (No such file or directory) /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/projects/macosx/framework/../../../install-ios-OS/lib/vlc/plugins/video_output/libvout_ios_plugin.a (No such file or directory) /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/projects/macosx/framework/../../../install-ios-OS/lib/vlc/plugins/video_output/libyuv_plugin.a (No such file or directory) Command /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool failed with exit code 1 ** BUILD FAILED ** The following build commands failed: Libtool build/Release-iphoneos/libMobileVLCKit.a normal armv7 (1 failure) ~/Desktop/VLC_Orignal_Source/vlc ~/Desktop/VLC_Orignal_Source ~/Desktop/VLC_Orignal_Source ~/Desktop/VLC_Orignal_Source/MediaLibraryKit ~/Desktop/VLC_Orignal_Source ln: External/MobileVLCKit/Release-iphoneos: File exists === BUILD NATIVE TARGET MobileMediaLibraryKit OF PROJECT MobileMediaLibraryKit WITH CONFIGURATION Release === Check dependencies CompileC build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLDocument_PrivateExtensions.o External/TouchXML/Source/CXMLDocument_PrivateExtensions.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit setenv LANG en_US.US-ASCII setenv PATH "/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin" "/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -x objective-c -arch armv7 -fmessage-length=0 -std=c99 -Wno-trigraphs -fpascal-strings -Os -Wno-missing-field-initializers -Wno-missing-prototypes -Wreturn-type -Wno-implicit-atomic-properties -Wno-receiver-is-weak -Wformat -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-shorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -isysroot "/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk" -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion "-DIBOutlet=__attribute__((iboutlet))" "-DIBOutletCollection(ClassName)=__attribute__((iboutletcollection(ClassName)))" "-DIBAction=void)__attribute__((ibaction)" -miphoneos-version-min=6.0 -iquote /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/MobileMediaLibraryKit-generated-files.hmap -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/MobileMediaLibraryKit-own-target-headers.hmap -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/MobileMediaLibraryKit-all-target-headers.hmap -iquote /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/MobileMediaLibraryKit-project-headers.hmap -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/Release-iphoneos/include "-I/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/usr/include/libxml2" -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/External/MobileVLCKit/include -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/DerivedSources/armv7 -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/DerivedSources -F/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/Release-iphoneos -include /var/folders/4w/k356ylf5675_60zkc042qbjmlk8cmv/C/com.apple.Xcode.656683675/SharedPrecompiledHeaders/MobileMediaLibraryKit_Prefix-axfkwcknckgtiogdveeecqbhzdpo/MobileMediaLibraryKit_Prefix.pch -MMD -MT dependencies -MF /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLDocument_PrivateExtensions.d --serialize-diagnostics /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLDocument_PrivateExtensions.dia -c /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/External/TouchXML/Source/CXMLDocument_PrivateExtensions.m -o /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLDocument_PrivateExtensions.o fatal error: file '/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/MobileMediaLibraryKit_Prefix.pch' has been modified since the precompiled header was built 1 error generated. CompileC build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLNode_CreationExtensions.o External/TouchXML/Source/Creation/CXMLNode_CreationExtensions.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit setenv LANG en_US.US-ASCII setenv PATH "/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin" "/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -x objective-c -arch armv7 -fmessage-length=0 -std=c99 -Wno-trigraphs -fpascal-strings -Os -Wno-missing-field-initializers -Wno-missing-prototypes -Wreturn-type -Wno-implicit-atomic-properties -Wno-receiver-is-weak -Wformat -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-shorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -isysroot "/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk" -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion "-DIBOutlet=__attribute__((iboutlet))" "-DIBOutletCollection(ClassName)=__attribute__((iboutletcollection(ClassName)))" "-DIBAction=void)__attribute__((ibaction)" -miphoneos-version-min=6.0 -iquote /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/MobileMediaLibraryKit-generated-files.hmap -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/MobileMediaLibraryKit-own-target-headers.hmap -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/MobileMediaLibraryKit-all-target-headers.hmap -iquote /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/MobileMediaLibraryKit-project-headers.hmap -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/Release-iphoneos/include "-I/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/usr/include/libxml2" -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/External/MobileVLCKit/include -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/DerivedSources/armv7 -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/DerivedSources -F/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/Release-iphoneos -include /var/folders/4w/k356ylf5675_60zkc042qbjmlk8cmv/C/com.apple.Xcode.656683675/SharedPrecompiledHeaders/MobileMediaLibraryKit_Prefix-axfkwcknckgtiogdveeecqbhzdpo/MobileMediaLibraryKit_Prefix.pch -MMD -MT dependencies -MF /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLNode_CreationExtensions.d --serialize-diagnostics /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLNode_CreationExtensions.dia -c /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/External/TouchXML/Source/Creation/CXMLNode_CreationExtensions.m -o /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLNode_CreationExtensions.o fatal error: file '/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/MobileMediaLibraryKit_Prefix.pch' has been modified since the precompiled header was built 1 error generated. CompileC build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLDocument_CreationExtensions.o External/TouchXML/Source/Creation/CXMLDocument_CreationExtensions.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit setenv LANG en_US.US-ASCII setenv PATH "/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin" "/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -x objective-c -arch armv7 -fmessage-length=0 -std=c99 -Wno-trigraphs -fpascal-strings -Os -Wno-missing-field-initializers -Wno-missing-prototypes -Wreturn-type -Wno-implicit-atomic-properties -Wno-receiver-is-weak -Wformat -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-shorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -isysroot "/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk" -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion "-DIBOutlet=__attribute__((iboutlet))" "-DIBOutletCollection(ClassName)=__attribute__((iboutletcollection(ClassName)))" "-DIBAction=void)__attribute__((ibaction)" -miphoneos-version-min=6.0 -iquote /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/MobileMediaLibraryKit-generated-files.hmap -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/MobileMediaLibraryKit-own-target-headers.hmap -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/MobileMediaLibraryKit-all-target-headers.hmap -iquote /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/MobileMediaLibraryKit-project-headers.hmap -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/Release-iphoneos/include "-I/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/usr/include/libxml2" -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/External/MobileVLCKit/include -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/DerivedSources/armv7 -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/DerivedSources -F/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/Release-iphoneos -include /var/folders/4w/k356ylf5675_60zkc042qbjmlk8cmv/C/com.apple.Xcode.656683675/SharedPrecompiledHeaders/MobileMediaLibraryKit_Prefix-axfkwcknckgtiogdveeecqbhzdpo/MobileMediaLibraryKit_Prefix.pch -MMD -MT dependencies -MF /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLDocument_CreationExtensions.d --serialize-diagnostics /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLDocument_CreationExtensions.dia -c /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/External/TouchXML/Source/Creation/CXMLDocument_CreationExtensions.m -o /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLDocument_CreationExtensions.o fatal error: file '/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/MobileMediaLibraryKit_Prefix.pch' has been modified since the precompiled header was built 1 error generated. CompileC build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLDocument.o External/TouchXML/Source/CXMLDocument.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit setenv LANG en_US.US-ASCII setenv PATH "/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin" "/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -x objective-c -arch armv7 -fmessage-length=0 -std=c99 -Wno-trigraphs -fpascal-strings -Os -Wno-missing-field-initializers -Wno-missing-prototypes -Wreturn-type -Wno-implicit-atomic-properties -Wno-receiver-is-weak -Wformat -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-shorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -isysroot "/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk" -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion "-DIBOutlet=__attribute__((iboutlet))" "-DIBOutletCollection(ClassName)=__attribute__((iboutletcollection(ClassName)))" "-DIBAction=void)__attribute__((ibaction)" -miphoneos-version-min=6.0 -iquote /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/MobileMediaLibraryKit-generated-files.hmap -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/MobileMediaLibraryKit-own-target-headers.hmap -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/MobileMediaLibraryKit-all-target-headers.hmap -iquote /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/MobileMediaLibraryKit-project-headers.hmap -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/Release-iphoneos/include "-I/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/usr/include/libxml2" -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/External/MobileVLCKit/include -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/DerivedSources/armv7 -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/DerivedSources -F/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/Release-iphoneos -include /var/folders/4w/k356ylf5675_60zkc042qbjmlk8cmv/C/com.apple.Xcode.656683675/SharedPrecompiledHeaders/MobileMediaLibraryKit_Prefix-axfkwcknckgtiogdveeecqbhzdpo/MobileMediaLibraryKit_Prefix.pch -MMD -MT dependencies -MF /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLDocument.d --serialize-diagnostics /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLDocument.dia -c /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/External/TouchXML/Source/CXMLDocument.m -o /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLDocument.o fatal error: file '/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/MediaLibraryKit/MobileMediaLibraryKit_Prefix.pch' has been modified since the precompiled header was built 1 error generated. ** BUILD FAILED ** The following build commands failed: CompileC build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLDocument_PrivateExtensions.o External/TouchXML/Source/CXMLDocument_PrivateExtensions.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler CompileC build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLNode_CreationExtensions.o External/TouchXML/Source/Creation/CXMLNode_CreationExtensions.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler CompileC build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLDocument_CreationExtensions.o External/TouchXML/Source/Creation/CXMLDocument_CreationExtensions.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler CompileC build/MobileMediaLibraryKit.build/Release-iphoneos/MobileMediaLibraryKit.build/Objects-normal/armv7/CXMLDocument.o External/TouchXML/Source/CXMLDocument.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler (4 failures) ~/Desktop/VLC_Orignal_Source ~/Desktop/VLC_Orignal_Source/MobileVLC ~/Desktop/VLC_Orignal_Source ln: External/MobileVLCKit/Release-iphoneos: File exists ln: External/MediaLibraryKit/Release-iphoneos: File exists ~/Desktop/VLC_Orignal_Source

ReadyXuMin
Blank Cone
Blank Cone
Posts: 19
Joined: 22 Aug 2011 13:20

Re: Building VLC1.1.0 for IOS with Xcode4.5 Mountain Lion

Postby ReadyXuMin » 11 Apr 2013 11:06

It looks like vlc compile failed.You can try to run vlc/extras/package/ios/build_for_iOS.sh first. I think you can get error information there.

rdahiya55
New Cone
New Cone
Posts: 7
Joined: 10 Apr 2013 10:42

Re: Building VLC1.1.0 for IOS with Xcode4.5 Mountain Lion

Postby rdahiya55 » 11 Apr 2013 12:40

Yeah i tried to run "build_for_iOS.sh" but i got compiler error configure: error: in `/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/contrib/iPhoneOS-armv7/libdvbpsi':. Please help me out in this.

Code: Select all

[info] Building libvlc for iOS [info] Using armv7 with SDK version 6.0 SDKROOT not specified, assuming /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk [info] Building tools ...... x libtool-2.2.10/tests/demo/configure.acx automake-1.12.4/t/objc-minidemo.sh x libtool-2.2.10/tests/demo/dlmain.c x automake-1.12.4/t/warnings-win-over-strictness.sh x automake-1.12.4/t/silent2.sh x automake-1.12.4/t/parallel-tests-fd-redirect-exeext.shx libtool-2.2.10/tests/demo/foo.c x automake-1.12.4/t/cond23.shx libtool-2.2.10/tests/demo/foo.h x automake-1.12.4/t/empty.sh x libtool-2.2.10/tests/demo/hell1.c x automake-1.12.4/t/pr2.sh x libtool-2.2.10/tests/demo/hell2.c x libtool-2.2.10/tests/demo/hello.c x libtool-2.2.10/tests/demo/main.c x libtool-2.2.10/tests/demo/Makefile.amx automake-1.12.4/t/remake-renamed-m4-file.sh x libtool-2.2.10/tests/demo/Makefile.in x automake-1.12.4/t/check8.sh x automake-1.12.4/t/cond26.sh x automake-1.12.4/t/reqd.sh x automake-1.12.4/t/help-lispdir.shx libtool-2.2.10/tests/demo/README x automake-1.12.4/t/pr401c.sh x automake-1.12.4/t/flavor.sh x libtool-2.2.10/tests/cdemo/aclocal.m4 x automake-1.12.4/t/dejagnu.sh x automake-1.12.4/t/compile.sh x automake-1.12.4/t/no-outdir-option.sh x automake-1.12.4/t/test-driver-trs-suffix-registered.sh x libtool-2.2.10/tests/cdemo/configure x automake-1.12.4/t/suffix.sh x automake-1.12.4/t/subobj7.sh x automake-1.12.4/t/condman2.sh x automake-1.12.4/t/rulepat.sh x automake-1.12.4/t/help-python.sh x automake-1.12.4/t/remake12.sh x automake-1.12.4/t/auxdir6.sh x automake-1.12.4/t/pluseq.sh x automake-1.12.4/t/parallel-tests-log-override-recheck.sh x automake-1.12.4/t/tap-fancy-w.sh x libtool-2.2.10/tests/cdemo/configure.ac x automake-1.12.4/t/specflg2.shx libtool-2.2.10/tests/cdemo/._foo.c x automake-1.12.4/t/lflags.sh x automake-1.12.4/t/tap-unplanned.sh x libtool-2.2.10/tests/cdemo/foo.c x libtool-2.2.10/tests/cdemo/foo.h x automake-1.12.4/t/vala2.sh x libtool-2.2.10/tests/cdemo/main.c x automake-1.12.4/t/subpkg2.sh x libtool-2.2.10/tests/cdemo/Makefile.am x automake-1.12.4/t/subdir-ac-subst.sh x libtool-2.2.10/tests/cdemo/Makefile.in x automake-1.12.4/t/override-suggest-local.sh x automake-1.12.4/t/silent-obsolescent-warns.sh x automake-1.12.4/t/suffix3.tap x automake-1.12.4/t/exeext4-w.sh x libtool-2.2.10/tests/cdemo/README x automake-1.12.4/t/java2.sh x libtool-2.2.10/libltdl/aclocal.m4 x automake-1.12.4/t/confincl.sh x libtool-2.2.10/libltdl/._argz.c x automake-1.12.4/t/tap-unplanned-w.shx libtool-2.2.10/libltdl/argz.c x automake-1.12.4/t/spell3.sh x automake-1.12.4/t/gcj4.sh x libtool-2.2.10/libltdl/._argz_.h x automake-1.12.4/t/depacl2.sh x libtool-2.2.10/libltdl/argz_.h x automake-1.12.4/t/make-dryrun.tap x libtool-2.2.10/libltdl/config/ x libtool-2.2.10/libltdl/config-h.in x automake-1.12.4/t/cond4.sh x automake-1.12.4/t/extra-portability.sh x libtool-2.2.10/libltdl/configure x automake-1.12.4/t/tap-diagnostic.sh x automake-1.12.4/t/lisp4.sh x automake-1.12.4/t/mdate5-w.sh x automake-1.12.4/t/acsubst.sh x automake-1.12.4/t/libobj15a.sh x automake-1.12.4/t/tap-basic.sh x automake-1.12.4/t/canon5.sh x automake-1.12.4/t/cxxo.sh x automake-1.12.4/t/cond41.sh x automake-1.12.4/t/help-upc.sh x automake-1.12.4/t/extra2.sh x libtool-2.2.10/libltdl/configure.ac x automake-1.12.4/t/tap-summary.sh x libtool-2.2.10/libltdl/COPYING.LIB x automake-1.12.4/t/depcomp-msvisualcpp.tap x libtool-2.2.10/libltdl/libltdl/ x libtool-2.2.10/libltdl/loaders/ x automake-1.12.4/t/tap-out-of-order.sh x libtool-2.2.10/libltdl/lt__alloc.c x automake-1.12.4/t/tap-planskip-w.sh x automake-1.12.4/t/upc.sh x libtool-2.2.10/libltdl/lt__dirent.c x libtool-2.2.10/libltdl/lt__strl.cx automake-1.12.4/t/auxdir-misplaced.sh x libtool-2.2.10/libltdl/lt_dlloader.c x automake-1.12.4/t/lex-libobj.sh x libtool-2.2.10/libltdl/lt_error.c x libtool-2.2.10/libltdl/ltdl.c x automake-1.12.4/t/dist-formats.tap x automake-1.12.4/t/lex-lib-external.sh x automake-1.12.4/t/yacc-mix-c-cxx.sh x libtool-2.2.10/libltdl/ltdl.h x automake-1.12.4/t/m4-inclusion.sh x libtool-2.2.10/libltdl/m4/ x libtool-2.2.10/libltdl/Makefile.am x automake-1.12.4/t/colneq.sh x libtool-2.2.10/libltdl/Makefile.in x automake-1.12.4/t/dist-repeated.sh x automake-1.12.4/t/tap-planskip-and-logging-w.sh x automake-1.12.4/t/pr211.sh x libtool-2.2.10/libltdl/Makefile.inc x automake-1.12.4/t/subobj-clean-lt-pr10697.sh x libtool-2.2.10/libltdl/README x automake-1.12.4/t/test-driver-acsubst.sh x libtool-2.2.10/libltdl/slist.c x automake-1.12.4/t/yacc-clean.sh x libtool-2.2.10/libltdl/stamp-mk x automake-1.12.4/t/cond15.sh x libtool-2.2.10/libltdl/m4/argz.m4 x automake-1.12.4/t/dejagnu7.sh x libtool-2.2.10/libltdl/m4/libtool.m4 x automake-1.12.4/t/parallel-tests-no-color-in-log.sh x automake-1.12.4/t/configure.sh x automake-1.12.4/t/primary.sh x automake-1.12.4/t/spell2.sh x automake-1.12.4/t/silentcxx.sh x automake-1.12.4/t/distcheck-missing-m4.sh x automake-1.12.4/t/python11.sh x automake-1.12.4/t/remake7.sh x automake-1.12.4/t/symlink2.sh x automake-1.12.4/t/ext2.sh x libtool-2.2.10/libltdl/m4/ltdl.m4 x automake-1.12.4/t/alpha2.sh x libtool-2.2.10/libltdl/m4/ltoptions.m4 x automake-1.12.4/t/tap-exit.sh x automake-1.12.4/t/pluseq6.sh x libtool-2.2.10/libltdl/m4/ltsugar.m4x automake-1.12.4/t/libobj13.sh x automake-1.12.4/t/tap-escape-directive-2-w.shx libtool-2.2.10/libltdl/m4/ltversion.in x automake-1.12.4/t/silent4.sh x libtool-2.2.10/libltdl/m4/ltversion.m4 x automake-1.12.4/t/tap-doc-w.sh x libtool-2.2.10/libltdl/m4/lt~obsolete.m4 x automake-1.12.4/t/parallel-tests-no-spurious-summary.sh x libtool-2.2.10/libltdl/loaders/dld_link.c x automake-1.12.4/t/subst3.sh x libtool-2.2.10/libltdl/loaders/dlopen.cx automake-1.12.4/t/pluseq10.sh x libtool-2.2.10/libltdl/loaders/dyld.cx automake-1.12.4/t/silentf90.sh x libtool-2.2.10/libltdl/loaders/load_add_on.c x automake-1.12.4/t/silent3.sh x libtool-2.2.10/libltdl/loaders/loadlibrary.c x automake-1.12.4/t/posixsubst-ltlibraries.sh x automake-1.12.4/t/override-conditional-1.sh x libtool-2.2.10/libltdl/loaders/preopen.c x automake-1.12.4/t/parallel-tests.shx libtool-2.2.10/libltdl/loaders/shl_load.c x automake-1.12.4/t/missing5-w.sh x libtool-2.2.10/libltdl/libltdl/lt__alloc.h x libtool-2.2.10/libltdl/libltdl/lt__dirent.h x libtool-2.2.10/libltdl/libltdl/lt__glibc.hx automake-1.12.4/t/subpkg4.sh x libtool-2.2.10/libltdl/libltdl/lt__private.h x automake-1.12.4/t/confh5.sh x automake-1.12.4/t/yacc-dist-nobuild.shx libtool-2.2.10/libltdl/libltdl/lt__strl.h x automake-1.12.4/t/nolink.sh x libtool-2.2.10/libltdl/libltdl/lt_dlloader.h x automake-1.12.4/t/tap-plan-malformed-w.sh x libtool-2.2.10/libltdl/libltdl/lt_error.h x automake-1.12.4/t/tap-realtime-w.sh x libtool-2.2.10/libltdl/libltdl/lt_system.h x automake-1.12.4/t/pr300-prog.sh x libtool-2.2.10/libltdl/libltdl/slist.h x automake-1.12.4/t/self-check-configure-help.sh x libtool-2.2.10/libltdl/config/compile x automake-1.12.4/t/mdate2.sh x automake-1.12.4/t/gcj3.sh x libtool-2.2.10/libltdl/config/config.guess x automake-1.12.4/t/tags.sh x automake-1.12.4/t/extra12.sh x automake-1.12.4/t/tap-test-number-0.sh x automake-1.12.4/t/tap-merge-stdout-stderr-w.sh x automake-1.12.4/t/cond13.sh x libtool-2.2.10/libltdl/config/config.sub x automake-1.12.4/t/aclocal-path-nonexistent.sh x automake-1.12.4/t/subobjname.sh x automake-1.12.4/t/subobj-clean-pr10697.sh x libtool-2.2.10/libltdl/config/depcomp x automake-1.12.4/t/condlib.sh x libtool-2.2.10/libltdl/config/general.m4sh x automake-1.12.4/t/java-uninstall.sh x libtool-2.2.10/libltdl/config/getopt.m4shx automake-1.12.4/t/phony.sh x automake-1.12.4/t/fo.sh x automake-1.12.4/t/cxx-demo.sh x libtool-2.2.10/libltdl/config/install-shx automake-1.12.4/t/multlib.sh x libtool-2.2.10/libltdl/config/ltmain.m4sh x automake-1.12.4/t/transform2.sh x automake-1.12.4/t/gettext-macros.sh x automake-1.12.4/t/python-virtualenv.sh x automake-1.12.4/t/autohdr3.sh x automake-1.12.4/t/libobj20b.sh x automake-1.12.4/t/lex-subobj-nodep.sh x automake-1.12.4/t/tap-test-number-0-w.sh x automake-1.12.4/t/distcom5.sh x automake-1.12.4/t/ar4.sh x libtool-2.2.10/libltdl/config/ltmain.sh x automake-1.12.4/t/comment4.sh x automake-1.12.4/t/remake5.sh x automake-1.12.4/t/distcheck-outdated-m4.sh x automake-1.12.4/t/doc-parsing-buglets-colneq-subst.sh x automake-1.12.4/t/tap-recheck-w.sh x automake-1.12.4/t/posixsubst-sources.sh x automake-1.12.4/t/dir-named-obj-is-bad.sh x automake-1.12.4/t/lzma.sh x automake-1.12.4/t/man5.sh x automake-1.12.4/t/noinst.sh x automake-1.12.4/t/gnits2.sh x automake-1.12.4/t/distcom2.sh x automake-1.12.4/t/autohdr4.sh x libtool-2.2.10/libltdl/config/mdate-sh x automake-1.12.4/t/output10.sh x libtool-2.2.10/libltdl/config/missingx automake-1.12.4/t/check-w.sh x automake-1.12.4/t/parallel-tests-fork-bomb.sh x libtool-2.2.10/libltdl/config/mkstamp x libtool-2.2.10/libltdl/config/texinfo.tex x automake-1.12.4/t/warnopts.sh x automake-1.12.4/t/cond8.sh x automake-1.12.4/t/am-macro-not-found.sh x automake-1.12.4/t/parallel-tests-exeext.sh x automake-1.12.4/t/longlin2.sh x automake-1.12.4/t/dist-readonly.sh x automake-1.12.4/t/tap-whitespace-normalization-w.sh x automake-1.12.4/t/lex-header.sh x automake-1.12.4/t/py-compile-basic.sh x automake-1.12.4/t/tap-todo-skip-w.sh x automake-1.12.4/t/postproc.sh x automake-1.12.4/t/libtool3.sh x automake-1.12.4/t/depcomp-auto.tap x automake-1.12.4/t/extra7.sh x automake-1.12.4/t/tap-todo-skip-together.sh x automake-1.12.4/t/tap-planskip-badexit.sh x automake-1.12.4/t/tap-no-spurious-summary-w.sh x automake-1.12.4/t/suffix6b.sh x automake-1.12.4/t/get-sysconf.sh x automake-1.12.4/t/tap-msg0-misc-w.sh x automake-1.12.4/t/lexvpath.sh x automake-1.12.4/t/ltorder.sh x automake-1.12.4/t/libtool2.sh x automake-1.12.4/t/maintmode-configure-msg.sh x automake-1.12.4/t/alloca.sh x automake-1.12.4/t/check-no-test-driver.sh x automake-1.12.4/t/space.sh x automake-1.12.4/t/specflg.sh x automake-1.12.4/t/tap-global-result.sh x libtool-2.2.10/doc/fdl.texi x automake-1.12.4/t/tap-planskip-case-insensitive.sh x automake-1.12.4/t/remake-subdir2.sh x automake-1.12.4/t/distcheck-writable-srcdir.sh x libtool-2.2.10/doc/libtool.1x automake-1.12.4/t/txinfo22.sh x libtool-2.2.10/doc/libtool.info x automake-1.12.4/t/depcomp-lt-msvisualcpp.tap x libtool-2.2.10/doc/libtool.info-1 x automake-1.12.4/t/pr401b.sh x automake-1.12.4/t/autodist-aclocal-m4.sh x automake-1.12.4/t/tests-environment-and-log-compiler.sh x automake-1.12.4/t/acloca20.sh x automake-1.12.4/t/python-too-old.sh x automake-1.12.4/t/stamph2.sh x automake-1.12.4/t/aclocal-no-install-no-mkdir.sh x automake-1.12.4/t/tap-planskip-late-w.sh x automake-1.12.4/t/lex-nodist.sh x automake-1.12.4/t/compile4-w.sh x automake-1.12.4/t/libtool-macros.sh x automake-1.12.4/t/tap-todo-skip-whitespace.sh x automake-1.12.4/t/gnuwarn2.sh x libtool-2.2.10/doc/libtool.info-2 x libtool-2.2.10/doc/libtool.texix automake-1.12.4/t/remake-gnulib-remove-header.sh x automake-1.12.4/t/lispdry.sh x automake-1.12.4/t/tap-deps-w.sh x automake-1.12.4/t/tap-plan-leading-zero-w.sh x automake-1.12.4/t/self-check-report.sh x automake-1.12.4/t/amassign.sh x libtool-2.2.10/doc/libtoolize.1 x automake-1.12.4/t/yacc-bison-skeleton-cxx.sh x automake-1.12.4/t/depcomp8b.shx libtool-2.2.10/doc/notes.texi x automake-1.12.4/t/mkdirp-deprecation.sh x libtool-2.2.10/doc/notes.txt x libtool-2.2.10/doc/PLATFORMSx automake-1.12.4/t/suffix13.sh x automake-1.12.4/t/parallel-tests-fd-redirect.sh x libtool-2.2.10/doc/stamp-vti x automake-1.12.4/t/yacc-auxdir.sh x automake-1.12.4/t/nobase.sh x libtool-2.2.10/doc/version.texi x automake-1.12.4/t/remake3.sh x automake-1.12.4/t/exeext.sh x automake-1.12.4/t/java-check.sh x automake-1.12.4/t/src-acsubst.sh x automake-1.12.4/t/compile3.sh x automake-1.12.4/t/test-driver-custom-no-extra-driver.sh x automake-1.12.4/t/py-compile-destdir.sh x automake-1.12.4/t/libobj5.sh x automake-1.12.4/t/mmodely.sh x automake-1.12.4/t/libobj12.sh x automake-1.12.4/t/backcompat4.sh x automake-1.12.4/t/backcompat2.sh x automake-1.12.4/t/else.sh x automake-1.12.4/t/cond7.sh x automake-1.12.4/t/tap-planskip-unplanned-corner-w.sh x automake-1.12.4/t/test-driver-strip-vpath.sh x automake-1.12.4/t/subst-no-trailing-empty-line.sh x automake-1.12.4/t/version8.sh x automake-1.12.4/t/ltconv.sh x automake-1.12.4/t/test-driver-fail.sh x automake-1.12.4/t/pr229.sh x automake-1.12.4/t/lex-depend.shmv libtool-2.2.10 libtool && touch libtool x automake-1.12.4/t/ltdeps.sh x automake-1.12.4/t/aclocal6.sh x automake-1.12.4/t/yacc2.sh x automake-1.12.4/t/acloca15.sh x automake-1.12.4/t/cxx2.sh x automake-1.12.4/t/objcxx-flags.sh x automake-1.12.4/t/version.sh x automake-1.12.4/t/depcomp-lt-msvcmsys.tap x automake-1.12.4/t/conflnk3.sh x automake-1.12.4/t/objcxx-deps.sh x automake-1.12.4/t/subdir-order.sh x automake-1.12.4/t/forcemiss2.sh x automake-1.12.4/t/ext3.sh x automake-1.12.4/t/depcomp-lt-dashmstdout.tap x automake-1.12.4/t/disthook.sh x automake-1.12.4/t/objc-megademo.sh x automake-1.12.4/t/acloca16.sh x automake-1.12.4/t/remake-renamed-m4-macro.sh x automake-1.12.4/t/tap-passthrough-w.sh x automake-1.12.4/t/instdir-lisp.sh x automake-1.12.4/t/dist-auxfile.sh x automake-1.12.4/t/tap-number-wordboundary-w.sh x automake-1.12.4/t/tap-msg0-directive.sh x automake-1.12.4/t/warnings-override.sh x automake-1.12.4/t/tap-escape-directive-2.sh x automake-1.12.4/t/cond22.sh x automake-1.12.4/t/tap-more2-w.sh x automake-1.12.4/t/README x automake-1.12.4/t/ltinstloc.sh x automake-1.12.4/t/txinfo30.sh x automake-1.12.4/t/tap-numbers-leading-zero-w.sh x automake-1.12.4/t/yflags-d-false-positives.sh x automake-1.12.4/t/libobj7.sh x automake-1.12.4/t/tap-global-log-w.sh x automake-1.12.4/t/parallel-tests-subdir.sh x automake-1.12.4/t/extra-portability3.sh x automake-1.12.4/t/tap-plan-errors.sh x automake-1.12.4/t/mdate5.sh x automake-1.12.4/t/tap-no-disable-hard-error-w.sh x automake-1.12.4/t/init2.sh x automake-1.12.4/t/fn99.sh x automake-1.12.4/t/lex2.sh x automake-1.12.4/t/whoami.sh x automake-1.12.4/t/no-extra-makefile-code.sh x automake-1.12.4/t/colneq2.sh x automake-1.12.4/t/javadir-undefined.sh x automake-1.12.4/t/suffix6c.sh x automake-1.12.4/t/parallel-am3.sh x automake-1.12.4/t/check2-w.sh x automake-1.12.4/t/pr9.sh x automake-1.12.4/t/txinfo5.sh x automake-1.12.4/t/yacc.sh x automake-1.12.4/t/tap-autonumber.sh x automake-1.12.4/t/tap-basic-w.sh x automake-1.12.4/t/backsl2.sh x automake-1.12.4/t/output4.sh x automake-1.12.4/t/link_fc.sh x automake-1.12.4/t/objext-pr10128.sh x automake-1.12.4/t/tap-bailout-leading-space.sh x automake-1.12.4/t/txinfo5b.sh x automake-1.12.4/t/mkinst3-w.sh x automake-1.12.4/t/tap-with-and-without-number.sh x automake-1.12.4/t/tap-msg0-bailout-w.sh x automake-1.12.4/t/color2.sh x automake-1.12.4/t/amsubst.sh x automake-1.12.4/t/uninstall-pr9578.sh x automake-1.12.4/t/perf/ x automake-1.12.4/t/perf/cond.sh x automake-1.12.4/t/perf/testsuite-recheck.sh x automake-1.12.4/t/perf/testsuite-summary.sh x automake-1.12.4/t/acloca17.sh x automake-1.12.4/t/defun2.sh x automake-1.12.4/t/dejagnu3.sh x automake-1.12.4/t/percent2.sh x automake-1.12.4/t/tap-plan-whitespace.sh x automake-1.12.4/t/lisp8.sh x automake-1.12.4/t/lisp-pr11806.sh x automake-1.12.4/t/maintclean-vpath.sh x automake-1.12.4/t/tap-no-disable-hard-error.sh x automake-1.12.4/t/instmany-python.sh x automake-1.12.4/t/subdir-distclean.sh x automake-1.12.4/t/tap-fancy.sh x automake-1.12.4/t/colneq3.sh x automake-1.12.4/t/subdir10.sh x automake-1.12.4/t/auxdir.sh x automake-1.12.4/t/java.sh x automake-1.12.4/t/distcheck-configure-flags-subpkg.sh x automake-1.12.4/t/suffix12.sh x automake-1.12.4/t/subst4.sh x automake-1.12.4/t/help-silent.sh x automake-1.12.4/t/lisp3.sh x automake-1.12.4/t/asm2.sh x automake-1.12.4/t/distlinks.sh x automake-1.12.4/t/yacc-d-basic.sh x automake-1.12.4/t/tap-more.sh x automake-1.12.4/t/subobj6.sh x automake-1.12.4/t/lex-line.sh x automake-1.12.4/t/suffix2.sh x automake-1.12.4/t/ppf77.sh x automake-1.12.4/t/confdeps.sh x automake-1.12.4/t/exsource.sh x automake-1.12.4/t/subobj8.sh x automake-1.12.4/t/parallel-tests-once.sh x automake-1.12.4/t/pm/ x automake-1.12.4/t/pm/DisjCon3.pl x automake-1.12.4/t/pm/Cond2.pl x automake-1.12.4/t/pm/DisjConditions-t.pl x automake-1.12.4/t/pm/DisjCon2.pl x automake-1.12.4/t/pm/Version.pl x automake-1.12.4/t/pm/Version2.pl x automake-1.12.4/t/pm/Version3.pl x automake-1.12.4/t/pm/Cond3.pl x automake-1.12.4/t/pm/Condition-t.pl x automake-1.12.4/t/pm/Wrap.pl x automake-1.12.4/t/pm/DisjConditions.pl x automake-1.12.4/t/pm/Condition.pl x automake-1.12.4/t/checkall.sh x automake-1.12.4/t/tap-out-of-order-w.sh x automake-1.12.4/t/colon6.sh x automake-1.12.4/t/werror.sh x automake-1.12.4/t/fnoc.sh x automake-1.12.4/t/cond24.sh x automake-1.12.4/t/self-check-seq.tap x automake-1.12.4/t/compile5.sh x automake-1.12.4/t/output3.sh x automake-1.12.4/t/java-compile-install.sh x automake-1.12.4/t/objc-flags.sh x automake-1.12.4/t/interp2.sh x automake-1.12.4/t/c-demo.sh x automake-1.12.4/t/tap-no-spurious-summary.sh x automake-1.12.4/t/help-depend2.sh x automake-1.12.4/t/check8-w.sh x automake-1.12.4/t/check6-w.sh x automake-1.12.4/t/seenc.sh x automake-1.12.4/t/colon5.sh x automake-1.12.4/t/txinfo31.sh x automake-1.12.4/t/subdir-subsub.sh x automake-1.12.4/t/parallel-tests9.sh x automake-1.12.4/t/cond-basic.sh x automake-1.12.4/t/fn99subdir.sh x automake-1.12.4/t/cxxcpp.sh x automake-1.12.4/t/vtexi4.sh x automake-1.12.4/t/cond42.sh x automake-1.12.4/t/compile-w.sh x automake-1.12.4/t/pr287.sh x automake-1.12.4/t/tap-not-ok-skip.sh x automake-1.12.4/t/instdir-ltlib.sh x automake-1.12.4/t/depcomp-lt-auto.tap x automake-1.12.4/t/txinfo9.sh x automake-1.12.4/t/yflags-cmdline-override.sh x automake-1.12.4/t/vtexi2.sh x automake-1.12.4/t/extra10.sh x automake-1.12.4/t/test-trs-recover.sh x automake-1.12.4/t/colon.sh x automake-1.12.4/t/substre2.sh x automake-1.12.4/t/exdir2.sh x automake-1.12.4/t/instdir-java.sh x automake-1.12.4/t/tap-plan-malformed.sh x automake-1.12.4/t/test-logs-repeated.sh x automake-1.12.4/t/cond.sh x automake-1.12.4/t/extradep2.sh x automake-1.12.4/t/tap-numeric-description.sh x automake-1.12.4/t/aclocal8.sh x automake-1.12.4/t/dmalloc.sh x automake-1.12.4/t/check5.sh x automake-1.12.4/t/cond17.sh x automake-1.12.4/t/autodist-acconfig.sh x automake-1.12.4/t/java-compile-run-nested.sh x automake-1.12.4/t/primary-prefix-couples-force-valid.sh x automake-1.12.4/t/parallel-tests3.sh x automake-1.12.4/t/clean2.sh x automake-1.12.4/t/remake-am-pr10111.sh x automake-1.12.4/t/tap-realtime.sh x automake-1.12.4/t/tap-msg0-result.sh x automake-1.12.4/t/tap-msg0-planskip-w.sh x automake-1.12.4/t/flibs.sh x automake-1.12.4/t/subst5.sh x automake-1.12.4/t/tap-msg0-misc.sh x automake-1.12.4/t/libtoo11.sh x automake-1.12.4/t/missing.sh x automake-1.12.4/t/check7-w.sh x automake-1.12.4/t/depcomp-cpp.tap x automake-1.12.4/t/man6.sh x automake-1.12.4/t/compile6-w.sh x automake-1.12.4/t/backsl4.sh x automake-1.12.4/t/tap-planskip.sh x automake-1.12.4/t/dollar.sh x automake-1.12.4/t/lex-lib.sh x automake-1.12.4/t/remake10a.sh x automake-1.12.4/t/amhello-cflags.sh x automake-1.12.4/t/depcomp-dashmstdout.tap x automake-1.12.4/t/amhello-cross-compile.sh x automake-1.12.4/t/strictness-precedence.sh x automake-1.12.4/t/ltlibobjs.sh x automake-1.12.4/t/lex-depend-cxx.sh x automake-1.12.4/t/txinfo17.sh x automake-1.12.4/t/lex-depend-grep.sh x automake-1.12.4/t/tap-common-setup.sh x automake-1.12.4/t/tap-numeric-description-w.sh x automake-1.12.4/t/autodist.sh x automake-1.12.4/t/conflnk.sh x automake-1.12.4/t/tap-escape-directive.sh x automake-1.12.4/t/testsuite-summary-count-many.sh x automake-1.12.4/t/gnits3.sh x automake-1.12.4/t/extra.sh x automake-1.12.4/t/help2.sh x automake-1.12.4/t/vala.sh x automake-1.12.4/t/strip3.sh x automake-1.12.4/t/hfs.sh x automake-1.12.4/t/condhook.sh x automake-1.12.4/t/conff2.sh x automake-1.12.4/t/pluseq3.sh x automake-1.12.4/t/java-noinst.sh x automake-1.12.4/t/cond27.sh x automake-1.12.4/t/output6.sh x automake-1.12.4/t/installdir.sh x automake-1.12.4/t/header.sh x automake-1.12.4/t/aclocal-path-install.sh x automake-1.12.4/t/parallel-tests10.sh x automake-1.12.4/t/tap-no-merge-stdout-stderr.sh x automake-1.12.4/t/output2.sh x automake-1.12.4/t/tap-bailout-suppress-later-errors.sh x automake-1.12.4/t/canon6.sh x automake-1.12.4/t/tap-passthrough.sh x automake-1.12.4/t/cond37.sh x automake-1.12.4/t/cond45.sh x automake-1.12.4/t/mkdir_p.sh x automake-1.12.4/t/parallel-tests-harderror.sh x automake-1.12.4/t/vala-libs.sh x automake-1.12.4/t/depcomp-msvcmsys.tap x automake-1.12.4/t/check11.sh x automake-1.12.4/t/cond32.sh x automake-1.12.4/t/instdir-python.sh x automake-1.12.4/t/dirlist-abspath.sh x automake-1.12.4/t/remake-renamed-m4-macro-and-file.sh x automake-1.12.4/t/version7.sh x automake-1.12.4/t/tap-plan-w.sh x automake-1.12.4/t/txinfo-no-clutter.sh x automake-1.12.4/t/tap-empty-diagnostic.sh x automake-1.12.4/t/tap-msg0-directive-w.sh x automake-1.12.4/t/tap-not-ok-skip-w.sh x automake-1.12.4/t/tap-escape-directive-w.sh x automake-1.12.4/t/txinfo10.sh x automake-1.12.4/t/tap-result-comment-w.sh x automake-1.12.4/t/parallel-tests-empty-testlogs.sh x automake-1.12.4/t/check5-w.sh x automake-1.12.4/t/python-missing.sh x automake-1.12.4/t/output8.sh x automake-1.12.4/t/f90only.sh x automake-1.12.4/t/tap-summary-color.sh x automake-1.12.4/t/libtool6.sh x automake-1.12.4/t/pr87.sh x automake-1.12.4/t/pr401.sh x automake-1.12.4/t/pr220.sh x automake-1.12.4/t/noinstdir.sh x automake-1.12.4/t/makej2.sh x automake-1.12.4/t/amopts-variable-expansion.sh x automake-1.12.4/t/confh8.sh x automake-1.12.4/t/lisp5.sh x automake-1.12.4/t/parallel-tests6.sh x automake-1.12.4/t/aclocal9.sh x automake-1.12.4/t/silent6.sh x automake-1.12.4/t/tap-signal-w.tap x automake-1.12.4/t/tap-merge-stdout-stderr.sh x automake-1.12.4/t/yacc-depend.sh x automake-1.12.4/t/instfail-libtool.sh x automake-1.12.4/t/tap-global-result-w.sh x automake-1.12.4/t/libobj10.sh x automake-1.12.4/t/install-info-dir.sh x automake-1.12.4/t/specflg10.sh x automake-1.12.4/t/libobj16a.sh x automake-1.12.4/t/distcom3.sh x automake-1.12.4/t/missing3-w.sh x automake-1.12.4/t/self-check-me.tap x automake-1.12.4/t/comment2.sh x automake-1.12.4/t/aclocal-verbose-install.sh x automake-1.12.4/t/suffix6.sh x automake-1.12.4/t/cond11.sh x automake-1.12.4/t/tap-more2.sh x automake-1.12.4/t/yflags2.sh x automake-1.12.4/t/auxdir7.sh x automake-1.12.4/t/parallel-tests-unreadable.sh x automake-1.12.4/t/python12.sh x automake-1.12.4/t/automake-cmdline.tap x automake-1.12.4/t/silent-yacc.sh x automake-1.12.4/t/compile_f_c_cxx.sh x automake-1.12.4/t/extra8.sh x automake-1.12.4/t/man8.sh x automake-1.12.4/t/missing3.sh x automake-1.12.4/t/lex-clean-cxx.sh x automake-1.12.4/t/dejagnu-relative-srcdir.sh x automake-1.12.4/t/depend3.sh x automake-1.12.4/t/version4.sh x automake-1.12.4/t/subobj9.sh x automake-1.12.4/t/sanity.sh x automake-1.12.4/t/nobase-python.sh x automake-1.12.4/t/cond33.sh x automake-1.12.4/t/extra-portability2.sh x automake-1.12.4/t/libtool8.sh x automake-1.12.4/t/pr307.sh x automake-1.12.4/t/silent-nested-vars.sh x automake-1.12.4/t/number.sh x automake-1.12.4/t/txinfo13.sh x automake-1.12.4/t/deleted-m4.sh x automake-1.12.4/t/commen11.sh x automake-1.12.4/t/test-metadata-global-result.sh x automake-1.12.4/t/missing2-w.sh x automake-1.12.4/t/java-rebuild.sh x automake-1.12.4/t/tap-bailout-suppress-later-diagnostic-w.sh x automake-1.12.4/t/objc-basic.sh x automake-1.12.4/t/transform.sh x automake-1.12.4/t/backcompat6.sh x automake-1.12.4/t/libtool4.sh x automake-1.12.4/t/posixsubst-data.sh x automake-1.12.4/t/tap-number-wordboundary.sh x automake-1.12.4/t/longline.sh x automake-1.12.4/t/dist-missing-am.sh x automake-1.12.4/t/extradep.sh x automake-1.12.4/t/test-trs-basic.sh x automake-1.12.4/t/colon3.sh x automake-1.12.4/t/pluseq8.sh x automake-1.12.4/t/instman2.sh x automake-1.12.4/t/java-empty-classpath.sh x automake-1.12.4/t/lisp2.sh x automake-1.12.4/t/tap-negative-numbers-w.sh x automake-1.12.4/t/remake-subdir.sh x automake-1.12.4/t/extra6.sh x automake-1.12.4/t/check7.sh x automake-1.12.4/t/parallel-tests-suffix.sh x automake-1.12.4/t/python-pr10995.sh x automake-1.12.4/t/distcleancheck.sh x automake-1.12.4/t/override-conditional-2.sh x automake-1.12.4/t/oldvars.sh x automake-1.12.4/t/cxxlink.sh x automake-1.12.4/t/bsource.sh x automake-1.12.4/t/yacc-weirdnames.sh x automake-1.12.4/t/cond3.sh x automake-1.12.4/t/all2.sh x automake-1.12.4/t/ar.sh x automake-1.12.4/t/ccnoco2.sh x automake-1.12.4/t/vars.sh x automake-1.12.4/t/auxdir-computed.tap x automake-1.12.4/t/symlink.sh x automake-1.12.4/t/all.sh x automake-1.12.4/t/remake-subdir-from-subdir.sh x automake-1.12.4/t/remake-deleted-am.sh x automake-1.12.4/t/cond25.sh x automake-1.12.4/t/test-driver-custom-multitest-recheck.sh x automake-1.12.4/t/self-check-dir.tap x automake-1.12.4/t/ccnoco.sh x automake-1.12.4/t/distname.sh x automake-1.12.4/t/xsource.sh x automake-1.12.4/t/tap-no-spurious-w.sh x automake-1.12.4/t/amhello-binpkg.sh x automake-1.12.4/t/instdir.sh x automake-1.12.4/t/depend5.sh x automake-1.12.4/t/testsuite-part.am x automake-1.12.4/t/yacc-depend2.sh x automake-1.12.4/t/help4.sh x automake-1.12.4/t/tap-fancy2-w.sh x automake-1.12.4/t/link_c_cxx.sh x automake-1.12.4/t/tap-ambiguous-directive-w.sh x automake-1.12.4/t/compile6.sh x automake-1.12.4/t/posixsubst-scripts.sh x automake-1.12.4/t/tap-planskip-unplanned-corner.sh x automake-1.12.4/t/license2.sh x automake-1.12.4/t/tap-empty-w.sh x automake-1.12.4/t/dejagnu-siteexp-useredit.sh x automake-1.12.4/t/mkinst2.sh x automake-1.12.4/t/tap-global-log.sh x automake-1.12.4/t/req.sh x automake-1.12.4/t/tap-planskip-bailout.sh x automake-1.12.4/t/dejagnu-absolute-builddir.sh x automake-1.12.4/t/libobj18.sh x automake-1.12.4/t/subdir-cond-gettext.sh x automake-1.12.4/t/extra11.sh x automake-1.12.4/t/instdir-cond.sh x automake-1.12.4/t/python2.sh x automake-1.12.4/t/confh7.sh x automake-1.12.4/t/python-vars.sh x automake-1.12.4/t/instsh3-w.sh x automake-1.12.4/t/yacc-deleted-headers.sh x automake-1.12.4/t/tap-plan-whitespace-w.sh x automake-1.12.4/t/test-trs-recover2.sh x automake-1.12.4/t/tap-deps.sh x automake-1.12.4/t/lexcpp.sh x automake-1.12.4/t/dejagnu-siteexp-extend.sh x automake-1.12.4/t/self-check-is-blocked-signal.tap x automake-1.12.4/t/depcomp-disabled.tap x automake-1.12.4/t/ar-lib6b.sh x automake-1.12.4/t/instmany.sh x automake-1.12.4/t/libobj20a.sh x automake-1.12.4/t/distcheck-override-infodir.sh x automake-1.12.4/t/test-metadata-recheck.sh x automake-1.12.4/t/makefile-deps.sh x automake-1.12.4/t/parallel-tests-log-compiler-example.sh x automake-1.12.4/t/gcj.sh x automake-1.12.4/t/libtool9.sh x automake-1.12.4/t/depcomp.sh x automake-1.12.4/t/txinfo2.sh x automake-1.12.4/t/makevars.sh x automake-1.12.4/t/dist-missing-m4.sh x automake-1.12.4/t/listval.sh x automake-1.12.4/t/check-exported-srcdir.sh x automake-1.12.4/t/gettext2.sh x automake-1.12.4/t/proginst.sh x automake-1.12.4/t/test-driver-custom-multitest-recheck2.sh x automake-1.12.4/t/ar-lib4.sh x automake-1.12.4/t/vartar.sh x automake-1.12.4/t/ar-lib-w.sh x automake-1.12.4/t/dirlist2.sh x automake-1.12.4/t/pr300-ltlib.sh x automake-1.12.4/t/extra9.sh x automake-1.12.4/t/extra4.sh x automake-1.12.4/t/specflg7.sh x automake-1.12.4/t/interp.sh x automake-1.12.4/t/tap-color-w.sh x automake-1.12.4/t/vpath.sh x automake-1.12.4/t/man.sh x automake-1.12.4/t/txinfo3.sh x automake-1.12.4/t/libobj19.sh x automake-1.12.4/t/missing2.sh x automake-1.12.4/t/dist-included-parent-dir.sh x automake-1.12.4/t/tap-todo-skip-whitespace-w.sh x automake-1.12.4/t/check-concurrency-bug9245.sh x automake-1.12.4/t/java3.sh x automake-1.12.4/t/mdate.sh x automake-1.12.4/t/pluseq11.sh x automake-1.12.4/t/depcomp-lt-disabled.tap x automake-1.12.4/t/mdate6.sh x automake-1.12.4/t/parallel-tests-console-output.sh x automake-1.12.4/t/tap-msg0-planskip.sh x automake-1.12.4/t/instdat2.sh x automake-1.12.4/t/canon4.sh x automake-1.12.4/t/silentf77.sh x automake-1.12.4/t/help-init.sh x automake-1.12.4/t/tap-plan-corner.sh x automake-1.12.4/t/tap-todo-skip-together-w.sh x automake-1.12.4/t/silent9.sh x automake-1.12.4/t/yaccdry.sh x automake-1.12.4/t/instfail-java.sh x automake-1.12.4/t/tap-planskip-late.sh x automake-1.12.4/t/ldflags.sh x automake-1.12.4/t/lflags2.sh x automake-1.12.4/t/remake-all-2.sh x automake-1.12.4/t/empty3.sh x automake-1.12.4/t/strictness-override.sh x automake-1.12.4/t/fort2.sh x automake-1.12.4/t/remake9d.sh x automake-1.12.4/t/yacc-d-vpath.sh x automake-1.12.4/t/remake11.sh x automake-1.12.4/t/lisp6.sh x automake-1.12.4/t/tap-missing-plan-and-bad-exit-w.sh x automake-1.12.4/t/cond14.sh x automake-1.12.4/t/posixsubst-programs.sh x automake-1.12.4/t/silent-nowarn.sh x automake-1.12.4/t/repeated-options.sh x automake-1.12.4/t/parallel-tests-dry-run-1.sh x automake-1.12.4/t/vtexi.sh x automake-1.12.4/t/subobj.sh x automake-1.12.4/t/tap-signal.tap x automake-1.12.4/t/make.sh x automake-1.12.4/t/tap-planskip-and-logging.sh x automake-1.12.4/t/fort1.sh x automake-1.12.4/t/nobase-libtool.sh x automake-1.12.4/t/CheckListOfTests.am x automake-1.12.4/t/txinfo32.sh x automake-1.12.4/t/subst.sh x automake-1.12.4/t/parallel-tests-log-compiler-1.sh x automake-1.12.4/t/gnits.sh x automake-1.12.4/t/mkinstall.sh x automake-1.12.4/t/ar2.sh x automake-1.12.4/t/amopt.sh x automake-1.12.4/t/cond30.sh x automake-1.12.4/t/help.sh x automake-1.12.4/t/txinfo19.sh x automake-1.12.4/t/test-extensions.sh x automake-1.12.4/t/pluseq2.sh x automake-1.12.4/t/link_cond.sh x automake-1.12.4/t/cond34.sh x automake-1.12.4/t/subobj5.sh x automake-1.12.4/t/mdate6-w.sh x automake-1.12.4/t/color-w.sh x automake-1.12.4/t/canon8.sh x automake-1.12.4/t/extra3.sh x automake-1.12.4/t/canon7.sh x automake-1.12.4/t/makej.sh x automake-1.12.4/t/auxdir-nonexistent.sh x automake-1.12.4/t/subdirbuiltsources.sh x automake-1.12.4/t/remake1a.sh x automake-1.12.4/t/mkinst3.sh x automake-1.12.4/t/ax/ x automake-1.12.4/t/ax/extract-testsuite-summary.pl x automake-1.12.4/t/ax/tap-functions.sh x automake-1.12.4/t/ax/tap-setup.sh x automake-1.12.4/t/ax/distcheck-hook-m4.am x automake-1.12.4/t/ax/testsuite-summary-checks.sh x automake-1.12.4/t/ax/is_newest x automake-1.12.4/t/ax/tap-summary-aux.sh x automake-1.12.4/t/ax/trivial-test-driver x automake-1.12.4/t/ax/is x automake-1.12.4/t/ax/depcomp.sh x automake-1.12.4/t/ax/am-test-lib.sh x automake-1.12.4/t/ax/test-lib.sh x automake-1.12.4/t/ax/test-defs.in x automake-1.12.4/t/cygwin32.sh x automake-1.12.4/t/ltcond.sh x automake-1.12.4/t/cond31.sh x automake-1.12.4/t/autodist-configure-no-subdir.sh x automake-1.12.4/t/depcomp8a.sh x automake-1.12.4/t/parallel-tests-recheck-depends-on-all.sh x automake-1.12.4/t/yacc-pr204.sh x automake-1.12.4/t/compile5-w.sh x automake-1.12.4/t/suffix8.tap x automake-1.12.4/t/remake3a.sh x automake-1.12.4/t/python-am-path-iftrue.sh x automake-1.12.4/t/instexec.sh x automake-1.12.4/t/instdir-cond2.sh x automake-1.12.4/t/destdir.sh x automake-1.12.4/t/posixsubst-tests-w.sh x automake-1.12.4/t/tap-color.sh x automake-1.12.4/t/serial-tests.sh x automake-1.12.4/t/compile2-w.sh x automake-1.12.4/t/tap-recheck-logs-w.sh x automake-1.12.4/t/autodist-config-headers.sh x automake-1.12.4/t/cond16.sh x automake-1.12.4/t/tap-result-comment.sh x automake-1.12.4/t/insh2.sh x automake-1.12.4/t/empty4.sh x automake-1.12.4/t/maintclean.sh x automake-1.12.4/t/tap-recheck.sh x automake-1.12.4/t/parallel-tests-recheck-pr11791.sh x automake-1.12.4/t/output11.sh x automake-1.12.4/t/test-metadata-global-log.sh x automake-1.12.4/t/cygnus-imply-foreign.sh x automake-1.12.4/t/remake-gnulib-add-acsubst.sh x automake-1.12.4/t/werror3.sh x automake-1.12.4/t/nodef2.sh x automake-1.12.4/t/yflags-force-conditional.sh x automake-1.12.4/t/man4.sh x automake-1.12.4/t/gcj6.sh x automake-1.12.4/t/specflg8.sh x automake-1.12.4/t/yacc-d-cxx.sh x automake-1.12.4/t/wrap/ x automake-1.12.4/t/wrap/aclocal.in x automake-1.12.4/t/wrap/automake.in x automake-1.12.4/t/tap-doc2.sh x automake-1.12.4/t/remake-renamed-am.sh x automake-1.12.4/t/insthook.sh x automake-1.12.4/t/missing-auxfile-stops-makefiles-creation.sh x automake-1.12.4/t/vala-parallel.sh x automake-1.12.4/t/tap-no-spurious-numbers-w.sh x automake-1.12.4/t/comment8.sh x automake-1.12.4/t/confh-subdir-clean.sh x automake-1.12.4/t/autodist-subdir.sh x automake-1.12.4/t/condhook2.sh x automake-1.12.4/t/remake2.sh x automake-1.12.4/t/txinfo.sh x automake-1.12.4/t/warnings-obsolete-default.sh x automake-1.12.4/t/lex-pr204.sh x automake-1.12.4/t/silent-configsite.sh x automake-1.12.4/t/output5.sh x automake-1.12.4/t/ar-lib6a.sh x automake-1.12.4/t/remake-deleted-am-subdir.sh x automake-1.12.4/t/dash.sh x automake-1.12.4/t/check-subst-w.sh x automake-1.12.4/t/javaflags.sh x automake-1.12.4/t/libobj15c.sh x automake-1.12.4/t/parallel-am.sh x automake-1.12.4/t/tap-numbers-leading-zero.sh x automake-1.12.4/t/library2.sh x automake-1.12.4/t/dollarvar.sh x automake-1.12.4/t/ar5.sh x automake-1.12.4/t/tap-bad-prog-w.tap x automake-1.12.4/t/ltinit.sh x automake-1.12.4/t/tap-driver-stderr.sh x automake-1.12.4/t/output-order.sh x automake-1.12.4/t/pr8365-remake-timing.sh x automake-1.12.4/t/library3.sh x automake-1.12.4/t/confh.sh x automake-1.12.4/t/syntax.sh x automake-1.12.4/t/tap-exit-w.sh x automake-1.12.4/t/depcomp2.sh x automake-1.12.4/t/cond5.sh x automake-1.12.4/t/txinfo23.sh x automake-1.12.4/t/parse.sh x automake-1.12.4/t/depcomp-lt-gcc.tap x automake-1.12.4/t/yacc-cxx.sh x automake-1.12.4/t/depend.sh x automake-1.12.4/t/target-cflags.sh x automake-1.12.4/t/test-harness-vpath-rewrite.sh x automake-1.12.4/t/javaprim.sh x automake-1.12.4/t/acloca23.sh x automake-1.12.4/t/acsilent.sh x automake-1.12.4/t/spelling.sh x automake-1.12.4/t/py-compile-usage.sh x automake-1.12.4/t/check10.sh x automake-1.12.4/t/libobj14.sh x automake-1.12.4/t/link_override.sh x automake-1.12.4/t/parallel-tests-log-override-2.sh x automake-1.12.4/t/txinfo29.sh x automake-1.12.4/t/tap-diagnostic-custom-w.sh x automake-1.12.4/t/check-subst.sh x automake-1.12.4/t/maken3-w.sh x automake-1.12.4/t/pr300-lib.sh x automake-1.12.4/t/silent-amopts.sh x automake-1.12.4/t/parallel-tests-suffix-prog.sh x automake-1.12.4/t/remake-moved-m4-file.sh x automake-1.12.4/t/version3.sh x automake-1.12.4/t/yacc8.sh x automake-1.12.4/t/nostdinc.sh x automake-1.12.4/t/recurs.sh x automake-1.12.4/t/strip2.sh x automake-1.12.4/t/testsuite-summary-reference-log.sh x automake-1.12.4/t/missing-w.sh x automake-1.12.4/t/library.sh x automake-1.12.4/t/libexec.sh x automake-1.12.4/t/condman3.sh x automake-1.12.4/t/depdist.sh x automake-1.12.4/t/instsh.sh x automake-1.12.4/t/aclocal-print-acdir.sh x automake-1.12.4/t/objcxx-minidemo.sh x automake-1.12.4/t/subpkg3.sh x automake-1.12.4/t/conff.sh x automake-1.12.4/t/subpkg.sh x automake-1.12.4/t/tap-plan-middle.sh x automake-1.12.4/t/link_f90_only.sh x automake-1.12.4/t/condd.sh x automake-1.12.4/t/warnings-unknown.sh x automake-1.12.4/t/python.sh x automake-1.12.4/t/parallel-tests-dry-run-2.sh x automake-1.12.4/t/tap-planskip-later-errors-w.sh x automake-1.12.4/t/yacc-bison-skeleton.sh x automake-1.12.4/t/lisp7.sh x automake-1.12.4/t/cygnus-no-dist.sh x automake-1.12.4/t/instsh2.sh x automake-1.12.4/t/ar-lib2.sh x automake-1.12.4/t/txinfo25.sh x automake-1.12.4/t/tap-bad-prog.tap x automake-1.12.4/t/primary-prefix-valid-couples.sh x automake-1.12.4/t/java-compile-run-flat.sh x automake-1.12.4/t/primary3.sh x automake-1.12.4/t/badprog.sh x automake-1.12.4/t/distcheck-pr9579.sh x automake-1.12.4/t/depcomp-makedepend.tap x automake-1.12.4/t/tap-autonumber-w.sh x automake-1.12.4/t/silent8.sh x automake-1.12.4/t/test-driver-create-log-dir.sh x automake-1.12.4/t/recurs2.sh x automake-1.12.4/t/parallel-tests-log-compiler-2.sh x automake-1.12.4/t/tap-plan-corner-w.sh x automake-1.12.4/t/test-missing.sh x automake-1.12.4/t/parallel-tests5.sh x automake-1.12.4/t/yflags-conditional.sh x automake-1.12.4/t/clean.sh x automake-1.12.4/t/ar-lib.sh x automake-1.12.4/t/color.sh x automake-1.12.4/t/install2.sh x automake-1.12.4/t/tap-plan-errors-w.sh x automake-1.12.4/t/comment9.sh x automake-1.12.4/t/fort5.sh x automake-1.12.4/t/txinfo8.sh x automake-1.12.4/t/tar3.sh x automake-1.12.4/t/dup2.sh x automake-1.12.4/t/output.sh x automake-1.12.4/t/py-compile-option-terminate.sh x automake-1.12.4/t/yflags.sh x automake-1.12.4/t/vars3.sh x automake-1.12.4/t/aclocal-install-absdir.sh x automake-1.12.4/t/tap-passthrough-exit-w.sh x automake-1.12.4/t/pr224.sh x automake-1.12.4/t/comment6.sh x automake-1.12.4/t/libtool.sh x automake-1.12.4/t/tap-passthrough-exit.sh x automake-1.12.4/t/tagsub.sh x automake-1.12.4/t/subdir-with-slash.sh x automake-1.12.4/t/acloca22.sh x automake-1.12.4/t/man2.sh x automake-1.12.4/t/vala4.sh x automake-1.12.4/t/check12-w.sh x automake-1.12.4/t/posixsubst-tests.sh x automake-1.12.4/t/warnings-precedence.sh x automake-1.12.4/t/cond36.sh x automake-1.12.4/t/cscope2.sh x automake-1.12.4/t/self-check-unindent.tap x automake-1.12.4/t/instdir-texi.sh x automake-1.12.4/t/exeext3.sh x automake-1.12.4/t/man3.sh x automake-1.12.4/t/amopts-location.sh x automake-1.12.4/t/check6.sh x automake-1.12.4/t/ext.sh x automake-1.12.4/t/comments-in-var-def.sh x automake-1.12.4/t/silent-yacc-headers.sh x automake-1.12.4/t/test-driver-custom-multitest.sh x automake-1.12.4/t/distcheck-hook.sh x automake-1.12.4/t/check3-w.sh x automake-1.12.4/t/dejagnu5.sh x automake-1.12.4/t/asm.sh x automake-1.12.4/t/comment7.sh x automake-1.12.4/t/parallel-am2.sh x automake-1.12.4/t/dejagnu2.sh x automake-1.12.4/t/remake-all-1.sh x automake-1.12.4/t/remake6.sh x automake-1.12.4/t/cscope3.sh x automake-1.12.4/t/remake-subdir-long-time.sh x automake-1.12.4/t/color2-w.sh x automake-1.12.4/t/exdir3.sh x automake-1.12.4/t/distcheck-hook2.sh x automake-1.12.4/t/block.sh x automake-1.12.4/t/tests-environment-fd-redirect.sh x automake-1.12.4/t/libobj2.sh x automake-1.12.4/t/distcheck-pr10470.sh x automake-1.12.4/t/vala3.sh x automake-1.12.4/t/targetclash.sh x automake-1.12.4/t/stdlib.sh x automake-1.12.4/t/check-subst-prog.sh x automake-1.12.4/t/backsl.sh x automake-1.12.4/t/autodist-no-duplicate.sh x automake-1.12.4/t/upc3.sh x automake-1.12.4/t/silentcxx-gcc.sh x automake-1.12.4/t/tap-whitespace-normalization.sh x automake-1.12.4/t/aclocal-path-precedence.sh x automake-1.12.4/t/exeext2.sh x automake-1.12.4/t/cond6.sh x automake-1.12.4/t/cond35.sh x automake-1.12.4/t/test-driver-custom.sh x automake-1.12.4/t/remake9a.sh x automake-1.12.4/t/nodepcomp.sh x automake-1.12.4/t/distcom4.sh x automake-1.12.4/t/test-driver-is-distributed.sh x automake-1.12.4/t/python3.sh x automake-1.12.4/t/condinc2.sh x automake-1.12.4/t/ar-lib5a.sh x automake-1.12.4/t/depend4.sh x automake-1.12.4/t/parallel-tests-cmdline-override.sh x automake-1.12.4/t/libobj20c.sh x automake-1.12.4/t/remake-deleted-am-2.sh x automake-1.12.4/t/conflnk2.sh x automake-1.12.4/t/suffix4.sh x automake-1.12.4/t/tar.sh x automake-1.12.4/t/mdate3.sh x automake-1.12.4/t/ac-output-old.tap x automake-1.12.4/t/objc-deps.sh x automake-1.12.4/t/output9.sh x automake-1.12.4/t/objcxx-basic.sh x automake-1.12.4/t/lex-noyywrap.sh x automake-1.12.4/t/werror4.sh x automake-1.12.4/t/tap-planskip-whitespace-w.sh x automake-1.12.4/t/instsh2-w.sh x automake-1.12.4/t/instfail.sh x automake-1.12.4/t/pluseq7.sh x automake-1.12.4/t/acloca21.sh x automake-1.12.4/t/ltcond2.sh x automake-1.12.4/t/java-nobase.sh x automake-1.12.4/t/help-multilib.sh x automake-1.12.4/t/output13.sh x automake-1.12.4/t/remake9b.sh x automake-1.12.4/t/txinfo7.sh x automake-1.12.4/t/vtexi3.sh x automake-1.12.4/t/java-mix.sh x automake-1.12.4/t/relativize.tap x automake-1.12.4/t/tap-bailout-and-logging.sh x automake-1.12.4/t/yacc7.sh x automake-1.12.4/t/silent-lex.sh x automake-1.12.4/t/remake10c.sh x automake-1.12.4/t/asm3.sh x automake-1.12.4/t/cond38.sh x automake-1.12.4/t/compile4.sh x automake-1.12.4/t/fortdep.sh x automake-1.12.4/t/tap-no-spurious.sh x automake-1.12.4/t/parallel-tests-log-override-1.sh x automake-1.12.4/t/check-fd-redirect-w.sh x automake-1.12.4/t/check12.sh x automake-1.12.4/t/subobj11b.sh x automake-1.12.4/t/autodist-stamp-vti.sh x automake-1.12.4/t/warning-groups-win-over-strictness.sh x automake-1.12.4/t/distdir.sh x automake-1.12.4/t/nodist2.sh x automake-1.12.4/t/lex5.sh x automake-1.12.4/t/distcom-subdir.sh x automake-1.12.4/t/percent.sh x automake-1.12.4/t/acsubst2.sh x automake-1.12.4/t/ar-lib5b.sh x automake-1.12.4/t/colon2.sh x automake-1.12.4/t/tap-empty-diagnostic-w.sh x automake-1.12.4/t/instdat.sh x automake-1.12.4/t/tap-planskip-case-insensitive-w.sh x automake-1.12.4/t/pluseq5.sh x automake-1.12.4/t/acloca11.sh x automake-1.12.4/t/tap-diagnostic-w.sh x automake-1.12.4/t/tags2.sh x automake-1.12.4/t/compile2.sh x automake-1.12.4/t/tap-bailout-suppress-badexit.sh x automake-1.12.4/t/acloca14.sh x automake-1.12.4/t/remake-subdir-gnu.sh x automake-1.12.4/t/specflg9.sh x automake-1.12.4/t/tap-planskip-unplanned.sh x automake-1.12.4/t/remake8a.sh x automake-1.12.4/t/commen10.sh x automake-1.12.4/t/sourcefile-in-subdir.sh x automake-1.12.4/t/tap-no-spurious-numbers.sh x automake-1.12.4/t/confvar2.sh x automake-1.12.4/t/autohdrdry.sh x automake-1.12.4/t/parallel-tests-reset-term.sh x automake-1.12.4/t/tap-todo-skip.sh x automake-1.12.4/t/pr243.sh x automake-1.12.4/t/tap-log-w.sh x automake-1.12.4/t/auxdir-autodetect.sh x automake-1.12.4/t/stdinc.sh x automake-1.12.4/t/dejagnu-siteexp-append.sh x automake-1.12.4/t/yacc-clean-cxx.sh x automake-1.12.4/t/missing5.sh x automake-1.12.4/t/notrans.sh x automake-1.12.4/t/dist-pr109765.sh x automake-1.12.4/t/subdir.sh x automake-1.12.4/t/java-extra.sh x automake-1.12.4/t/check.sh x automake-1.12.4/t/acloca12.sh x automake-1.12.4/t/canon3.sh x automake-1.12.4/t/txinfo-unrecognized-extension.sh x automake-1.12.4/t/gnumake.sh x automake-1.12.4/t/help-depend.sh x automake-1.12.4/t/nodist3.sh x automake-1.12.4/t/distlinksbrk.sh x automake-1.12.4/t/autohdr.sh x automake-1.12.4/t/yacc5.sh x automake-1.12.4/t/condinc.sh x automake-1.12.4/t/help-dmalloc.sh x automake-1.12.4/t/check-fd-redirect.sh x automake-1.12.4/t/extra-programs-empty.sh x automake-1.12.4/t/suffix11.tap x automake-1.12.4/t/cond40.sh x automake-1.12.4/t/txinfo33.sh x automake-1.12.4/t/gcj5.sh x automake-1.12.4/t/test-metadata-results.sh x automake-1.12.4/t/self-check-exit.tap x automake-1.12.4/t/cxxnoc.sh x automake-1.12.4/t/tap-log.sh x automake-1.12.4/t/lex-clean.sh x automake-1.12.4/t/confh6.sh x automake-1.12.4/t/remake-deleted-m4-file.sh x automake-1.12.4/t/libobj17.sh x automake-1.12.4/t/libobj16b.sh x automake-1.12.4/t/empty2.sh x automake-1.12.4/t/defun.sh x automake-1.12.4/t/deprecated-acinit.sh x automake-1.12.4/t/tap-bailout-suppress-badexit-w.sh x automake-1.12.4/t/cygnus-check-without-all.sh x automake-1.12.4/t/canon2.sh x automake-1.12.4/t/upc2.sh x automake-1.12.4/t/exeext4.sh x automake-1.12.4/t/doc-parsing-buglets-tabs.sh x automake-1.12.4/t/gettext3.sh x automake-1.12.4/t/distcheck-configure-flags.sh x automake-1.12.4/t/subobj2.sh x automake-1.12.4/t/silent.sh x automake-1.12.4/t/dist-auxdir-many-subdirs.sh x automake-1.12.4/t/compile3-w.sh x automake-1.12.4/t/aclocal-install-mkdir.sh x automake-1.12.4/t/py-compile-basic2.sh x automake-1.12.4/t/order.sh x automake-1.12.4/t/silent7.sh x automake-1.12.4/t/instdir-prog.sh x automake-1.12.4/t/man7.sh x automake-1.12.4/t/subdir-cond-err.sh x automake-1.12.4/t/cxx-lt-demo.sh x automake-1.12.4/t/extra5.sh x automake-1.12.4/t/tap-more-w.sh x automake-1.12.4/t/testsuite-summary-count.sh x automake-1.12.4/t/aclocal-path.sh x automake-1.12.4/t/version6.sh x automake-1.12.4/t/distcheck-configure-flags-am.sh x automake-1.12.4/t/tests-environment-backcompat.sh x automake-1.12.4/t/backcompat5.sh x automake-1.12.4/t/gcj2.sh x automake-1.12.4/t/ccnoco3.sh x automake-1.12.4/t/depcomp-lt-makedepend.tap x automake-1.12.4/t/pr279.sh x automake-1.12.4/t/remake4.sh x automake-1.12.4/t/depcomp-lt-cpp.tap x automake-1.12.4/t/cond21.sh x automake-1.12.4/t/alpha.sh x automake-1.12.4/t/cond20.sh x automake-1.12.4/t/tar2.sh x automake-1.12.4/t/cond28.sh x automake-1.12.4/t/libtool7.sh x automake-1.12.4/t/cond18.sh x automake-1.12.4/t/remake10b.sh x automake-1.12.4/t/vala-headers.sh x automake-1.12.4/t/java-clean.sh x automake-1.12.4/t/specflg6.sh x automake-1.12.4/t/output7.sh x automake-1.12.4/t/py-compile-basedir.sh x automake-1.12.4/t/txinfo24.sh x automake-1.12.4/t/txinfo28.sh x automake-1.12.4/t/suffix10.tap x automake-1.12.4/t/tap-planskip-later-errors.sh x automake-1.12.4/t/ar-lib7.sh x automake-1.12.4/t/remake8b.sh x automake-1.12.4/t/dist-auxfile-2.sh x automake-1.12.4/t/tap-empty.sh x automake-1.12.4/t/suffix9.sh x automake-1.12.4/t/license.sh x automake-1.12.4/t/specflg3.sh x automake-1.12.4/t/tap-negative-numbers.sh x automake-1.12.4/t/colon7.sh x automake-1.12.4/t/primary-prefix-couples-documented-valid.sh x automake-1.12.4/t/txinfo21.sh x automake-1.12.4/t/prefix.sh x automake-1.12.4/t/cond10.sh x automake-1.12.4/t/tap-planskip-unplanned-w.sh x automake-1.12.4/t/aclocal-install-fail.sh x automake-1.12.4/t/check-tests-in-builddir-w.sh x automake-1.12.4/t/parallel-tests8.sh x automake-1.12.4/t/backsl3.sh x automake-1.12.4/t/comment.sh x automake-1.12.4/t/dejagnu4.sh x automake-1.12.4/t/yacc-nodist.sh x automake-1.12.4/t/link_dist.sh x automake-1.12.4/t/cond39.sh x automake-1.12.4/t/vartypo2.sh x automake-1.12.4/t/exdir.sh x automake-1.12.4/t/nodep.sh x automake-1.12.4/t/suffix-chain.tap x automake-1.12.4/t/comment3.sh x automake-1.12.4/t/werror2.sh x automake-1.12.4/t/cond44.sh x automake-1.12.4/t/tap-msg0-result-w.sh x automake-1.12.4/t/acloca13.sh x automake-1.12.4/t/suffix5.sh x automake-1.12.4/t/am-tests-environment.sh x automake-1.12.4/t/libobj15b.sh x automake-1.12.4/t/badopt.sh x automake-1.12.4/t/silent-many-gcc.sh x automake-1.12.4/t/ldadd.sh x automake-1.12.4/t/hdr-vars-defined-once.sh x automake-1.12.4/t/txinfo26.sh x automake-1.12.4/t/check-subst-prog-w.sh x automake-1.12.4/t/stdlib2.sh x automake-1.12.4/t/ansi2knr-no-more.sh x automake-1.12.4/t/ltlibsrc.sh x automake-1.12.4/t/subobj10.sh x automake-1.12.4/t/maken3.sh x automake-1.12.4/t/tap-xfail-tests-w.sh x automake-1.12.4/t/pr279-2.sh x automake-1.12.4/t/silent-many-generic.sh x automake-1.12.4/t/cscope.tap x automake-1.12.4/t/self-check-explicit-skips.sh x automake-1.12.4/t/posixsubst-extradist.sh x automake-1.12.4/t/acloca19.sh x automake-1.12.4/t/vala-vpath.sh x automake-1.12.4/t/vala-mix2.sh x automake-1.12.4/t/check3.sh x automake-1.12.4/t/parallel-tests-trailing-bslash.sh x automake-1.12.4/t/check11-w.sh x automake-1.12.4/t/check-exported-srcdir-w.sh x automake-1.12.4/t/programs-primary-rewritten.sh x automake-1.12.4/t/link_fccxx.sh x automake-1.12.4/t/backcompat3.sh x automake-1.12.4/t/aclocal-acdir.sh x automake-1.12.4/t/init.sh x automake-1.12.4/t/cond19.sh x automake-1.12.4/t/tap-planskip-bailout-w.sh x automake-1.12.4/t/autodist-acconfig-no-subdir.sh x automake-1.12.4/t/remake-gnulib-add-header.sh x automake-1.12.4/t/yflags-var-expand.sh x automake-1.12.4/t/link_fcxx.sh x automake-1.12.4/t/dirlist.sh x automake-1.12.4/t/tap-xfail-tests.sh x automake-1.12.4/t/remake9c.sh x automake-1.12.4/t/tap-bailout-w.sh x automake-1.12.4/t/acloca18.sh x automake-1.12.4/t/nodep2.sh x automake-1.12.4/t/instdir-no-empty.sh x automake-1.12.4/t/aclocal3.sh x automake-1.12.4/t/aclocal4.sh x automake-1.12.4/t/tap-with-and-without-number-w.sh x automake-1.12.4/t/acloca10.sh x automake-1.12.4/t/parallel-tests-driver-install.sh x automake-1.12.4/t/javasubst.sh x automake-1.12.4/t/yaccvpath.sh x automake-1.12.4/t/test-missing2.sh x automake-1.12.4/t/subobj11c.sh x automake-1.12.4/t/compile_f90_c_cxx.sh x automake-1.12.4/t/tap-ambiguous-directive.sh x automake-1.12.4/t/test-driver-custom-xfail-tests.sh x automake-1.12.4/t/dist-missing-included-m4.sh x automake-1.12.4/t/check4.sh x automake-1.12.4/t/libtool5.sh x automake-1.12.4/t/libobj3.sh x automake-1.12.4/t/cxxlibobj.sh x automake-1.12.4/t/spy.sh x automake-1.12.4/t/yacc-dist-nobuild-subdir.sh x automake-1.12.4/t/yaccpp.sh x automake-1.12.4/t/cond43.sh x automake-1.12.4/t/txinfo16.sh x automake-1.12.4/t/vala-mix.sh x automake-1.12.4/t/subdir-add2-pr46.sh x automake-1.12.4/t/python10.sh x automake-1.12.4/t/fort4.sh x automake-1.12.4/t/conffile-leading-dot.sh x automake-1.12.4/t/aclocal.sh x automake-1.12.4/t/mmode.sh x automake-1.12.4/t/alloca2.sh x automake-1.12.4/t/tap-driver-stderr-w.sh x automake-1.12.4/t/mdate4.sh x automake-1.12.4/t/tap-plan-middle-w.sh x automake-1.12.4/t/subdir-add-pr46.sh x automake-1.12.4/t/java-no-duplicate.sh x automake-1.12.4/t/parallel-tests2.sh x automake-1.12.4/t/nodef.sh x automake-1.12.4/t/link_f_only.sh x automake-1.12.4/t/deleted-am.sh x automake-1.12.4/t/tap-msg0-bailout.sh x automake-1.12.4/t/txinfo6.sh x automake-1.12.4/t/tap-no-merge-stdout-stderr-w.sh x automake-1.12.4/t/missing4.sh x automake-1.12.4/t/gnuwarn.sh x automake-1.12.4/t/aclocal-path-install-serial.sh x automake-1.12.4/t/output12.sh x automake-1.12.4/t/subobj11a.sh x automake-1.12.4/t/depend6.sh x automake-1.12.4/t/confsub.sh x automake-1.12.4/t/spell.sh x automake-1.12.4/t/unused.sh x automake-1.12.4/t/python-dist.sh x automake-1.12.4/t/pluseq9.sh x automake-1.12.4/t/libobj4.sh x automake-1.12.4/t/check4-w.sh x automake-1.12.4/t/libtoo10.sh x automake-1.12.4/t/pr72.sh x automake-1.12.4/t/dejagnu6.sh x automake-1.12.4/t/override-html.sh x automake-1.12.4/t/check-tests-in-builddir.sh x automake-1.12.4/t/am-missing-prog.sh x automake-1.12.4/t/aclocal7.sh x automake-1.12.4/t/cygnus-no-installinfo.sh x automake-1.12.4/t/pr266.sh x automake-1.12.4/t/auxdir8.sh x automake-1.12.4/t/self-check-is_newest.tap x automake-1.12.4/t/cygnus-dependency-tracking.sh x automake-1.12.4/t/parallel-tests-interrupt.tap x automake-1.12.4/t/badline.sh x automake-1.12.4/t/ar3.sh x automake-1.12.4/t/location.sh x automake-1.12.4/t/substtarg.sh x automake-1.12.4/t/instsh3.sh x automake-1.12.4/automake.in x automake-1.12.4/doc/ x automake-1.12.4/doc/amhello/ x automake-1.12.4/doc/amhello/Makefile.am x automake-1.12.4/doc/amhello/README x automake-1.12.4/doc/amhello/src/ x automake-1.12.4/doc/amhello/src/Makefile.am x automake-1.12.4/doc/amhello/src/main.c x automake-1.12.4/doc/amhello/configure.ac x automake-1.12.4/doc/automake.info-2 x automake-1.12.4/doc/automake.info x automake-1.12.4/doc/amhello-1.0.tar.gz x automake-1.12.4/doc/automake.info-3 x automake-1.12.4/doc/automake-history.info x automake-1.12.4/doc/fdl.texi x automake-1.12.4/doc/automake.info-1 x automake-1.12.4/doc/automake.texi x automake-1.12.4/doc/automake-history.texi x automake-1.12.4/doc/version.texi x automake-1.12.4/doc/stamp-vti x automake-1.12.4/doc/help2man x automake-1.12.4/aclocal.m4 x automake-1.12.4/NEWS mv automake-1.12.4 automake && touch automake [info] Building contrib for iOS in '/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/contrib/iPhoneOS-armv7' [info] LD FLAGS SELECTED = '-L/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/usr/lib -arch armv7 -isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -miphoneos-version-min=5.1' /Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc clang: error: no such file or directory: 'partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk' clang: error: no such file or directory: 'partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk' clang: error: no such file or directory: 'partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk' clang: error: no such file or directory: 'partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk' cd libdvbpsi && CC="xcrun clang" CXX="xcrun clang++" LD="xcrun ld" AR="xcrun ar" RANLIB="xcrun ranlib" STRIP="xcrun strip" PATH="/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/contrib/arm-apple-darwin11/bin:/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/extras/tools/build/bin:/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/extras/tools/build/bin:/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/contrib/arm-apple-darwin11/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/extras/package/ios/resources" CPPFLAGS="-isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -arch armv7 -mcpu=cortex-a8 -miphoneos-version-min=5.1 -O3 -g -arch armv7 -mcpu=cortex-a8 -isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -miphoneos-version-min=5.0 -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/contrib/arm-apple-darwin11/include" CFLAGS="-isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -arch armv7 -mcpu=cortex-a8 -miphoneos-version-min=5.1 -O3 -g -arch armv7 -mcpu=cortex-a8 -isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -miphoneos-version-min=5.0 -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/contrib/arm-apple-darwin11/include -g" CXXFLAGS="-isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -arch armv7 -mcpu=cortex-a8 -miphoneos-version-min=5.1 -O3 -g -arch armv7 -mcpu=cortex-a8 -isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -miphoneos-version-min=5.0 -I/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/contrib/arm-apple-darwin11/include -g" LDFLAGS="-L/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/usr/lib -arch armv7 -isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -miphoneos-version-min=5.1 -arch armv7 -Wl,-syslibroot,/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -miphoneos-version-min=5.0 -L/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/contrib/arm-apple-darwin11/lib" ./configure --prefix="/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/contrib/arm-apple-darwin11" --build="i686-apple-darwin10" --host="arm-apple-darwin11" --target="arm-apple-darwin11" --program-prefix="" --enable-static --disable-shared --disable-dependency-tracking --with-pic checking build system type... i686-apple-darwin10 checking host system type... arm-apple-darwin11 checking target system type... arm-apple-darwin11 checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for arm-apple-darwin11-strip... xcrun strip checking for a thread-safe mkdir -p... .auto/install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... no checking for awk... awk checking whether make sets $(MAKE)... yes checking for arm-apple-darwin11-gcc... xcrun clang checking whether the C compiler works... no configure: error: in `/Users/rinku.dahiya/Desktop/VLC_Orignal_Source/vlc/contrib/iPhoneOS-armv7/libdvbpsi': configure: error: C compiler cannot create executables See `config.log' for more details make: *** [.dvbpsi] Error 77

ReadyXuMin
Blank Cone
Blank Cone
Posts: 19
Joined: 22 Aug 2011 13:20

Re: Building VLC1.1.0 for IOS with Xcode4.5 Mountain Lion

Postby ReadyXuMin » 11 Apr 2013 15:51

IOS_SDK_ROOT=${DEVROOT}/SDKs/iPhone${PLATFORM}6.0.sdk
Make sure sdk version above matches the sdk you installed on your computer.

in Applications Ctrl+click Xcode, on the pop-up menu select Show Package Contents.
Contents-->Developer-->Platforms-->iPhoneOS.platform-->Developer-->SDKs
You can find it there.

ReadyXuMin
Blank Cone
Blank Cone
Posts: 19
Joined: 22 Aug 2011 13:20

Re: Building VLC1.1.0 for IOS with Xcode4.5 Mountain Lion

Postby ReadyXuMin » 11 Apr 2013 15:56

if you see the live error below, try to run build_for_iOS.sh again. Then it will continue compiling.

Code: Select all

"/usr/bin/curl" -L -O http://live555.com/liveMedia/public/live555-latest.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 559k 100 559k 0 0 47456 0 0:00:12 0:00:12 --:--:-- 81295 rm -rf live || true gunzip -c live555-latest.tar.gz | tar xf - --exclude='[*?:<>\|]' mv live555-latest live || true mv: rename live555-latest to live/live555-latest: No such file or directory touch live patch -p0 < Patches/live-uselocale.patch patching file live/liveMedia/include/Locale.hh Hunk #1 FAILED at 27. 1 out of 1 hunk FAILED -- saving rejects to file live/liveMedia/include/Locale.hh.rej patching file live/liveMedia/Locale.cpp Hunk #1 FAILED at 22. 1 out of 1 hunk FAILED -- saving rejects to file live/liveMedia/Locale.cpp.rej patching file live/liveMedia/RTSPClient.cpp Hunk #1 FAILED at 1019. Hunk #2 FAILED at 1033. 2 out of 2 hunks FAILED -- saving rejects to file live/liveMedia/RTSPClient.cpp.rej patching file live/liveMedia/RTSPClient.cpp Hunk #1 FAILED at 935. 1 out of 1 hunk FAILED -- saving rejects to file live/liveMedia/RTSPClient.cpp.rej patching file live/liveMedia/RTSPCommon.cpp Hunk #1 FAILED at 136. 1 out of 1 hunk FAILED -- saving rejects to file live/liveMedia/RTSPCommon.cpp.rej make[1]: *** [live] Error 1 make: *** [using-src] Error 2

ReadyXuMin
Blank Cone
Blank Cone
Posts: 19
Joined: 22 Aug 2011 13:20

Re: Building VLC1.1.0 for IOS with Xcode4.5 Mountain Lion

Postby ReadyXuMin » 11 Apr 2013 18:35

Sorry, I can't edit old post. Here's the right one.
export OBJC="${DEVROOT}/usr/bin/gcc"
Notice: Step 7
Here's the right code for step7
vlc\extras\package\ios\build_for_iOS.sh

Code: Select all

DEVROOT=`xcode-select -print-path`/Platforms/iPhone${PLATFORM}.platform/Developer IOS_SDK_ROOT=${DEVROOT}/SDKs/iPhone${PLATFORM}6.0.sdk export IOS_SDK_ROOT export CPP="xcrun cc -E" export CXXCPP="xcrun c++ -E" export CC="${DEVROOT}/usr/bin/gcc" export OBJC="${DEVROOT}/usr/bin/rgcc" export CXX="${DEVROOT}/usr/bin/g++"
If you installed new sdk you need to change to 6.0.sdk to your new sdk.
for example: xcode 4.6.1-----------------6.1.sdk

you can find it in your xcode contents-->Developer-->Platforms-->iPhoneOS.platform-->Developer-->SDKs

rdahiya55
New Cone
New Cone
Posts: 7
Joined: 10 Apr 2013 10:42

Re: Building VLC1.1.0 for IOS with Xcode4.5 Mountain Lion

Postby rdahiya55 » 12 Apr 2013 09:19

This is what i got when i tried to run build_for_iOS.sh.

Code: Select all

Building libvlc for the iOS ~/Desktop/Safe_Code/Temp/vlc ~/Desktop/Safe_Code/Temp/vlc/extras/package/ios ~/Desktop/Safe_Code/Temp/vlc/extras/package/ios Boostraping contribs ~/Desktop/Safe_Code/Temp/vlc/extras/contrib ~/Desktop/Safe_Code/Temp/vlc/extras/package/ios Building contrib for iOS Forcing distro.mak to use ios.mak ***************************************************************** * If you need contribs with all debug information, run this * * line and compile the libraries on your own. * * CONTRIBS_RELEASE=no ./bootstrap * ***************************************************************** Using 1 processors cp config.mak src-arm-apple-darwin10-ios/src/../config.mak ln -sf ../../src/Patches src-arm-apple-darwin10-ios/src ln -sf ../../src/packages.mak src-arm-apple-darwin10-ios/src ln -sf ../../src/Makefile src-arm-apple-darwin10-ios/src/Makefile make -C src-arm-apple-darwin10-ios/src (cd ffmpeg; CC="/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc" CXX="/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/g++" LD="/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/ld" RANLIB="/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/ranlib" AR="/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/ar" STRIP="/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/strip" ./configure --prefix=/Users/rinku.dahiya/Desktop/Safe_Code/Temp/vlc/extras/contrib/hosts/arm-apple-darwin10/ios --extra-cflags="--std=gnu99 -DHAVE_STDINT_H" --extra-ldflags="-L/Users/rinku.dahiya/Desktop/Safe_Code/Temp/vlc/extras/contrib/hosts/arm-apple-darwin10/ios/lib -arch armv7 -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -L/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/usr/lib -arch armv7" --enable-cross-compile --cc=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc --arch=arm --disable-debug --enable-gpl --enable-postproc --disable-ffprobe --disable-ffserver --disable-ffmpeg --disable-ffplay --disable-devices --disable-protocols --disable-avfilter --disable-asm --disable-network --target-os=darwin --sysroot=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk --disable-runtime-cpudetect --enable-neon --cpu=cortex-a8 --disable-shared --enable-static && make -j1 && make install-libs install-headers) /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc is unable to create an executable file. C compiler test failed. If you think configure made a mistake, make sure you are using the latest version from SVN. If the latest version fails, report the problem to the ffmpeg-user@mplayerhq.hu mailing list or IRC #ffmpeg on irc.freenode.net. Include the log file "config.log" produced by configure as this will help solving the problem. make[1]: *** [.ffmpeg] Error 1 make: *** [using-src] Error 2

ReadyXuMin
Blank Cone
Blank Cone
Posts: 19
Joined: 22 Aug 2011 13:20

Re: Building VLC1.1.0 for IOS with Xcode4.5 Mountain Lion

Postby ReadyXuMin » 12 Apr 2013 11:18

Please follow step 7.
by the way the quickest way to build vlc for ios is using the latest version for videolan git repository

rdahiya55
New Cone
New Cone
Posts: 7
Joined: 10 Apr 2013 10:42

Re: Building VLC1.1.0 for IOS with Xcode4.5 Mountain Lion

Postby rdahiya55 » 12 Apr 2013 12:50

Can you please share the link of latest version of the videolan git repository ?


rdahiya55
New Cone
New Cone
Posts: 7
Joined: 10 Apr 2013 10:42

Re: Building VLC1.1.0 for IOS with Xcode4.5 Mountain Lion

Postby rdahiya55 » 15 Apr 2013 08:43

I tried building the updated git version code too but still getting this error.

Code: Select all

x tar-1.26/gnu/inttypes.in.h: (Empty error message) tar: Error exit delayed from previous errors. make: *** [tar] Error 1 [info] Building contrib for iOS in '/Users/rinku.dahiya/ios/ImportedSources/vlc/contrib/iPhoneOS-armv7' [info] LD FLAGS SELECTED = '-L/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/usr/lib -arch armv7 -isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -miphoneos-version-min=5.1' /Users/rinku.dahiya/ios/ImportedSources/vlc clang: error: no such file or directory: 'partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk' clang: error: no such file or directory: 'partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk' clang: error: no such file or directory: 'partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk' clang: error: no such file or directory: 'partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk' cd libdvbpsi && CC="xcrun clang" CXX="xcrun clang++" LD="xcrun ld" AR="xcrun ar" RANLIB="xcrun ranlib" STRIP="xcrun strip" PATH="/Users/rinku.dahiya/ios/ImportedSources/vlc/contrib/arm-apple-darwin11/bin:/Users/rinku.dahiya/ios/ImportedSources/vlc/extras/tools/build/bin:/Users/rinku.dahiya/ios/ImportedSources/vlc/extras/tools/build/bin:/Users/rinku.dahiya/ios/ImportedSources/vlc/contrib/arm-apple-darwin11/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/Users/rinku.dahiya/ios/ImportedSources/vlc/extras/package/ios/resources" CPPFLAGS="-isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -arch armv7 -mcpu=cortex-a8 -miphoneos-version-min=5.1 -O3 -g -arch armv7 -mcpu=cortex-a8 -isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -miphoneos-version-min=5.0 -I/Users/rinku.dahiya/ios/ImportedSources/vlc/contrib/arm-apple-darwin11/include" CFLAGS="-isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -arch armv7 -mcpu=cortex-a8 -miphoneos-version-min=5.1 -O3 -g -arch armv7 -mcpu=cortex-a8 -isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -miphoneos-version-min=5.0 -I/Users/rinku.dahiya/ios/ImportedSources/vlc/contrib/arm-apple-darwin11/include -g" CXXFLAGS="-isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -arch armv7 -mcpu=cortex-a8 -miphoneos-version-min=5.1 -O3 -g -arch armv7 -mcpu=cortex-a8 -isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -miphoneos-version-min=5.0 -I/Users/rinku.dahiya/ios/ImportedSources/vlc/contrib/arm-apple-darwin11/include -g" LDFLAGS="-L/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/usr/lib -arch armv7 -isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -miphoneos-version-min=5.1 -arch armv7 -Wl,-syslibroot,/Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -isysroot /Volumes/data partition/XCODE4.5/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -miphoneos-version-min=5.0 -L/Users/rinku.dahiya/ios/ImportedSources/vlc/contrib/arm-apple-darwin11/lib" ./configure --prefix="/Users/rinku.dahiya/ios/ImportedSources/vlc/contrib/arm-apple-darwin11" --build="i686-apple-darwin10" --host="arm-apple-darwin11" --target="arm-apple-darwin11" --program-prefix="" --enable-static --disable-shared --disable-dependency-tracking --with-pic checking build system type... i686-apple-darwin10 checking host system type... arm-apple-darwin11 checking target system type... arm-apple-darwin11 checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for arm-apple-darwin11-strip... xcrun strip checking for a thread-safe mkdir -p... .auto/install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... no checking for awk... awk checking whether make sets $(MAKE)... yes checking for arm-apple-darwin11-gcc... xcrun clang checking whether the C compiler works... no configure: error: in `/Users/rinku.dahiya/ios/ImportedSources/vlc/contrib/iPhoneOS-armv7/libdvbpsi': configure: error: C compiler cannot create executables See `config.log' for more details make: *** [.dvbpsi] Error 77


Return to “VLC media player for macOS Troubleshooting”

Who is online

Users browsing this forum: No registered users and 13 guests