Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
From 7472764fe19cb3eea77f21cc2859859b8ac62085 Mon Sep 17 00:00:00 2001
|
||||
From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
||||
Date: Mon, 14 Aug 2017 23:36:36 +0200
|
||||
Subject: [PATCH] configure.ac: do not force -O2
|
||||
|
||||
The user may want to provide its own set of optimization flags, and
|
||||
therefore forcing -O2 should not be done.
|
||||
|
||||
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
||||
Submitted-upstream: https://github.com/libspatialindex/libspatialindex/pull/101
|
||||
---
|
||||
configure.ac | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index dc5e49f..2e2aa68 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -53,7 +53,7 @@ if test "x$enable_debug" = "xyes"; then
|
||||
CXXFLAGS="$CXXFLAGS -g -DDEBUG"
|
||||
AC_MSG_RESULT(checking wether debug information is enabled... yes)
|
||||
else
|
||||
- CXXFLAGS="$CXXFLAGS -O2 -DNDEBUG"
|
||||
+ CXXFLAGS="$CXXFLAGS -DNDEBUG"
|
||||
AC_MSG_RESULT(checking wether debug information is enabled... no)
|
||||
fi
|
||||
|
||||
--
|
||||
2.9.4
|
||||
|
||||
30
bsp/buildroot/package/libspatialindex/Config.in
Normal file
30
bsp/buildroot/package/libspatialindex/Config.in
Normal file
@@ -0,0 +1,30 @@
|
||||
config BR2_PACKAGE_LIBSPATIALINDEX
|
||||
bool "libspatialindex"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
help
|
||||
The purpose of libspatialindex is to provide:
|
||||
|
||||
* An extensible framework that will support robust spatial
|
||||
indexing methods.
|
||||
|
||||
* Support for sophisticated spatial queries. Range, point
|
||||
location, nearest neighbor and k-nearest neighbor as well
|
||||
as parametric queries (defined by spatial constraints)
|
||||
should be easy to deploy and run.
|
||||
|
||||
* Easy to use interfaces for inserting, deleting and updating
|
||||
information.
|
||||
|
||||
* Wide variety of customization capabilities. Basic index and
|
||||
storage characteristics like the page size, node capacity,
|
||||
minimum fan-out, splitting algorithm, etc. should be easy
|
||||
to customize.
|
||||
|
||||
* Index persistence. Internal memory and external memory
|
||||
structures should be supported. Clustered and non-clustered
|
||||
indices should be easy to be persisted.
|
||||
|
||||
https://libspatialindex.github.io
|
||||
|
||||
comment "libspatialindex needs a toolchain w/ C++"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP
|
||||
@@ -0,0 +1,4 @@
|
||||
# From http://download.osgeo.org/libspatialindex/spatialindex-src-1.8.5.tar.bz2.md5
|
||||
md5 3303c47fd85aa17e64ef52ebec212762 spatialindex-src-1.8.5.tar.bz2
|
||||
# Locally computed
|
||||
sha256 31ec0a9305c3bd6b4ad60a5261cba5402366dd7d1969a8846099717778e9a50a spatialindex-src-1.8.5.tar.bz2
|
||||
26
bsp/buildroot/package/libspatialindex/libspatialindex.mk
Normal file
26
bsp/buildroot/package/libspatialindex/libspatialindex.mk
Normal file
@@ -0,0 +1,26 @@
|
||||
################################################################################
|
||||
#
|
||||
# libspatialindex
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBSPATIALINDEX_VERSION = 1.8.5
|
||||
LIBSPATIALINDEX_SITE = http://download.osgeo.org/libspatialindex
|
||||
LIBSPATIALINDEX_SOURCE = spatialindex-src-$(LIBSPATIALINDEX_VERSION).tar.bz2
|
||||
LIBSPATIALINDEX_INSTALL_STAGING = YES
|
||||
LIBSPATIALINDEX_LICENSE = MIT
|
||||
LIBSPATIALINDEX_LICENSE_FILES = COPYING
|
||||
|
||||
# 0001-configure.ac-do-not-force-O2.patch
|
||||
LIBSPATIALINDEX_AUTORECONF = YES
|
||||
|
||||
LIBSPATIALINDEX_CXXFLAGS = $(TARGET_CXXFLAGS)
|
||||
LIBSPATIALINDEX_CONF_ENV = CXXFLAGS="$(LIBSPATIALINDEX_CXXFLAGS)"
|
||||
|
||||
# Workaround gcc ICE
|
||||
# (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68485)
|
||||
ifeq ($(BR2_microblaze),y)
|
||||
LIBSPATIALINDEX_CXXFLAGS += -O0
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user