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
i composed an android packages (SDK) with the following versions on NixOS
abiVersions = [ "armeabi-v7a" "arm64-v8a" "x86" "x86_64" ]; platformVersions = [ "26" ]; platformToolsVersion = "34.0.5"; toolsVersion = "26.1.1"; buildToolsVersions = [ "30.0.3" ];
see full configuration
after makeing it work for arm i tried uncommenting lines for make it available for x86 or x86_64 cpu but it give me this error with the composition previously declared.
error: unknown target CPU 'intel' (for bot x86 and x86_64)
WORKAROUND i figured out that removing the flag -mtune=intel seem to compile properly ( not still tested )
-mtune=intel
The text was updated successfully, but these errors were encountered:
No branches or pull requests
i composed an android packages (SDK) with the following versions on NixOS
see full configuration
after makeing it work for arm i tried uncommenting lines for make it available for x86 or x86_64 cpu but it give me this error with the composition previously declared.
error: unknown target CPU 'intel'
(for bot x86 and x86_64)
WORKAROUND
i figured out that removing the flag
-mtune=intel
seem to compile properly ( not still tested )The text was updated successfully, but these errors were encountered: