diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-02-24 15:08:27 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-02-24 15:08:27 +0100 |
commit | 48f80c276be2abfc405aa619492a1d688baa0c82 (patch) | |
tree | 05d6604cceba92a79b26b5ee4ea5c130740506d4 /src/xxd | |
parent | 25153e127df4b4540692aa4682163b567808e002 (diff) | |
download | vim-git-48f80c276be2abfc405aa619492a1d688baa0c82.tar.gz |
updated for version 7.2.372v7.2.372
Problem: Cross-compiling GvimExt and xxd doesn't work.
Solution: Change the build files. (Markus Heidelberg)
Diffstat (limited to 'src/xxd')
-rw-r--r-- | src/xxd/Make_cyg.mak | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xxd/Make_cyg.mak b/src/xxd/Make_cyg.mak index f04b7bfde..ba74b1808 100644 --- a/src/xxd/Make_cyg.mak +++ b/src/xxd/Make_cyg.mak @@ -12,6 +12,7 @@ DEFINES = -mno-cygwin LIBS = endif +CC = gcc CFLAGS = -O2 -Wall -DWIN32 $(DEFINES) ifneq (sh.exe, $(SHELL)) @@ -21,7 +22,7 @@ DEL = del endif xxd.exe: xxd.c - gcc $(CFLAGS) -s -o xxd.exe xxd.c $(LIBS) + $(CC) $(CFLAGS) -s -o xxd.exe xxd.c $(LIBS) clean: -$(DEL) xxd.exe |