Bitcoin Forum
July 02, 2024, 08:21:42 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2] 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 »
21  Bitcoin / Development & Technical Discussion / Re: static linking on: January 13, 2017, 10:55:07 AM
How does one build qt 4.8 projects on qt 5?
I use the greaterThan(QT_MAJOR_VERSION, 4): QT += widgets and added -static but the compiled file throws runtime errors on opening or sometimes closing. Is there anything else to do?
I don't know about building a 4.8.x bitcoinQt on a Qt 5.x system?  But when I build 4.8.x on a 4.8.x (Windows 8.1) system, I found I got similar errors if I didn't delete all the .obj & other files in the build directory.  The make file isn't too bright about what needs to be compiled and what doesn't.

Ron


My build dir is already clean. I compiled a clean source. No luck so far. I think this runtime has to do with how qt is not statically linking libs. I pasted some dlls into the coins release folder but no dice.
Looking at http://www.qtcentre.org/threads/27729-statically-link-Qt-libraries-%28not-build-static-library%29 I tried the suggestions there and I still ended up with a dynamically linked bitcoin-qt.exe or *coin-qt.exe

If you look at message #1 in this forum it is not clear what Qt is created on one's system.  I did read, but can't find the link now, that one needs to build a set of libraries for Qt that are dynamic for the use of Qt creator and Qt designer (if you use them) and a set that is static for building one's applications.  I don't know if that is so, nor how one would keep the environment straight Huh Smiley

Ron

I still haven't figured this one out. And I stopped hacking at it for now. Did you find anything helpful?
22  Bitcoin / Development & Technical Discussion / Re: Building headless Bitcoin and Bitcoin-qt on Windows on: January 11, 2017, 07:08:15 AM
How does one build qt 4.8 projects on qt 5?
I use the greaterThan(QT_MAJOR_VERSION, 4): QT += widgets and added -static but the compiled file throws runtime errors on opening or sometimes closing. Is there anything else to do?
I don't know about building a 4.8.x bitcoinQt on a Qt 5.x system?  But when I build 4.8.x on a 4.8.x (Windows 8.1) system, I found I got similar errors if I didn't delete all the .obj & other files in the build directory.  The make file isn't too bright about what needs to be compiled and what doesn't.

Ron


My build dir is already clean. I compiled a clean source. No luck so far. I think this runtime has to do with how qt is not statically linking libs. I pasted some dlls into the coins release folder but no dice.
23  Bitcoin / Development & Technical Discussion / Re: Building headless Bitcoin and Bitcoin-qt on Windows on: January 10, 2017, 09:41:09 PM
How does one build qt 4.8 projects on qt 5?
I use the greaterThan(QT_MAJOR_VERSION, 4): QT += widgets and added -static but the compiled file throws runtime errors on opening or sometimes closing. Is there anything else to do?
24  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] official NovaCoin thread - the original PoS+scrypt coin. --POOL LIST-- on: January 06, 2017, 08:26:35 PM
was novacoin always a pow/pos hybrid, or was it released as a pow only?
25  Bitcoin / Development & Technical Discussion / Re: Building headless Bitcoin and Bitcoin-qt on Windows on: January 06, 2017, 08:52:28 AM
okay, so qt-everywhere-opensource-src-5.2.1 works.

but the compilation still says unknown module webkitwidgets

so how does one add this qt-everywhere to PATH?


Edit: I added C:\Qt\Qt5.3.2new\5.3\mingw482_32\bin to path environment. I am now only using qtcreator 5.3 instead of qt everywhere
26  Bitcoin / Development & Technical Discussion / Re: Building headless Bitcoin and Bitcoin-qt on Windows on: January 06, 2017, 08:20:50 AM
so I continued to build right from there after adding python27 to environment.

i run the mingw32-make -j5

and it continues from there but I do not understand this new error. is this a problem in the qt_everywhere release?
 
