diff options
author | Idwer Vollering <vidwer@gmail.com> | 2017-03-08 15:31:22 +0100 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2017-03-09 12:15:56 +0100 |
commit | 171d1a5979800e3f8d3fc4c55fe08d50367f1dba (patch) | |
tree | 31c7108d3829f72ac0457f1ab61e544eb5b11ddf /util/crossgcc | |
parent | 7129ccbd2330c42e9dc32c6e8127620556260c33 (diff) | |
download | coreboot-171d1a5979800e3f8d3fc4c55fe08d50367f1dba.tar.xz |
toolchain: fix compilation of GMP on FreeBSD
Built on FreeBSD -CURRENT
Obtained from FreeBSD: https://github.com/freebsd/freebsd-ports/commit/bbedec80e36fe22a4f55433c3e6c2a64828fd9da
Change-Id: Ic6b6db8e3a9d86a30c50a09d58566846446031ea
Signed-off-by: Idwer Vollering <vidwer@gmail.com>
Reviewed-on: https://review.coreboot.org/18675
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Tested-by: build bot (Jenkins)
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'util/crossgcc')
-rw-r--r-- | util/crossgcc/patches/gmp-6.1.2_freebsd-configure.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/util/crossgcc/patches/gmp-6.1.2_freebsd-configure.patch b/util/crossgcc/patches/gmp-6.1.2_freebsd-configure.patch new file mode 100644 index 0000000000..5770af6921 --- /dev/null +++ b/util/crossgcc/patches/gmp-6.1.2_freebsd-configure.patch @@ -0,0 +1,20 @@ +--- gmp-6.1.2.orig/configure 2016-12-16 16:45:32.000000000 +0100 ++++ gmp-6.1.2/configure 2017-03-08 14:26:11.194245000 +0100 +@@ -6776,7 +6776,7 @@ + long i; + for (i = 0; i < 88 + 1; i++) + a[i] = ~0L; +- r = malloc (10000 * sizeof (unsigned long)); ++ r = calloc (10000, sizeof (unsigned long)); + r2 = r; + for (i = 0; i < 528; i += 23) + { +@@ -8394,7 +8394,7 @@ + long i; + for (i = 0; i < 88 + 1; i++) + a[i] = ~0L; +- r = malloc (10000 * sizeof (unsigned long)); ++ r = calloc (10000, sizeof (unsigned long)); + r2 = r; + for (i = 0; i < 528; i += 23) + { |