Skip to content

Commit

Permalink
properly clean Commands completely, it compiles
Browse files Browse the repository at this point in the history
  • Loading branch information
giocamurati committed May 17, 2018
1 parent 206ef05 commit 0bcfcb5
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 235 deletions.
47 changes: 0 additions & 47 deletions include/Commands/BinaryExprAST.h

This file was deleted.

47 changes: 0 additions & 47 deletions include/Commands/CmdExprAST.h

This file was deleted.

102 changes: 0 additions & 102 deletions include/Commands/Commands.h

This file was deleted.

35 changes: 0 additions & 35 deletions include/Commands/ExprAST.h

This file was deleted.

4 changes: 2 additions & 2 deletions tools/inception-cl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ add_executable(inception-cl
)

set(INCEPTION_LIBS
CodeInv Commands Target Transforms Utils
CodeInv Target Transforms Utils
)

# set(LLVM_COMPONENTS
# mc
# )

target_link_libraries(inception-cl Commands CodeInv Target Transforms Utils ${INCEPTION_LIBS})
target_link_libraries(inception-cl CodeInv Target Transforms Utils ${INCEPTION_LIBS})
link_directories(${LLVM_LIBRARY_DIRS})

install(TARGETS inception-cl RUNTIME DESTINATION bin)
Expand Down
4 changes: 2 additions & 2 deletions tools/inception-cl/inception-cl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
#include "BinFun.h"
#include "CodeInv/Decompiler.h"
#include "CodeInv/Disassembler.h"
#include "Commands/Commands.h"
//#include "Commands/Commands.h"
#include "IRMerger.h"

#include "CollisionSolver.h"
Expand All @@ -100,7 +100,7 @@ static void save(std::string fileName, Module *module);
// Global Variables and Parameters
//===----------------------------------------------------------------------===//
static std::string ProgramName;
static Commands CommandParser;
//static Commands CommandParser;

std::unique_ptr<object::ObjectFile> TempExecutable;
// bool isStripped = false;
Expand Down

0 comments on commit 0bcfcb5

Please sign in to comment.