Code:
./.obj\release\YarrInterpreter.o:YarrInterpreter.cpp:(.text+0x622): undefined reference to `JSC::Yarr::wordcharCreate()'
./.obj\release\YarrInterpreter.o:YarrInterpreter.cpp:(.text+0x693): undefined reference to `JSC::Yarr::newlineCreate()'
C:/MingW/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/bin/ld.exe: ./.obj\release\YarrInterpreter.o: bad reloc address 0x12 in section `.text$_ZN3WTF15BumpPointerPool6createEj[__ZN3WTF15BumpPointerPool6createEj]'
collect2.exe: error: ld returned 1 exit status
Makefile.Release:534: recipe for target 'C:\Qt\qt-everywhere-opensource-src-5.3.2\qtbase\lib\Qt5Qml.dll' failed
mingw32-make[4]: *** [C:\Qt\qt-everywhere-opensource-src-5.3.2\qtbase\lib\Qt5Qml.dll] Error 1
mingw32-make[4]: Leaving directory 'C:/Qt/qt-everywhere-opensource-src-5.3.2/qtdeclarative/src/qml'
Makefile:34: recipe for target 'release' failed
mingw32-make[3]: *** [release] Error 2
mingw32-make[3]: Leaving directory 'C:/Qt/qt-everywhere-opensource-src-5.3.2/qtdeclarative/src/qml'
Makefile:41: recipe for target 'sub-qml-make_first-ordered' failed
mingw32-make[2]: *** [sub-qml-make_first-ordered] Error 2
mingw32-make[2]: Leaving directory 'C:/Qt/qt-everywhere-opensource-src-5.3.2/qtdeclarative/src'
Makefile:41: recipe for target 'sub-src-make_first' failed
mingw32-make[1]: *** [sub-src-make_first] Error 2
mingw32-make[1]: Leaving directory 'C:/Qt/qt-everywhere-opensource-src-5.3.2/qtdeclarative'
makefile:215: recipe for target 'module-qtdeclarative-make_first' failed
mingw32-make: *** [module-qtdeclarative-make_first] Error 2
27  Bitcoin / Development & Technical Discussion / Re: Building headless Bitcoin and Bitcoin-qt on Windows on: January 06, 2017, 07:16:35 AM
while compiling qteverywhere from page 42.

Code:
 -I"." -I"..\3rdparty\double-conversion" -I"debugger" -I"animations" -I"C:\Qt\qt-everywhere-opensource-src-5.3.2\qtbase\include\QtNetwork'python' is not recognized as an internal or external command,
operable program or batch file.
" -I"C:\Qt\qt-everywhere-opensource-src-5.3.2\qtbase\include\QtCore\5.3.2" -I"C:\Qt\qt-everywhere-opensource-src-5.3.2\qtbase\include\QtCore\5.3.2\QtCore" -I"C:\Qt\qt-everywhere-opensource-src-5.3.2\qtbase\include\QtCore" -I".moc\release" -I"C:\deps\openssl-1.0.1j\include" -I"C:\deps\icu\dist\include" -I"C:\Qt\qt-everywhere-opensource-src-5.3.2\qtbase\mkspecs\win32-g++" -o .obj\release\YarrSyntaxChecker.o ..\3rdparty\masm\yarr\YarrSyntaxChecker.cpp
Makefile.Release:599: recipe for target 'RegExpJitTables.h' failed
mingw32-make[4]: *** [RegExpJitTables.h] Error 1
mingw32-make[4]: *** Waiting for unfinished jobs....
mingw32-make[4]: Leaving directory 'C:/Qt/qt-everywhere-opensource-src-5.3.2/qtdeclarative/src/qml'
Makefile:34: recipe for target 'release' failed
mingw32-make[3]: *** [release] Error 2
mingw32-make[3]: Leaving directory 'C:/Qt/qt-everywhere-opensource-src-5.3.2/qtdeclarative/src/qml'
Makefile:41: recipe for target 'sub-qml-make_first-ordered' failed
mingw32-make[2]: *** [sub-qml-make_first-ordered] Error 2
mingw32-make[2]: Leaving directory 'C:/Qt/qt-everywhere-opensource-src-5.3.2/qtdeclarative/src'
Makefile:41: recipe for target 'sub-src-make_first' failed
mingw32-make[1]: *** [sub-src-make_first] Error 2
mingw32-make[1]: Leaving directory 'C:/Qt/qt-everywhere-opensource-src-5.3.2/qtdeclarative'
makefile:215: recipe for target 'module-qtdeclarative-make_first' failed
mingw32-make: *** [module-qtdeclarative-make_first] Error 2

py output in cmd says
Code:
C:\Qt\qt-everywhere-opensource-src-5.3.2>py
Python 3.5.3rc1 (v3.5.3rc1:de530d7f21c0, Jan  2 2017, 06:41:25) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>

Edit: I think I am supposed to use python27. beause python 35 uses 'py' instead of 'python' to look for python. will report back what happens.
28  Other / Meta / Re: Old account banned for phishing links, new account left negative on: November 22, 2016, 11:12:15 AM
I see tomatocage has not been online for 2 months now. Is someone else going to look into this?

Nope.  TC is the only one that can remove the feedback, no matter how much you complain about it.   Undecided

bummer, should I make an alt and assume I wont be left neg feedback this time.
29  Other / Meta / Re: Old account banned for phishing links, new account left negative on: November 22, 2016, 10:33:52 AM
Bump..

Old account negative feedback and banned. New account negative feedback. At least take the time out to remove this negative feedback from the account?


I see tomatocage has not been online for 2 months now. Is someone else going to look into this?
30  Economy / Services / Re: Satoshigames.io New signature campaign ! Earn UP to 0.05 BTC ! on: November 22, 2016, 10:23:43 AM
can I join this signature campaign. The negative trust is a mistake which tomtocage refuses to fix. I have told him numerous times. I assure you its a mistake. And I scammed no one.
31  Economy / Digital goods / udemy complete wordpress theme developer on: November 22, 2016, 10:20:27 AM
If someone has this course and wants to share. I can pay in btc. Much appreciated!

Link:
https://www.udemy.com/the-complete-wordpress-theme-developer-course/
32  Economy / Digital goods / Re: ***ACCESS ANY PAID UDEMY + WSO COURSE - Hurry Up ******* on: November 22, 2016, 05:59:41 AM

I need this course. I will pay in btc. PM me.

https://www.udemy.com/the-complete-wordpress-theme-developer-course/
33  Economy / Services / HTML5, CSS3 and Responsive web design on: November 02, 2016, 09:01:22 AM
Hi,
  I have been working on HTML5 and CSS3 and responsive designing for sometime. Before that I have worked on numerous projects including building wordpress woocomerece, interspire, prestashop. I have also maintained some websites on monthly basis.

Right now I am able to fully develop a HTML5 CSS3 responsive jquery website. I can convert PSD to HTML. And turn around time is quick.
I also do have some PHP experience but its not a lot. Just basic mysql CRUD and PHP.

PM me for offers and pricing.
Please ignore the negative feedback. its a mistake and I'll be having it removed soon. I will be always using escrow for my services.
34  Other / Meta / Re: Old account banned for phishing links, new account left negative on: November 02, 2016, 07:22:20 AM
The story is that the address has belonged to me for as long as I can remember.
-snip-
We don't need your story. We need a link to a non-altered post from your account, containing this address. If this is not possible, then your secondary option is a PM that contains this address (as an admin could check this). If you have not provided this when PM-ing theymos the last time, then it is no surprise that you've received no answer.

Yes, signedup to primedice campaign April 18, 2014
https://bitcointalk.org/index.php?topic=291387.msg6277631#msg6277631

Archive link dating July 04, 2014 with bitcoin link on my profile.
https://web.archive.org/web/20140704095955/https://bitcointalk.org/index.php?action=profile;u=160320

I did include these links in original message sent to theymos.
35  Other / Meta / Re: Old account banned for phishing links, new account left negative on: November 02, 2016, 07:09:42 AM
Code:
-----BEGIN BITCOIN SIGNED MESSAGE-----
My account awais3344 has been hacked/lost. Please reset the email to gugers1993@gmail.com. The current date is 9/15/2014[b]..[/b]
This extra dot prevented it from verifying for me. After it was removed, the message verified. Where is the address '13dLLLgrmaZXxoyHyEDMeaToLh2W3nn165' from?

Whether your story checks out, and whether you should be unbanned is another thing. You should contact Cyrus and/or BadBear this time or wait for them to respond here.

Thanks for clarifying that. I dont know how to dot got there. Even though the message was copy pasted. The story is that the address has belonged to me for as long as I can remember. What happened is, I was part of the Nemcoin initial stakeholders. And one day I receive a message from the NEMdevs that I had to check the message. I clicked on bitcointalk link which was probably bitcointaIk or bitcoinAlk. but I couldnt see it, and since I use ingocnito mode on chrome. I logged it in. And my account was taken. After that they changed the email address and my bitcoin address from my profile but thanks to webarchives. The address can been on older version of my profile here.. The hacker proceeded to send the same message that I received, to other NEMcoin holders(from my account)  Then I created this account(awais3344_1) requesting the ban to be removed from the other account, and I am left a negative feedback from tomatocage, stating I am alt account of scammer awais3344. Which should be obvious to everyone that awais3344 and awais3344_1 are the same person. And scammer of what? I was phished and I admit it was laziness on my part to not secure my account.
36  Other / Meta / Old account banned for phishing links, new account left negative on: November 02, 2016, 06:03:07 AM
Old account awais3344 was banned years ago for phishing. When i got a message and logged into a bitcointalk-alike forum. And I wasnt alone. Many users back then were caught in this. I was left negative feedback. I contacted theymos before. Verifying my bitcointalk account. Then I just said fuck it and tried to make them delete the negative feedback from this account. But of no use. Now I have 2 accounts, one Sr. Member, cant access it, password changed, email changed by hacker (obviously). This full member account with a negative for no reason at all. I am the victim yet there's no solution of this. Tomatocage, no disrespect intended, doesnt care to read 2 lines and just leaves everyone negative feedback just because he thinks the person is probably a scammer.

My old account:
https://bitcointalk.org/index.php?action=profile;u=160320

my new account is this one. with negative feedback "scammer alt of awais3344". scammer for what? My account was hacked, and no one cares to give me back my account. I know and understand running these forums is a lot of work. But in 2 years, I would think someone would get the time to get my account back and get these negative scores removed.
Again, this is a cry for help. If someone cares

Here is old verification message I sent to thymos

Code:
-----BEGIN BITCOIN SIGNED MESSAGE-----
My account awais3344 has been hacked/lost. Please reset the email to gugers1993@gmail.com. The current date is 9/15/2014..
-----BEGIN SIGNATURE-----
13dLLLgrmaZXxoyHyEDMeaToLh2W3nn165
IGsxeFOVPFPX2HYYsFi/GbL58meT7AjNij1goRxClYxsunmKHGRGOHolUiWZFvFthQNF6WPQ+pwQ4LQP4R/Ml98=
-----END BITCOIN SIGNED MESSAGE-----
37  Economy / Speculation / Re: Do you think you can go up to $10 thousand? on: June 27, 2016, 05:26:52 AM
 Roll Eyes
38  Economy / Service Announcements / Re: ★[Piiko.com] ★Online TOPUP Service★ ➬ 100+Countries Accepted ➬ | Lowest Rates |★ on: April 11, 2016, 07:36:06 AM
top up came later. anyway, what do you mean by "you sent wrong amount of what is required"?

my order
https://c.piiko.com/order/3b54cb50-a8ef-51cb-b127-0164500ddd20

Send exactly 0.0085 BTC (plus miner fee) to

I send 0.0086.

https://blockchain.info/address/1LsyoNBG7LuKqkDndYMCK9QHXgc9oQZFZu

can you explain?
39  Economy / Service Announcements / Re: ★[Piiko.com] ★Online TOPUP Service★ ➬ 100+Countries Accepted ➬ | Lowest Rates |★ on: April 09, 2016, 05:42:47 AM
same again. Processing taking hours and hours.

https://c.piiko.com/order/3b54cb50-a8ef-51cb-b127-0164500ddd20

Sorry yesterday was busy, and couldnt get time to review this Topup, are you still didnt receive that?



no, still no top up. Its been 2days now
40  Economy / Service Announcements / Re: ★[Piiko.com] ★Online TOPUP Service★ ➬ 100+Countries Accepted ➬ | Lowest Rates |★ on: April 07, 2016, 10:48:29 AM
same again. Processing taking hours and hours.

https://c.piiko.com/order/3b54cb50-a8ef-51cb-b127-0164500ddd20
Pages: « 1 [2] 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!