Git Product home page Git Product logo

Comments (2)

AmesianX avatar AmesianX commented on April 28, 2024

You have to fix some problems at the source.
First, you need to modify the CMakeFile.txt.

c:\mcsema\CMakeLists.txt

if (MSVC60)
set(BOOST_TOOLSET "vc6")
elseif(MSVC70)
set(BOOST_TOOLSET "vc7")
elseif(MSVC71)
set(BOOST_TOOLSET "vc71")
elseif(MSVC80)
set(BOOST_TOOLSET "vc80")
elseif(MSVC90)
set(BOOST_TOOLSET "vc90")
elseif(MSVC10)
set(BOOST_TOOLSET "vc100")
elseif(MSVC11)
set(BOOST_TOOLSET "vc110")
elseif(MSVC12)
set(BOOST_TOOLSET "vc120")
else(MSVC12)
set(BOOST_TOOLSET "")
endif(MSVC60)


As shown in the following BOOST_TOOLSET is a variable boost for your version.


if(CMAKE_BUILD_TYPE MATCHES Debug)
if(WIN32)
#use .lib paths here
set(Boost_LIBRARIES
${CMAKE_CURRENT_BINARY_DIR}/boost/lib/boost_filesystem-${BOOST_TOOLSET}-mt-gd-1_52.lib
${CMAKE_CURRENT_BINARY_DIR}/boost/lib/boost_date_time-${BOOST_TOOLSET}-mt-gd-1_52.lib
${CMAKE_CURRENT_BINARY_DIR}/boost/lib/boost_program_options-${BOOST_TOOLSET}-mt-gd-1_52.lib
${CMAKE_CURRENT_BINARY_DIR}/boost/lib/boost_system-${BOOST_TOOLSET}-mt-gd-1_52.lib
${CMAKE_CURRENT_BINARY_DIR}/boost/lib/boost_thread-${BOOST_TOOLSET}-mt-gd-1_52.lib)
else(WIN32)


You will need to fix the boost version in all projects.
And you must be patched to skip spaces in the control flow python scripts.
Also, you can compile as 64-bit debug mode.
Then, you open the project file must be modified as nasm -f win64 from nasm -f win32.
(nasm -f Win64 from -f win32)

If it succeeds both mcsema compile will not work.
There are critical bugs.
Developers seem to not want to fix the problems of the project.

from mcsema.

imanadib avatar imanadib commented on April 28, 2024

Thanks

from mcsema.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.