ethereum / aleth

Aleth – Ethereum C++ client, tools and libraries
GNU General Public License v3.0
3.96k stars 2.18k forks source link

testeth should work with lllc on windows #4160

Open winsvega opened 7 years ago

winsvega commented 7 years ago

testeth uses pipes to run lllc on unix. but there is no implementation for windows. people start building cpp and solidity on windows hoping to generate some tests but it is unavailable because testeth simply cant run lllc.

a PR with this implementation is welcome.

the code is here: https://github.com/ethereum/cpp-ethereum/blob/develop/test/tools/libtesteth/TestHelper.cpp#L455-L470

1337ninja commented 7 years ago

Hi, I'd like to work on this? Can I use _popen for Windows and achieve the same?