mirror of
https://github.com/brechtsanders/xlsxio
synced 2025-03-28 21:13:24 +00:00
This commit is contained in:
parent
73d3c24dd0
commit
6c36fa7935
1
.github/workflows/xlsxio.yml
vendored
1
.github/workflows/xlsxio.yml
vendored
@ -91,7 +91,6 @@ jobs:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Build
|
||||
run: |
|
||||
ls -l
|
||||
PKG_CONFIG_PATH=$PWD/deps/lib/pkgconfig:/usr/local/opt/libarchive/lib/pkgconfig:$PKG_CONFIG_PATH \
|
||||
make install \
|
||||
PREFIX=$PWD/release \
|
||||
|
18
Makefile
18
Makefile
@ -25,16 +25,16 @@ SOEXT = .so
|
||||
endif
|
||||
INCS = -Iinclude -Ilib
|
||||
CFLAGS = -O3
|
||||
CFLAGS += $(INCS)
|
||||
override CFLAGS += $(INCS)
|
||||
STATIC_CFLAGS = -DBUILD_XLSXIO_STATIC
|
||||
SHARED_CFLAGS = -DBUILD_XLSXIO_DLL
|
||||
LIBS =
|
||||
LDFLAGS =
|
||||
ifeq ($(OS),Darwin)
|
||||
CFLAGS += -I/opt/local/include -I/opt/local/lib/libzip/include
|
||||
LDFLAGS += -L/opt/local/lib
|
||||
#CFLAGS += -arch i386 -arch x86_64
|
||||
#LDFLAGS += -arch i386 -arch x86_64
|
||||
override CFLAGS += -I/opt/local/include -I/opt/local/lib/libzip/include
|
||||
override LDFLAGS += -L/opt/local/lib
|
||||
#override CFLAGS += -arch i386 -arch x86_64
|
||||
#override LDFLAGS += -arch i386 -arch x86_64
|
||||
STRIPFLAG =
|
||||
else
|
||||
STRIPFLAG = -s
|
||||
@ -58,11 +58,11 @@ endif
|
||||
ifdef WITH_LIBZIP
|
||||
ZIPLIB_LDFLAGS = -lzip
|
||||
ZIPLIB_DEPS_LDFLAGS = -Wl,--as-needed -lz -lbz2 -lcrypto -lgdi32
|
||||
CFLAGS += -DUSE_LIBZIP
|
||||
override CFLAGS += -DUSE_LIBZIP
|
||||
else
|
||||
ZIPLIB_LDFLAGS = -lminizip
|
||||
ZIPLIB_DEPS_LDFLAGS = -Wl,--as-needed -lz
|
||||
CFLAGS += -DUSE_MINIZIP
|
||||
override CFLAGS += -DUSE_MINIZIP
|
||||
endif
|
||||
|
||||
XLSXIOREAD_OBJ = lib/xlsxio_read.o lib/xlsxio_read_sharedstrings.o
|
||||
@ -73,7 +73,7 @@ XLSXIOWRITE_OBJ = lib/xlsxio_write.o
|
||||
XLSXIOWRITE_LDFLAGS = $(ZIPLIB_LDFLAGS)
|
||||
XLSXIOWRITE_SHARED_LDFLAGS =
|
||||
ifneq ($(OS),Windows_NT)
|
||||
SHARED_CFLAGS += -fPIC
|
||||
override SHARED_CFLAGS += -fPIC
|
||||
endif
|
||||
ifeq ($(OS),Windows_NT)
|
||||
XLSXIOREAD_SHARED_LDFLAGS += -Wl,--out-implib,$@$(LIBEXT) -Wl,--compat-implib -Wl,--output-def,$(@:%.dll=%.def)
|
||||
@ -92,7 +92,7 @@ ifdef STATICDLL
|
||||
ifeq ($(OS),Windows_NT)
|
||||
# lines below to compile Windows DLLs with no dependancies
|
||||
ifdef WITH_LIBZIP
|
||||
CFLAGS += -DZIP_STATIC
|
||||
override CFLAGS += -DZIP_STATIC
|
||||
endif
|
||||
XLSXIOREAD_LDFLAGS += -static $(ZIPLIB_DEPS_LDFLAGS)
|
||||
XLSXIOREADW_LDFLAGS += -static $(ZIPLIB_DEPS_LDFLAGS)
|
||||
|
Loading…
x
Reference in New Issue
Block a user