d6743630d2
This change is to fix the autobuild failure at: http://autobuild.buildroot.net/results/45e2c08d5e3c868b2d7fdf26a7c5f88de5ff8f61/build-end.log I can't actually reproduce this bug, because my machine cannot run the 64-bit microblaze toolchain. However, the log makes it clear that -fPIC is needed, and grepping for fPIC and fpic under packages makes it clear that cjson should have used -fPIC anyway. So even if the bug isn't fixed, it must surely be improved. Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
#############################################################
|
|
#
|
|
# cjson
|
|
#
|
|
#############################################################
|
|
CJSON_VERSION = undefined
|
|
CJSON_SOURCE = cJSONFiles.zip
|
|
CJSON_SITE = http://downloads.sourceforge.net/project/cjson/
|
|
CJSON_INSTALL_STAGING = YES
|
|
CJSON_LICENSE = MIT
|
|
|
|
define CJSON_EXTRACT_CMDS
|
|
unzip -d $(@D) $(DL_DIR)/$(CJSON_SOURCE)
|
|
endef
|
|
|
|
define CJSON_BUILD_CMDS
|
|
cd $(@D)/cJSON && $(TARGET_CC) $(TARGET_CFLAGS) -shared -fPIC cJSON.c -o libcJSON.so
|
|
endef
|
|
|
|
define CJSON_INSTALL_STAGING_CMDS
|
|
$(INSTALL) -D $(@D)/cJSON/cJSON.h $(STAGING_DIR)/usr/include/cJSON.h
|
|
$(INSTALL) -D $(@D)/cJSON/libcJSON.so $(STAGING_DIR)/usr/lib/libcJSON.so
|
|
endef
|
|
|
|
define CJSON_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D $(@D)/cJSON/cJSON.h $(STAGING_DIR)/usr/include/cJSON.h
|
|
$(INSTALL) -D $(@D)/cJSON/libcJSON.so $(TARGET_DIR)/usr/lib/libcJSON.so
|
|
endef
|
|
|
|
define CJSON_UNINSTALL_STAGING_CMDS
|
|
rm -f $(STAGING_DIR)/usr/include/cJSON.h
|
|
rm -f $(STAGING_DIR)/usr/lib/libcJSON.so
|
|
endef
|
|
|
|
define CJSON_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/include/cJSON.h
|
|
rm -f $(TARGET_DIR)/usr/lib/libcJSON.so
|
|
endef
|
|
|
|
define CJSON_CLEAN_CMDS
|
|
cd $(@D)/cJSON && rm -f libcJSON.so
|
|
endef
|
|
|
|
$(eval $(generic-package))
|