We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I am using build-armv6 build to compile the x264 using gcc4.2. Unfortuantely when I run the below command
CC=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 ./configure --host=arm-apple-darwin --sysroot=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk --prefix='dist' --extra-cflags='-arch armv6' --extra-ldflags='-arch armv6' --enable-pic --disable-asm
I get No working C compiler found.
Any help to compile x264 and link to ffmpeg is highly appreciated.
Thanks, /D
The text was updated successfully, but these errors were encountered:
@nagalladp : i too faced same issue . any help?
Sorry, something went wrong.
I got this to compile correctly by changing the configure script to this:
#!/bin/sh trap exit ERR
CC=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc SYSROOT= ./configure --host=arm-apple-darwin --cross-prefix='/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/' --sysroot=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/ --prefix='dist' --extra-cflags='-arch armv7' --extra-ldflags=-L/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/usr/lib/system/ --extra-ldflags='-arch armv7' --enable-pic \
make && make install
echo "Installed: $DIR/dist"
No branches or pull requests
Hi,
I am using build-armv6 build to compile the x264 using gcc4.2. Unfortuantely when I run the below command
CC=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 ./configure --host=arm-apple-darwin --sysroot=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk --prefix='dist' --extra-cflags='-arch armv6' --extra-ldflags='-arch armv6' --enable-pic --disable-asm
I get No working C compiler found.
Any help to compile x264 and link to ffmpeg is highly appreciated.
Thanks,
/D
The text was updated successfully, but these errors were encountered: