mirror of
https://github.com/jmcnamara/libxlsxwriter.git
synced 2026-05-21 06:45:21 -06:00
Made the tmpfileplus lib optional.
This commit is contained in:
parent
6d59991925
commit
a6cf4c3237
2 changed files with 3 additions and 3 deletions
|
|
@ -6,8 +6,8 @@ compiler:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- CFLAGS='-Werror'
|
- CFLAGS='-Werror'
|
||||||
- CFLAGS='-Werror -m32'
|
- NO_VALGRIND = 1 USE_STANDARD_TMPFILE=1 CFLAGS='-Werror'
|
||||||
- USE_STANDARD_TMPFILE=1 CFLAGS='-Werror'
|
- NO_VALGRIND = 1 CFLAGS='-Werror -m32'
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- sudo pip install pytest
|
- sudo pip install pytest
|
||||||
|
|
|
||||||
2
Makefile
2
Makefile
|
|
@ -60,7 +60,7 @@ endif
|
||||||
|
|
||||||
# Test the functional test exes with valgrind (in 64bit mode only).
|
# Test the functional test exes with valgrind (in 64bit mode only).
|
||||||
test_valgrind : all
|
test_valgrind : all
|
||||||
ifeq ($(findstring m32,$(CFLAGS)),)
|
ifndef NO_VALGRIND
|
||||||
$(Q)$(MAKE) -C test/functional/src test_valgrind
|
$(Q)$(MAKE) -C test/functional/src test_valgrind
|
||||||
$(Q)$(MAKE) -C examples test_valgrind
|
$(Q)$(MAKE) -C examples test_valgrind
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue