appveyor.yml: added tests of fullbench-dll fullbench-lib
parent
60f10aab6c
commit
4e10bd339d
|
@ -8,7 +8,7 @@ matrix:
|
||||||
|
|
||||||
|
|
||||||
# Container-based Ubuntu 12.04 LTS Server Edition 64 bit (doesn't support 32-bit includes)
|
# Container-based Ubuntu 12.04 LTS Server Edition 64 bit (doesn't support 32-bit includes)
|
||||||
- env: Ubu=12.04cont Cmd="make test && make clean && make travis-install && make -C tests fullbench-dll fullbench-lib"
|
- env: Ubu=12.04cont Cmd="make test && make clean && make travis-install"
|
||||||
os: linux
|
os: linux
|
||||||
sudo: false
|
sudo: false
|
||||||
|
|
||||||
|
|
|
@ -2,10 +2,10 @@ version: 1.0.{build}
|
||||||
environment:
|
environment:
|
||||||
matrix:
|
matrix:
|
||||||
- COMPILER: "gcc"
|
- COMPILER: "gcc"
|
||||||
MAKE_PARAMS: "test"
|
MAKE_PARAMS: "make test && make lib && make -C tests fullbench-dll fullbench-lib"
|
||||||
PLATFORM: "mingw64"
|
PLATFORM: "mingw64"
|
||||||
- COMPILER: "gcc"
|
- COMPILER: "gcc"
|
||||||
MAKE_PARAMS: "test"
|
MAKE_PARAMS: "make test"
|
||||||
PLATFORM: "mingw32"
|
PLATFORM: "mingw32"
|
||||||
- COMPILER: "visual"
|
- COMPILER: "visual"
|
||||||
CONFIGURATION: "Debug"
|
CONFIGURATION: "Debug"
|
||||||
|
@ -62,8 +62,8 @@ build_script:
|
||||||
ECHO *** &&
|
ECHO *** &&
|
||||||
make -v &&
|
make -v &&
|
||||||
cc -v &&
|
cc -v &&
|
||||||
ECHO make %MAKE_PARAMS% &&
|
ECHO %MAKE_PARAMS% &&
|
||||||
make %MAKE_PARAMS%
|
sh -c %MAKE_PARAMS%
|
||||||
)
|
)
|
||||||
- if [%COMPILER%]==[gcc] if [%PLATFORM%]==[mingw64] (
|
- if [%COMPILER%]==[gcc] if [%PLATFORM%]==[mingw64] (
|
||||||
COPY programs\zstd.exe bin\zstd.exe &&
|
COPY programs\zstd.exe bin\zstd.exe &&
|
||||||
|
|
|
@ -18,7 +18,6 @@ extern "C" {
|
||||||
#include <stddef.h> /* size_t */
|
#include <stddef.h> /* size_t */
|
||||||
|
|
||||||
|
|
||||||
/* ===== ZSTDLIB_API : control library symbols visibility ===== */
|
|
||||||
/* ===== ZSTDLIB_API : control library symbols visibility ===== */
|
/* ===== ZSTDLIB_API : control library symbols visibility ===== */
|
||||||
#if defined(__GNUC__) && (__GNUC__ >= 4)
|
#if defined(__GNUC__) && (__GNUC__ >= 4)
|
||||||
# define ZSTDLIB_VISIBILITY __attribute__ ((visibility ("default")))
|
# define ZSTDLIB_VISIBILITY __attribute__ ((visibility ("default")))
|
||||||
|
|
Loading…
Reference in New Issue