maxfunky
|
|
September 06, 2016, 03:24:30 AM |
|
I tested the on a win7 PC and yes the AES build is faster than SSE2 with the cryptolight algo, on linux I only tested one build.
|
|
|
|
joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
September 06, 2016, 12:42:24 PM |
|
I tested the on a win7 PC and yes the AES build is faster than SSE2 with the cryptolight algo, on linux I only tested one build.
Thanks for testing. There isn't much I can do if it's already using AES.
|
|
|
|
joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
September 06, 2016, 04:31:33 PM |
|
And now for something completely different, with apologies to Monty Python. I just saw a rerun of the premiere episode of Halt and Catch Fire, a TV series set in the early days of PCs. At the start they had a description of the meaning of the title, but it was one I had never heard before. Their definition was supported by this Wiki page. https://en.wikipedia.org/wiki/Halt_and_Catch_FireBut my recollection is different. Halt is a legitimate CPU instruction which is intended to stop all processing and require an external reset signal to recover. It is also supposed to put the CPU in a low power state. But early implementations tried to save silicon by mapping the halt instruction to a jump to self instruction with all interrupts masked. This was thought to emulate a halted state. But, not only did this implementation not put the CPU in a low power state it focussed all power to a very small area of the CPU eventually burning it out. It didn't actually catch fire but it did go up in smoke. Anyone else have this understanding of the meaning? Edit: there was mention of my version later in the arcticle. Just to ensure I include some on-topic content, my brand new 1070 essentially halted and caught fire the other day. I actually saw a flame shoot out of the case. Fortunately it didn't take anything else with it, got a replacenent on the spot from a dealer and was back up and running.
|
|
|
|
t2yax
Sr. Member
Offline
Activity: 462
Merit: 250
Arianee:Smart-link Connecting Owners,Assets,Brands
|
|
September 06, 2016, 06:10:23 PM |
|
hey joblo i've tested your miner at my pc(OS is windows 10 pro Redstone 1 ),the pc is asus x552cl with i5 3337u: https://www.asus.com/Notebooks/X552CL/specifications/miner works but it doesn't work properly with other mean it works too fast:http://prntscr.com/cewmxn i hope you will solve it,keep up the good work ! edit:many of the algos same with this build including m7m,cryptonight,quark,qubit,keccak and i think much more
|
|
|
|
joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
September 06, 2016, 06:14:10 PM |
|
cpuminer-opt v3.4.6 is released source: https://drive.google.com/file/d/0B0lVSGQYLJIZekg3QUNCcE1ZU2c/view?usp=sharingWindows bins: https://drive.google.com/file/d/0B0lVSGQYLJIZYVI1Rm40d2xEXzA/view?usp=sharingNew in v3.4.6 For users: Cryptolight algo is now supported with AES otimizations. The code was always present but untested until now. The dsplay format for share submissions is changed: - colour keyed "Accepted" or "Rejected" status. - reject count and rate displayed when share is rejected. For developers: Base code for managing new work in the miner thread loop was rewritten due to confusing and incorrect implementation. There was redundant code and closely related code that spanned different functions, and It was also not fully compliant with the spec https://en.bitcoin.it/wiki/Stratum_mining_protocol with respect to the "clean" parameter. - removed call to stratum_gen_work from miner_thread (redundant). - eliminated gen_work_now gate function (merged with get_new_work). - renamed gate function init_nonce to get_new_work. - moved most gate targets from algo-gate.c to cpu-miner.c removing most mining related code from algo-gate-api.c. Some restructuring was also done to firm up algo_gate. All references to scratchbuf, used by scrypt and drop algos, is moved from cpu-miner.c to the respective algos' source files. This allows for the removal of the scratchbuf argument of the scanhash function.
|
|
|
|
joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
September 06, 2016, 06:22:32 PM Last edit: September 06, 2016, 06:42:14 PM by joblo |
|
hey joblo i've tested your miner at my pc(OS is windows 10 pro Redstone 1 ),the pc is asus x552cl with i5 3337u: https://www.asus.com/Notebooks/X552CL/specifications/miner works but it doesn't work properly with other mean it works too fast:http://prntscr.com/cewmxn i hope you will solve it,keep up the good work ! edit:many of the algos same with this build including m7m,cryptonight,quark,qubit,keccak and i think much more Confirmed benchmark is broken in v3.4.6. I didn't think I did anything to affect it but will have to take a closer look. Edit: found the problem, simple change in cpu-miner.c line 1334. Simply comment out the zrero initialization and uncomment the original code. Change: uint32_t end_nonce = 0; // uint32_t end_nonce = ( 0xffffffffU / opt_n_threads ) * (thr_id + 1) - 0x20;
to: // uint32_t end_nonce = 0; uint32_t end_nonce = ( 0xffffffffU / opt_n_threads ) * (thr_id + 1) - 0x20;
I'm too lazy to recompile all the binaries. Normal mining works.
|
|
|
|
antantti
Legendary
Offline
Activity: 1176
Merit: 1015
|
|
September 06, 2016, 10:00:54 PM |
|
Joblo,
I am still waiting xmr address that works. If on exchange need that payment id too.
|
|
|
|
joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
September 06, 2016, 10:27:51 PM |
|
Joblo,
I am still waiting xmr address that works. If on exchange need that payment id too.
I thought I posted it but maybe I didn't. It shouldn't need a payment id. Thanks for your consideration. XMR: 497qTtunbvPgUT6auQnLLacLPKNnxW9fADEYy1ugYYLXd5FuyCR3RwoT44hanwKYnyXXq8QtLTYAr1Q AKe3jCWPfN8oEK3W
|
|
|
|
joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
September 06, 2016, 10:32:52 PM |
|
This is a reminder to those asking for help to post their question in this forum. Please do not use PM. An open forum allows all users to learn as well as offer help. It also helps if you post details such as miner version, CPU, error messages etc. If I have to ask for further information it will delay a solution. And make sure you're actually using cpuminer-opt before posting here. Happy mining.
|
|
|
|
torsh
Newbie
Offline
Activity: 5
Merit: 0
|
|
September 06, 2016, 10:35:03 PM |
|
If it is not difficult to make the assembly of a -MSSE2 -MAVX2 -MAVX please
|
|
|
|
antantti
Legendary
Offline
Activity: 1176
Merit: 1015
|
|
September 06, 2016, 10:38:13 PM |
|
Joblo,
I am still waiting xmr address that works. If on exchange need that payment id too.
I thought I posted it but maybe I didn't. It shouldn't need a payment id. Thanks for your consideration. XMR: 497qTtunbvPgUT6auQnLLacLPKNnxW9fADEYy1ugYYLXd5FuyCR3RwoT44hanwKYnyXXq8QtLTYAr1Q AKe3jCWPfN8oEK3W You did but it still gives this error: Failed to decode address (#0): Invalid encoded length
|
|
|
|
joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
September 06, 2016, 10:52:22 PM |
|
Joblo,
I am still waiting xmr address that works. If on exchange need that payment id too.
I thought I posted it but maybe I didn't. It shouldn't need a payment id. Thanks for your consideration. XMR: 497qTtunbvPgUT6auQnLLacLPKNnxW9fADEYy1ugYYLXd5FuyCR3RwoT44hanwKYnyXXq8QtLTYAr1Q AKe3jCWPfN8oEK3W You did but it still gives this error: Failed to decode address (#0): Invalid encoded length That address works for pool payouts. I don't recall setting a payment ID at the pool but my wallet is displaying a payment id with that address. maybe you do need one... a531ddb280b51d491e8a12717f4b76f0bdbe44826b5e3be3f5c693a6f6f26bc1
|
|
|
|
joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
September 06, 2016, 11:05:02 PM |
|
If it is not difficult to make the assembly of a -MSSE2 -MAVX2 -MAVX please
That's an odd combination of features. What kind of CPU is it? I'm not going to start building one-off binaries for unusual CPU architectures, not for free anyway. I suggest you try compiling yourself. There are instructions in README.md in the source package. If you have problems you can always ask for help, which is always free.
|
|
|
|
ioglnx
Sr. Member
Offline
Activity: 574
Merit: 250
Fighting mob law and inquisition in this forum
|
|
September 06, 2016, 11:06:53 PM |
|
joblo which Linux Distro have you used to compile it? I tried to compile it but the AES-NI module u have built jst wont compile the TEMPLATE FORMATION issue is given.
So ..grr none of the miners i wanted to test built under Ubuntu Yakkety :-(
|
GTX 1080Ti rocks da house... seriously... this card is a beast³ Owning by now 18x GTX1080Ti :-D @serious love of efficiency
|
|
|
joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
September 06, 2016, 11:14:57 PM |
|
joblo which Linux Distro have you used to compile it? I tried to compile it but the AES-NI module u have built jst wont compile the TEMPLATE FORMATION issue is given.
So ..grr none of the miners i wanted to test built under Ubuntu Yakkety :-(
That's not even released yet. If it uses a new version of gcc there might be some incompatilibities. Other users have reported problems with gcc 5 or 6. I use Mint 17, based on Ubuntu LTS, not sure which version with gcc 4.8.4. Post the compile errors and I'll have a look.
|
|
|
|
ioglnx
Sr. Member
Offline
Activity: 574
Merit: 250
Fighting mob law and inquisition in this forum
|
|
September 06, 2016, 11:39:36 PM |
|
I also tried your windows build. And wow the VS Solution is completely screwed: I tried to fix the dirs but hey also files are missing in your release or have been renamed or whatever. Can we clean it up? I would like to try ^^
Fehler 4 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_hefty1.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 5 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\luffa.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 6 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\ink.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 7 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\myr-groestl.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 8 error C2146: Syntaxfehler: Fehlendes ';' vor Bezeichner '__attribute__' X:\Mining\cpuminer-opt-3.4.6\algo\lyra2\lyra2rev2.c 74 1 cpuminer Fehler 11 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\pentablake.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 12 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\quark.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 13 error C2146: Syntaxfehler: Fehlendes ';' vor Bezeichner '__attribute__' X:\Mining\cpuminer-opt-3.4.6\algo\lyra2\lyra2re.c 78 1 cpuminer Fehler 16 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\quark_aes.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 17 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\quark_sse2.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 20 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\qubit_sse2.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 21 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\qubit_aes.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 22 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\qubit.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 23 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sibcoin.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 24 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha2.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 25 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\skein.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 26 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\x11.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 27 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\skein2.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 28 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\x11_aes.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 30 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\x13.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 31 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\x11_sse2.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 32 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\x13_sse2.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 34 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\x13_aes.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 37 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\x14.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 38 error C2146: Syntaxfehler: Fehlendes ';' vor Bezeichner '__attribute__' X:\Mining\cpuminer-opt-3.4.6\algo\x11\c11.c 210 1 cpuminer Fehler 41 error C2146: Syntaxfehler: Fehlendes ';' vor Bezeichner '__attribute__' X:\Mining\cpuminer-opt-3.4.6\algo\x11\c11.c 211 1 cpuminer Fehler 42 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\x14_aes.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 43 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\x14_sse2.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 44 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\x15_aes.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 45 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\mod_blakecoin.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 46 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\x15.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 47 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\x15_sse2.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 48 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_blake.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 49 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_bmw.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 50 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sse2\bmw.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 51 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_cubehash.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 52 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sse2\cubehash_sse2.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 53 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_echo.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 54 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sse2\echo.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 55 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\aes_ni\echo512\hash.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 56 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_fugue.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 57 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_jh.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 58 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\aes_ni\groestl\hash-groestl.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 59 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_groestl.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 60 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_keccak.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 61 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sse2\keccak.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 62 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_luffa.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 63 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_shabal.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 64 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sse2\luffa_for_sse2.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 65 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_shavite.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 66 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_simd.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 67 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sse2\vect128\vector.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 68 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sse2\skein.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 69 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sse2\vect128\nist.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 70 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_skein.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 71 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_hamsi.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 72 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_hamsi_helper.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 73 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_whirlpool.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 74 error C1083: Datei (Quelle) kann nicht geöffnet werden: "algo\sha3\sph_gost.c": No such file or directory X:\Mining\cpuminer-opt-3.4.6\c1 cpuminer Fehler 75 error C2016: In C muss eine Struktur oder Union mindestens einen Member enthalten. X:\Mining\cpuminer-opt-3.4.6\algo\nist5.c 30 1 cpuminer Fehler 77 error C2146: Syntaxfehler: Fehlendes ';' vor Bezeichner '__attribute__' X:\Mining\cpuminer-opt-3.4.6\algo\nist5.c 91 1 cpuminer Fehler 80 error C2146: Syntaxfehler: Fehlendes ';' vor Bezeichner '__attribute__' X:\Mining\cpuminer-opt-3.4.6\algo\nist5.c 92 1 cpuminer Fehler 82 error C2065: 'asm': nichtdeklarierter Bezeichner X:\Mining\cpuminer-opt-3.4.6\algo\zr5.c 148 1 cpuminer Fehler 83 error C2143: Syntaxfehler: Es fehlt ';' vor 'volatile' X:\Mining\cpuminer-opt-3.4.6\algo\zr5.c 148 1 cpuminer Fehler 84 error C2146: Syntaxfehler: Fehlendes ';' vor Bezeichner '__attribute__' X:\Mining\cpuminer-opt-3.4.6\algo\zr5.c 157 1 cpuminer Fehler 87 error C2146: Syntaxfehler: Fehlendes ';' vor Bezeichner '__attribute__' X:\Mining\cpuminer-opt-3.4.6\algo\zr5.c 158 1 cpuminer
|
GTX 1080Ti rocks da house... seriously... this card is a beast³ Owning by now 18x GTX1080Ti :-D @serious love of efficiency
|
|
|
joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
September 07, 2016, 01:34:48 AM |
|
It won't compile with VS but does with mingw, or you can use the prebuilt binaries.
|
|
|
|
Voljanin
Newbie
Offline
Activity: 28
Merit: 0
|
|
September 07, 2016, 08:25:00 AM |
|
Centos 7 Error 3.4.6 g++ -DHAVE_CONFIG_H -I. -Iyes/include -Iyes/include -fno-strict-aliasing -I./compat/jansson -I. -Iyes/include -Iyes/include -g -O2 -MT algo/hodl/cpuminer-hodl.o -MD -MP -MF algo/hodl/.deps/cpuminer-hodl.Tpo -c -o algo/hodl/cpuminer-hodl.o `test -f 'algo/hodl/hodl.cpp' || echo './'`algo/hodl/hodl.cpp In file included from /usr/include/c++/4.8.2/unordered_map:35:0, from algo/hodl/hodl.cpp:8: /usr/include/c++/4.8.2/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support is currently experimental, and must be enabled with the -std=c++11 or -std=gnu++11 compiler options. #error This file requires compiler and library support for the \
|
|
|
|
ioglnx
Sr. Member
Offline
Activity: 574
Merit: 250
Fighting mob law and inquisition in this forum
|
|
September 07, 2016, 08:38:50 AM |
|
I also tried with MinGW 64 environment but also fails to find the algo linking. So something is wrong with the mapping or you have something special in your build environment the other don't have?
|
GTX 1080Ti rocks da house... seriously... this card is a beast³ Owning by now 18x GTX1080Ti :-D @serious love of efficiency
|
|
|
joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
September 07, 2016, 11:34:00 AM |
|
Centos 7 Error 3.4.6 g++ -DHAVE_CONFIG_H -I. -Iyes/include -Iyes/include -fno-strict-aliasing -I./compat/jansson -I. -Iyes/include -Iyes/include -g -O2 -MT algo/hodl/cpuminer-hodl.o -MD -MP -MF algo/hodl/.deps/cpuminer-hodl.Tpo -c -o algo/hodl/cpuminer-hodl.o `test -f 'algo/hodl/hodl.cpp' || echo './'`algo/hodl/hodl.cpp In file included from /usr/include/c++/4.8.2/unordered_map:35:0, from algo/hodl/hodl.cpp:8: /usr/include/c++/4.8.2/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support is currently experimental, and must be enabled with the -std=c++11 or -std=gnu++11 compiler options. #error This file requires compiler and library support for the \
From README.md: Run build.sh to build on Linux or execute the following commands. ./autogen.sh CFLAGS="-O3 -march=native -Wall" CXXFLAGS="$CFLAGS -std=gnu++11" ./configure --with-curl make
|
|
|
|
|