dfced0ad88
The proj package exhibits gcc bug 68485 when built for the Microblaze
architecture with optimization enabled, which causes a build failure.
As done for other packages in Buildroot work around this gcc bug by
setting optimization to -O0 if BR2_TOOLCHAIN_HAS_GCC_BUG_68485=y.
Fixes:
http://autobuild.buildroot.net/results/e61/e61bd55067071415223e523a81de3c2e9cafea6f/
Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com>
Tested-by: Zoltan Gyarmati <zgyarmati@zgyarmati.de>
Acked-by: Zoltan Gyarmati <zgyarmati@zgyarmati.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit c99665cde7
)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
486 B
Makefile
22 lines
486 B
Makefile
################################################################################
|
|
#
|
|
# proj
|
|
#
|
|
################################################################################
|
|
|
|
PROJ_VERSION = 5.0.1
|
|
PROJ_SITE = http://download.osgeo.org/proj
|
|
PROJ_LICENSE = MIT
|
|
PROJ_LICENSE_FILES = COPYING
|
|
PROJ_INSTALL_STAGING = YES
|
|
|
|
PROJ_CFLAGS = $(TARGET_CFLAGS)
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_68485),y)
|
|
PROJ_CFLAGS += -O0
|
|
endif
|
|
|
|
PROJ_CONF_ENV = CFLAGS="$(PROJ_CFLAGS)"
|
|
|
|
$(eval $(autotools-package))
|