-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
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
compile failing #1
Comments
What's your Android SDK/NDK ? Did you correctly setup both of them ? Did you download one android platform with SDK android tool ? |
I switched to androidapi=14 and all went fine. I was using androidapi=15 |
I can report the same issue, fails with androidapi 15, but works fine with 14 may be worth a note or something for anyone new setting up the enviroment. |
Ok, after checking, android api 15 cannot be used cause it doesn't exist in NDK r7 (r7 was released before SDK 15). Adding a tip about it in the doc |
added in doc |
Same issue with android api 15 and kivy_stable, kivy compiled ok but had some errors later: import error for lang ets. I have latest SDK and NDK 8. |
Same issue here with android api 18 and ndk r8b. |
It turns out i need to set api to 14 instead of 18, though the sdk i use is api-18. |
I was seeing the same "configure: error: C compiler cannot create executables" issue. After a bit of searching and looking at the output log I finally realized it was due to a permission issue. The configure script was trying to copy files to a directory but didn't have proper permissions. I fixed the issue by changing the ownership of the python-for-android directory to my user name. (chown -R "usernmae" python-for-android) Thought I'd post this here in hopes it'll save someone else a bit of time. :-) |
More information for those googlers: You're not constrained to API 14 - you just need to go to android developer website and download the latest NDK (not SDK, NDK) and then upgrade the your environment variables to point to the new NDK location (and new API level) and then re-run ./distribute.sh -m...... And everything works fine. |
The easiest way to do it these days is to switch to buildozer instead of On Sun, May 25, 2014 at 5:45 AM, Michael R. Hines
Ben Rousch |
Update from origin master
Include HOME in build environment
Fixes patch failing with: ``` patching file setup.py Hunk kivy#1 FAILED at 97. 1 out of 1 hunk FAILED -- saving rejects to file setup.py.rej ``` Co-Authored-By: Zengwen Yuan <[email protected]>
after doing:
./distribute.sh -m "kivy"
last lines:
...
Run build
Call build_hostpython
Call build_python
Entering in ARM enviromnent
configure: WARNING: if you wanted to set the --build type, don't use --host.
If a cross compiler is detected then cross compile mode will be used
checking for --enable-universalsdk... no
checking for --with-universal-archs... 32-bit
checking MACHDEP... linux3
checking EXTRAPLATDIR...
checking machine type as reported by uname -m... i686
checking for --without-gcc... no
checking for arm-eabi-gcc... ccache arm-linux-androideabi-gcc -mandroid -fomit-frame-pointer --sysroot /home/martin/work/android/android-ndk-r7/platforms/android-15/arch-arm
checking whether the C compiler works... no
configure: error: in
/home/martin/work/android/python-for-android/build/python/Python-2.7.2': configure: error: C compiler cannot create executables See
config.log' for more detailsThe text was updated successfully, but these errors were encountered: