-
Notifications
You must be signed in to change notification settings - Fork 91
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
No architectures to compile for (ARCHS=$(NATIVE_ARCH_ACTUAL) #7
Comments
I have the same problem here. |
You can try to set a variable NATIVE_ARCH_ACTUAL a value corresponding to your kernel version. Or manually change this line in setup.py |
Try to replace in the setup.py (inside the lightblue-0.4/ directory) the following line os.system("xcodebuild install -arch '$(NATIVE_ARCH_ACTUAL)' -target LightAquaBlue -configuration Release DSTROOT=/ INSTALL_PATH=/Library/Frameworks DEPLOYMENT_LOCATION=YES") by this one os.system("xcodebuild install -arch 'i386' -target LightAquaBlue -configuration Release DSTROOT=/ INSTALL_PATH=/Library/Frameworks DEPLOYMENT_LOCATION=YES") This works for me |
@BugAndNewsReporter tried your suggestion it builds but raises wrong architecture - when i later one try:
|
the suggestion given by @BugAndNewsReporter worked for me. thanks |
os.system("xcodebuild install -arch 'i386' -target LightAquaBlue -configuration Release DSTROOT=/ INSTALL_PATH=/Library/Frameworks DEPLOYMENT_LOCATION=YES") Above is for 32 bit architectures and hence results in "ImportError: Bundle could not be loaded" on 64 bit machines. For 64 bit machines use: |
Worked!, Thank you! |
@madhurbhargav 's suggestion worked for me (64 bit processor, running Mavericks). Thanks! |
@madhurbhargava suggestion worked for me as well. Thanks! |
@BugAndNewsReporter Thanks to you too! |
@madhurbhargava Thank you, works on:
|
The installer exits with a failure on my mac:
Check dependencies
No architectures to compile for (ARCHS=$(NATIVE_ARCH_ACTUAL), VALID_ARCHS=i386 x86_64).
** INSTALL FAILED **
It happens both within and outside a virtualenv
What to do? Any ideas?
I'm on MacOS X 10.8.4 with Xcode and command line developer tools installed. 2.4ghz intel core 2 duo.
The text was updated successfully, but these errors were encountered: