mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Major reorganisation.
New libs (libethsupport, libevm, liblll). New LLLC binary.
This commit is contained in:
parent
9d7047272d
commit
ef95ba9ac3
@ -21,8 +21,8 @@
|
||||
|
||||
#include "MemTrie.h"
|
||||
|
||||
#include <libethcore/TrieCommon.h>
|
||||
#include <libethereum/CommonEth.h>
|
||||
#include <libethsupport/TrieCommon.h>
|
||||
#include <libethcore/CommonEth.h>
|
||||
using namespace std;
|
||||
using namespace eth;
|
||||
|
||||
|
@ -21,8 +21,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <libethcore/Common.h>
|
||||
#include <libethcore/FixedHash.h>
|
||||
#include <libethsupport/Common.h>
|
||||
#include <libethsupport/FixedHash.h>
|
||||
|
||||
namespace eth
|
||||
{
|
||||
|
@ -21,8 +21,8 @@
|
||||
|
||||
#include "TrieHash.h"
|
||||
|
||||
#include <libethcore/TrieCommon.h>
|
||||
#include <libethereum/CommonEth.h>
|
||||
#include <libethsupport/TrieCommon.h>
|
||||
#include <libethcore/CommonEth.h>
|
||||
using namespace std;
|
||||
using namespace eth;
|
||||
|
||||
|
@ -21,8 +21,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <libethcore/Common.h>
|
||||
#include <libethcore/FixedHash.h>
|
||||
#include <libethsupport/Common.h>
|
||||
#include <libethsupport/FixedHash.h>
|
||||
|
||||
namespace eth
|
||||
{
|
||||
|
@ -22,9 +22,9 @@
|
||||
|
||||
#include <random>
|
||||
#include <secp256k1/secp256k1.h>
|
||||
#include <libethcore/Common.h>
|
||||
#include <libethcore/RLP.h>
|
||||
#include <libethcore/Log.h>
|
||||
#include <libethsupport/Common.h>
|
||||
#include <libethsupport/RLP.h>
|
||||
#include <libethsupport/Log.h>
|
||||
#include <libethereum/Transaction.h>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
|
@ -21,8 +21,8 @@
|
||||
*/
|
||||
|
||||
#include <chrono>
|
||||
#include <libethcore/Log.h>
|
||||
#include <libethereum/Dagger.h>
|
||||
#include <libethsupport/Log.h>
|
||||
#include <libethcore/Dagger.h>
|
||||
using namespace std;
|
||||
using namespace std::chrono;
|
||||
using namespace eth;
|
||||
|
@ -22,8 +22,8 @@
|
||||
|
||||
#include <fstream>
|
||||
#include "JsonSpiritHeaders.h"
|
||||
#include <libethcore/TrieCommon.h>
|
||||
#include <libethcore/Log.h>
|
||||
#include <libethsupport/TrieCommon.h>
|
||||
#include <libethsupport/Log.h>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
using namespace std;
|
||||
|
4
main.cpp
4
main.cpp
@ -31,8 +31,8 @@ int vmTest();
|
||||
int hexPrefixTest();
|
||||
int peerTest(int argc, char** argv);
|
||||
|
||||
#include <libethcore/Log.h>
|
||||
#include <libethereum/BlockInfo.h>
|
||||
#include <libethsupport/Log.h>
|
||||
#include <libethcore/BlockInfo.h>
|
||||
using namespace std;
|
||||
using namespace eth;
|
||||
|
||||
|
6
rlp.cpp
6
rlp.cpp
@ -23,9 +23,9 @@
|
||||
#include <fstream>
|
||||
#include <sstream>
|
||||
#include "JsonSpiritHeaders.h"
|
||||
#include <libethcore/Log.h>
|
||||
#include <libethcore/RLP.h>
|
||||
#include <libethcore/Common.h>
|
||||
#include <libethsupport/Log.h>
|
||||
#include <libethsupport/RLP.h>
|
||||
#include <libethsupport/Common.h>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
#include <algorithm>
|
||||
|
||||
|
2
trie.cpp
2
trie.cpp
@ -23,7 +23,7 @@
|
||||
#include <fstream>
|
||||
#include <random>
|
||||
#include "JsonSpiritHeaders.h"
|
||||
#include <libethcore/TrieDB.h>
|
||||
#include <libethsupport/TrieDB.h>
|
||||
#include "TrieHash.h"
|
||||
#include "MemTrie.h"
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
9
vm.cpp
9
vm.cpp
@ -22,11 +22,12 @@
|
||||
|
||||
#include <fstream>
|
||||
#include <cstdint>
|
||||
#include <libethcore/Log.h>
|
||||
#include <libethereum/ExtVMFace.h>
|
||||
#include <libethsupport/Log.h>
|
||||
#include <libethcore/Instruction.h>
|
||||
#include <libevm/ExtVMFace.h>
|
||||
#include <libevm/VM.h>
|
||||
#include <liblll/Compiler.h>
|
||||
#include <libethereum/Transaction.h>
|
||||
#include <libethereum/VM.h>
|
||||
#include <libethereum/Instruction.h>
|
||||
#include "JsonSpiritHeaders.h"
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user