Closed Bug 1139241 Opened 9 years ago Closed 6 years ago

Add Android/aarch64 build configure

Categories

(NSPR :: NSPR, defect)

ARM64
Android
defect
Not set
normal

Tracking

(Not tracked)

RESOLVED INCOMPLETE

People

(Reporter: m_kato, Assigned: m_kato)

References

Details

(Whiteboard: [arm64:m1])

Attachments

(2 files)

      No description provided.
Comment on attachment 8587152 [details] [diff] [review]
Part 1. Don't define PR_ALTERNATE_INT64_TYPEDEF if Android 64bit

In stdint.h in Android-21

...
#if __LP64__
typedef long __int64_t;
typedef unsigned long __uint64_t;
#else
typedef long long __int64_t;
typedef unsigned long long __uint64_t;
#endif
...

So we should not define PR_ALTERNATE_INT64_TYPEDEF on Android 64bit.
Attachment #8587152 - Flags: review? → review?(ted)
Assignee: wtc → m_kato
Comment on attachment 8587152 [details] [diff] [review]
Part 1. Don't define PR_ALTERNATE_INT64_TYPEDEF if Android 64bit

Review of attachment 8587152 [details] [diff] [review]:
-----------------------------------------------------------------

Makoto: thank you for the patch. I suggest an alternative fix.
Please try that. If that doesn't work, I will review+ this patch.

::: pr/include/prtypes.h
@@ +230,5 @@
>  ** C11. When most platforms ignore this C99 requirement, NSPR will be able
>  ** to use <stdint.h>. A patch to do that is in NSPR bug 634793.
>  */
>  
> +#if defined(__APPLE__) || (defined(__ANDROID__) && !defined(__LP64__)) || defined(__OpenBSD__)

Makoto: I believe we can simply remove "|| defined(__ANDROID__)". Please test that. Thanks!
Attachment #8587152 - Flags: review-
Comment on attachment 8587152 [details] [diff] [review]
Part 1. Don't define PR_ALTERNATE_INT64_TYPEDEF if Android 64bit

Review of attachment 8587152 [details] [diff] [review]:
-----------------------------------------------------------------

::: pr/include/prtypes.h
@@ +230,5 @@
>  ** C11. When most platforms ignore this C99 requirement, NSPR will be able
>  ** to use <stdint.h>. A patch to do that is in NSPR bug 634793.
>  */
>  
> +#if defined(__APPLE__) || (defined(__ANDROID__) && !defined(__LP64__)) || defined(__OpenBSD__)

I looked into why we added "|| defined(__ANDROID__)" before. It turns out that it was me who added it, but it's not clear why I thought it was necessary. The only documentation I can find is what I wrote at the end of bug 634793 comment 34:

  These findings showed PRInt64/PRUint64 are only different from
  int64_t/uint64_t on OpenBSD and Android. This explains why the
  sloppy code only broke OpenBSD among the "desktop" platforms, but
  I don't know why the sloppy code didn't seem to break Android.

Perhaps I was confused at that time, because I don't think we did 64-bit Android builds at that time (2012-12-06).

Also, if the "#if __LP64__" code you quoted in comment 2 was only added to the Android bionic library recently, we may need to do a bionic/NDK version check. In any case, I believe your proposed patch is equivalent to simply removing the "|| defined(__ANDROID__)" check. So please test that. Thank you!
Comment on attachment 8587296 [details] [diff] [review]
Part 2. Add Android aarch64 and x86_64 configure

Review of attachment 8587296 [details] [diff] [review]:
-----------------------------------------------------------------

r=wtc. This seems correct. Please wait for Ted's review because
I am not very familiar with the Android build process.

::: configure.in
@@ +206,2 @@
>          esac
> +        case "$host_cpu" in

Should this be "build_cpu" instead of "host_cpu"?

build_cpu is the CPU of the build machine, right?

@@ +214,5 @@
> +                android_toolchain="$android_ndk"/toolchains/$target_name/prebuilt/$kernel_name-x86
> +            fi
> +            ;;
> +        *)
> +            AC_MSG_ERROR([No known toolchain for your host cpu])

If you change "host_cpu" to "build_cpu", please also change this error message to "build cpu".
Attachment #8587296 - Flags: review+
Note that in Mozilla-land we have historically (since the introduction of autoconf) used "host" where autotools uses "build". cls admitted in a bug that that was his mistake, but we have an awful lot of usage of it and it would be painful to change at this point. NSPR's configure follows suit:
http://hg.mozilla.org/projects/nspr/file/6b30fde4148a/configure.in#l583
Ted: your comment 7 seems to indicate your support of the Part 2 patch
for configure (attachment 8587296 [details] [diff] [review]). If so, could you please
check it in? Thanks.

Please do not check in the Part 1 patch (for prtypes.h).
Comment on attachment 8587296 [details] [diff] [review]
Part 2. Add Android aarch64 and x86_64 configure

Review of attachment 8587296 [details] [diff] [review]:
-----------------------------------------------------------------

r=me with the s/host/build/ thing wtc pointed out fixed.

::: configure.in
@@ +206,2 @@
>          esac
> +        case "$host_cpu" in

Yes. Confusingly the top-level Mozilla configure uses host/target, but NSPR switched to use the autoconf-standard build/host.
Attachment #8587296 - Flags: review?(ted) → review+
Comment on attachment 8587296 [details] [diff] [review]
Part 2. Add Android aarch64 and x86_64 configure

Review of attachment 8587296 [details] [diff] [review]:
-----------------------------------------------------------------

::: configure.in
@@ +206,2 @@
>          esac
> +        case "$host_cpu" in

Ted Mielczarek wrote:
> Confusingly the top-level Mozilla configure uses host/target, but
> NSPR switched to use the autoconf-standard build/host.

Ted, are you sure NSPR switched? I didn't make that change when I
upgraded NSPR's configure.in from autoconf 2.13 to autoconf 2.50.
Actually now I'm not and it seems to confusingly use both in places, like:
https://dxr.mozilla.org/mozilla-central/source/nsprpub/configure.in#555
I suspect that that works in practice because the top-level configure is passing down --target, and $build is auto-detected with config.guess?
Comment on attachment 8587152 [details] [diff] [review]
Part 1. Don't define PR_ALTERNATE_INT64_TYPEDEF if Android 64bit

Clearing this because wtc already reviewed it.
Attachment #8587152 - Flags: review?(ted)
Blocks: Fennec-ARM64
Makoto, do we still need to land your NSPR patches here for Android/aarch64 builds?
Flags: needinfo?(m_kato)
QA Contact: jjones
Hardware: ARM → ARM64
Whiteboard: [arm64:m1]
(In reply to Chris Peterson [:cpeterson] from comment #14)
> Makoto, do we still need to land your NSPR patches here for Android/aarch64
> builds?

Unnecessary for Gecko.  Current build system doesn't use NSPR's configure.  So I should close this.  If anyone needs configure support for NSPR, they can file a bug.
Status: NEW → RESOLVED
Closed: 6 years ago
Flags: needinfo?(m_kato)
Resolution: --- → INCOMPLETE
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: