Merge pull request #366 from inikep/dev
zstd.exe has FileVersion and ProductVersion with 32-bit gcc (MinGW)
This commit is contained in:
commit
0b01a8ef09
@ -3,6 +3,9 @@ compiler: gcc
|
|||||||
matrix:
|
matrix:
|
||||||
fast_finish: true
|
fast_finish: true
|
||||||
include:
|
include:
|
||||||
|
# OS X Mavericks
|
||||||
|
- os: osx
|
||||||
|
env: PLATFORM="OS X Mavericks" CMD="make gnu90test && make clean && make test && make clean && make travis-install"
|
||||||
# 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)
|
||||||
- os: linux
|
- os: linux
|
||||||
sudo: false
|
sudo: false
|
||||||
@ -92,9 +95,6 @@ matrix:
|
|||||||
- gcc-5-multilib
|
- gcc-5-multilib
|
||||||
- gcc-6
|
- gcc-6
|
||||||
- gcc-6-multilib
|
- gcc-6-multilib
|
||||||
# OS X Mavericks
|
|
||||||
- os: osx
|
|
||||||
env: PLATFORM="OS X Mavericks" CMD="make gnu90test && make clean && make test && make clean && make travis-install"
|
|
||||||
exclude:
|
exclude:
|
||||||
- compiler: gcc
|
- compiler: gcc
|
||||||
|
|
||||||
|
@ -57,7 +57,13 @@ endif
|
|||||||
ifneq (,$(filter Windows%,$(OS)))
|
ifneq (,$(filter Windows%,$(OS)))
|
||||||
EXT =.exe
|
EXT =.exe
|
||||||
VOID = nul
|
VOID = nul
|
||||||
RES_FILE = ..\projects\VS2010\zstd\zstd.res
|
RES64_FILE = ..\projects\VS2010\zstd\generate_res\zstd64.res
|
||||||
|
RES32_FILE = ..\projects\VS2010\zstd\generate_res\zstd32.res
|
||||||
|
ifneq (,$(filter x86_64%,$(shell $(CC) -dumpmachine)))
|
||||||
|
RES_FILE = $(RES64_FILE)
|
||||||
|
else
|
||||||
|
RES_FILE = $(RES32_FILE)
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
EXT =
|
EXT =
|
||||||
VOID = /dev/null
|
VOID = /dev/null
|
||||||
@ -83,7 +89,7 @@ zstd : $(ZSTDDECOMP_O) $(ZSTD_FILES) $(ZSTDLEGACY_FILES) $(ZDICT_FILES) \
|
|||||||
|
|
||||||
zstd32 : $(ZSTDDECOMP32_O) $(ZSTD_FILES) $(ZSTDLEGACY_FILES) $(ZDICT_FILES) \
|
zstd32 : $(ZSTDDECOMP32_O) $(ZSTD_FILES) $(ZSTDLEGACY_FILES) $(ZDICT_FILES) \
|
||||||
zstdcli.c fileio.c bench.c datagen.c dibio.c
|
zstdcli.c fileio.c bench.c datagen.c dibio.c
|
||||||
$(CC) -m32 $(FLAGS) -DZSTD_LEGACY_SUPPORT=$(ZSTD_LEGACY_SUPPORT) $^ -o $@$(EXT)
|
$(CC) -m32 $(FLAGS) -DZSTD_LEGACY_SUPPORT=$(ZSTD_LEGACY_SUPPORT) $^ $(RES32_FILE) -o $@$(EXT)
|
||||||
|
|
||||||
|
|
||||||
zstd_nolegacy :
|
zstd_nolegacy :
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
REM http://stackoverflow.com/questions/708238/how-do-i-add-an-icon-to-a-mingw-gcc-compiled-executable
|
REM http://stackoverflow.com/questions/708238/how-do-i-add-an-icon-to-a-mingw-gcc-compiled-executable
|
||||||
REM copy "c:\Program Files (x86)\Windows Kits\8.1\Include\um\verrsrc.h" .
|
REM copy "c:\Program Files (x86)\Windows Kits\8.1\Include\um\verrsrc.h" .
|
||||||
windres -I ..\..\..\lib -O coff -i zstd.rc -o zstd.res
|
windres -I ..\..\..\..\lib -O coff -I . -i ..\zstd.rc -o zstd.res
|
BIN
projects/VS2010/zstd/generate_res/zstd32.res
Normal file
BIN
projects/VS2010/zstd/generate_res/zstd32.res
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user