This website works better with JavaScript.
Home
Explore
Help
Sign In
lukechilds
/
ethminer
mirror of
https://github.com/lukechilds/ethminer.git
Watch
1
Star
0
Fork
0
Code
Issues
Projects
Releases
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1285
Commits
3
Branches
10
Tags
52 MiB
Tree:
0d3f298e45
cl-refactor
master
opencl1.1
v0.10.0
v0.10.0.dev2
v0.10.0.dev3
v0.10.0rc1
v0.10.0rc2
v0.10.0rc3
v0.10.0rc4
v0.11.0
v0.11.0rc1
v0.11.0rc2
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '0d3f298e45'
${ noResults }
ethminer
/
libwhisper
/
_libwhisper.cpp
6 lines
89 B
Raw
Normal View
History
Disable SCUs on non MSVC builds.
10 years ago
#
ifdef _MSC_VER
Fixed all the VS2013 build issues. - Updated projects after all the re-potting. - For simplicity, there's just one VS project for all the libethereum projects, however VS doesn't like duplicate source file names within the same project. To get around this I've created some "single compilation units" for some folders, these probably also compile faster than multiple files. - Some 32bit only compile errors in RLP (cryptic template ambiguity) were resolved by explicitly invoking operator T() rather than doing a cast to T. - Moved multiple implementations of toString(h256s const& _bs) into FixedHash.h - Release shutdown deadlock problem is outstanding.
10 years ago
#
include
"All.h"
#
include
"Common.cpp"
#
include
"WhisperPeer.cpp"
Disable SCUs on non MSVC builds.
10 years ago
#
endif