-
Notifications
You must be signed in to change notification settings - Fork 257
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
[BUG] NDK r19 does not set armv7 arch with ndk-build #906
Comments
That's strange. In a trivial ndk-build project I see no difference in compiler invocation based on the presence of $ ndk-build APP_ABI=armeabi-v7a APP_CFLAGS=-v -B > without 2>&1
$ ndk-build APP_ABI=armeabi-v7a APP_CFLAGS="-march=armv7-a -v" -B > with 2>&1
$ diff with without
$ Presumably it's a problem for something other than Clang, but we don't ever invoke |
@emmanuel-marty can you share the Android.mk/Application.mk you used for building libpng? |
Hey there, Apologies for the delay in answering. Here is a complete, reduced NDK project that exhibits the issue (I cut it down to just building libpng) I am also including the build log. As mentioned this is on macOS using ndk-build from NDK r19. This behavior didn't show on NDK r18b with the same config. It's probably a super minor issue (and doesn't show with my new projects using CMake and Android Studio as far as I can tell) Thanks! |
.. And here is a further cleaned up project actually, use this instead :-) I'm thinking maybe the use of -fno-integrated-as here may be a reason why you didn't see the behavior, in any case you have the .mk files in there and hopefully it will build fine for you and exhibit the issue. |
I've already sent r19b to QA, so it may be too late to get it fixed for that release, but I'll check on that and at the very least get this added to the KI list. Note that the non-integrated assembler is not the default, so this shouldn't affect most builds. |
Looks like I caught it in time. I'll fix this for r19b, which will unfortunately delay r19b a day or so, but is worth doing IMO. |
It was definitely a rare combination of the now less used ndk-build tool and non-default flags (that particular project used -fno-integrated-as to properly assemble arm .S files for libtheora, which I cut out of the test project for clarity) but still great that you were able to fix it in time for r19b. Thanks! |
Fix is merged to r19. Thanks for the report! |
The non-integrated assembler does not get the proper -march flag when it is implicit in the triple. Pass it explicitly to avoid problems until we can fix the driver. Writing a test that fails to compile is proving difficult because the warnings emitted by the assembler for the provided test case are just notes rather than warnings so they can't be promoted to errors, and we can't use the __ARM_ARCH_7A__ define because those are resolved by the C preprocessor, which *does* have the right architecture set... Will attempt to add tests for this in a follow up since we need to respin r19b ASAP. Test: Manual inspection for now. Bug: android/ndk#906 Change-Id: I4ab3e9aee0775150731108e42f5f584a5f3c27ea (cherry picked from commit e3f7078)
* Update ndk from branch 'ndk-release-r19' to 01e24d4dd3f72c3743ea964de6a965af7909e816 - Merge "Fix ARM version for non-integrated assembler." into ndk-release-r19 - Fix ARM version for non-integrated assembler. The non-integrated assembler does not get the proper -march flag when it is implicit in the triple. Pass it explicitly to avoid problems until we can fix the driver. Writing a test that fails to compile is proving difficult because the warnings emitted by the assembler for the provided test case are just notes rather than warnings so they can't be promoted to errors, and we can't use the __ARM_ARCH_7A__ define because those are resolved by the C preprocessor, which *does* have the right architecture set... Will attempt to add tests for this in a follow up since we need to respin r19b ASAP. Test: Manual inspection for now. Bug: android/ndk#906 Change-Id: I4ab3e9aee0775150731108e42f5f584a5f3c27ea (cherry picked from commit e3f70782abf6e4567aa1cfc025b001d3c125f06f)
Description
This is minor, but when using ndk-build to compile native code with NDK r19 (probably due to switching to the stock toolchain) the assembler emits tons of warnings such as:
pngwrite-4abf69.s:1985: Rd and Rm should be different in mul
pngwrite-4abf69.s:7926: Rd and Rm should be different in mla
...
I understand these contraints date back from the armv5 architecture, and are irrelevant on armv7, so it seems that -march isn't correctly passed to clang, as the warnings go away if I add "-march-armv7-a" to LOCAL_CFLAGS in Android.mk.
I did not check if the fpu ABI flag is also incorrectly omitted due to the same issue, but that may be worth looking into as well.
All my new projects use Android Studio and cmake to build native code, and it's a warning that can be ignored, so that isn't a big deal, but I still have some legacy projects using ndk-build, maybe it's worth fixing at the NDK level so as not to pollute logs or have to add a conditional to add the -march flag to Android.mk
To reproduce:
Environment Details
Not all of these will be relevant to every bug, but please provide as much
information as you can.
The text was updated successfully, but these errors were encountered: