summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Green <green@moxielogic.com>2019-10-14 06:46:52 -0400
committerAnthony Green <green@moxielogic.com>2019-10-14 06:46:52 -0400
commitd2a4095af68f4530571bc3fa613dd7f5e5b815a3 (patch)
treecdf9d7b34e1c0f366b34e3b83e8befc970f4e1d4
parent058aa4130445b4ef3c2f77f796c33506873031ca (diff)
downloadlibffi-d2a4095af68f4530571bc3fa613dd7f5e5b815a3.tar.gz
Fix comments.
-rw-r--r--.appveyor.yml7
1 files changed, 1 insertions, 6 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 7a97c2a..ece8a94 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -1,6 +1,6 @@
shallow_clone: true
-# We're currently only testing 64-bit libffi built with Microsoft's
+# We're currently only testing libffi built with Microsoft's
# tools.
# This matrix should be expanded to include at least:
# 32- and 64-bit gcc/cygwin
@@ -64,8 +64,3 @@ build_script:
- c:\cygwin\bin\sh -lc "(cd $OLDPWD; ./configure CC='%MSVCC%' CXX='%MSVCC%' LD='link' CPP='cl -nologo -EP' CXXCPP='cl -nologo -EP' CPPFLAGS='-DFFI_BUILDING_DLL' AR='/cygdrive/c/projects/libffi/.travis/ar-lib lib' NM='dumpbin -symbols' STRIP=':' --build=$BUILD --host=$HOST;)"
- c:\cygwin\bin\sh -lc "(cd $OLDPWD; cp src/%SRC_ARCHITECTURE%/ffitarget.h include; make; find .;)"
- c:\cygwin\bin\sh -lc "(cd $OLDPWD; cp `find . -name 'libffi-?.dll'` $HOST/testsuite/; make check; cat `find ./ -name libffi.log`)"
-
-# FIXME: "make check" currently fails. It just looks like msvcc needs
-# to learn about -L and -l options. If you add "make check; cat `find
-# ./ -name libffi.log" to the end of that build command you'll see
-# what I mean.