Skip to content

Commit

Permalink
add lost file
Browse files Browse the repository at this point in the history
  • Loading branch information
dnasdw committed Jan 20, 2018
1 parent 6a432fa commit c58d105
Show file tree
Hide file tree
Showing 4 changed files with 479 additions and 0 deletions.
14 changes: 14 additions & 0 deletions dep/src/capstone-3.0.5-rc3/.appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 3.0.4-{build}

os:
- Visual Studio 2015

before_build:
- call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64

build_script:
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=RELEASE -G "NMake Makefiles" ..
- nmake

112 changes: 112 additions & 0 deletions dep/src/capstone-3.0.5-rc3/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
# Object files
*.o
*.ko

# Gcc dependency-tracking files
*.d

# Libraries
*.lib
*.a

# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib

# Executables
*.exe
*.out
*.app

# python
bindings/python/build/
bindings/python/capstone.egg-info/
*.pyc

# java
bindings/java/capstone.jar

# ocaml
bindings/ocaml/*.cmi
bindings/ocaml/*.cmx
bindings/ocaml/*.cmxa
bindings/ocaml/*.mli
bindings/ocaml/test
bindings/ocaml/test_arm
bindings/ocaml/test_arm64
bindings/ocaml/test_mips
bindings/ocaml/test_x86
bindings/ocaml/test_detail
bindings/ocaml/test_ppc
bindings/ocaml/test_sparc
bindings/ocaml/test_systemz
bindings/ocaml/test_xcore


# test binaries
tests/test
tests/test_detail
tests/test_iter
tests/test_arm
tests/test_arm64
tests/test_mips
tests/test_x86
tests/test_ppc
tests/test_skipdata
tests/test_sparc
tests/test_systemz
tests/test_xcore
tests/*.static
tests/test_basic
tests/test_customized_mnem


# regress binaries
suite/regress/invalid_read_in_print_operand


# vim tmp file
*.swp
*~

capstone.pc

# local files
_*

# freebsd ports: generated file with "make makesum" command
packages/freebsd/ports/devel/capstone/distinfo

# VisualStudio
ProjectUpgradeLog.log
Debug/
Release/
ipch/
*.sdf
*.opensdf
*.suo
*.user
*.backup
*.VC.db
*.VC.opendb

# CMake build directories
build*/

# Xcode
xcode/Capstone.xcodeproj/xcuserdata
xcode/Capstone.xcodeproj/project.xcworkspace/xcuserdata

# suite/
test_arm_regression
test_arm_regression.o
fuzz_harness
test_iter_benchmark


*.s
.DS_Store

cstool/cstool
16 changes: 16 additions & 0 deletions dep/src/capstone-3.0.5-rc3/.travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: cpp
sudo: false
before_install:
- export LD_LIBRARY_PATH=`pwd`/tests/:$LD_LIBRARY_PATH
script:
- ./make.sh
- make check
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cp libcapstone.so bindings/python/; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cp libcapstone.dylib bindings/python/; fi
- cd bindings/python && make check
compiler:
- clang
- gcc
os:
- linux
- osx
Loading

0 comments on commit c58d105

Please sign in to comment.