Skip to content

Commit

Permalink
Inital commit 🔥
Browse files Browse the repository at this point in the history
  • Loading branch information
Machiry committed Oct 17, 2017
1 parent d550b2c commit b6da02e
Show file tree
Hide file tree
Showing 55 changed files with 13,043 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
**.pyc
*.gdb_history
**/.idea/
InterfaceHandlers/MainAnalysisPasses/build_dir/
InterfaceHandlers/AnalysisHelpers/Dr_linker/dr_linker
InterfaceHandlers/AnalysisHelpers/EntryPointIdentifier/entry_point_handler

### OSX ###
*.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
3 changes: 3 additions & 0 deletions InterfaceHandlers/AnalysisHelpers/Dr_linker/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash
BASEDIR=$(dirname "$0")
g++ $BASEDIR/src/main.cpp -o $BASEDIR/dr_linker `llvm-config --cxxflags --libs --ldflags --system-libs`
1,536 changes: 1,536 additions & 0 deletions InterfaceHandlers/AnalysisHelpers/Dr_linker/src/main.cpp

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash
BASEDIR=$(dirname "$0")
g++ $BASEDIR/src/main.cpp -fpermissive -o $BASEDIR/entry_point_handler `llvm-config --cxxflags --libs --ldflags --system-libs`
Loading

0 comments on commit b6da02e

Please sign in to comment.