Skip to content

Commit

Permalink
build md updated
Browse files Browse the repository at this point in the history
  • Loading branch information
elementrem committed Nov 7, 2017
1 parent 246df4b commit 01dcd70
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions solidity_build.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@


Ubuntu Xenial (16.04)
```
//Prerequisite
Expand All @@ -15,3 +17,19 @@ mkdir build
cd build
cmake .. && make
```

or even easier:
```
#note: this will install binaries solc and soltest at usr/local/bin
./scripts/build.sh
```

And even for Windows:
```
mkdir build
cd build
cmake -G "Visual Studio 15 2017 Win64" ..
```
This latter set of instructions should result in the creation of solidity.sln in that build directory. Double-clicking on that file should result in Visual Studio firing up. We suggest building RelWithDebugInfo configuration.


0 comments on commit 01dcd70

Please sign in to comment.