(HOWTO) Compile Altcoin For Windows On Linux Using Mxe and Mingw
(HOWTO) Compile Altcoin For Windows On Linux Using Mxe and Mingw
Bitcoin Forum
January 03, 2018, 05:00:51 AM
Bitcoin Forum > Alternate cryptocurrencies > Altcoin Discussion (Moderator: mprep) > [HOWTO] compile altcoin for windows on linux
using mxe and mingw
Author Topic: [HOWTO] compile altcoin for windows on linux using mxe and mingw (Read 23299 times)
main.h [HOWTO] compile altcoin for windows on linux using mxe and mingw
#1
Newbie June 04, 2015, 02:45:26 PM
Hello!
In this tutorial I show you how to cross compile altcoin-qt using mxe and mingw.
Activity: 6
What is mxe? Well this is set of makefiles allowing you compile an cross environment with needed packages
(mingw-w64, qt, boost, etc) without pain.
For example I will compile blackcoin-qt for 32-bit Windows on 64-bit Ubuntu 14.04 LTS, but this method should
work with another altcoins.
Step 1.
Firstly we need install cross compile environment.
Step 2.
https://bitcointalk.org/index.php?topic=1080289.0;all 1/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Clone mxe github repo (if you just download zip archive from guthub, mxe may not work):
Code:
cd /mnt
git clone https://github.com/mxe/mxe.git
Step 3.
Now we need compile boost and qt5 for our environment (need a couple of hours for this).
If you compile something using mxe and move mxe directory to another place, then mxe will not work because all
what you compile linked statically
Compiling boost will fail if memory of your PC less then 2GB. Making swap partition will fix this.
Compile boost:
Code:
cd /mnt/mxe
make MXE_TARGETS="i686-w64-mingw32.static" boost
Compile qt5:
Code:
make MXE_TARGETS="i686-w64-mingw32.static" qttools
Step 4.
Unfortunately mxe not support berkeley db and miniupnpc so we need compile them manually.
https://bitcointalk.org/index.php?topic=1080289.0;all 2/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
cd /mnt/db-5.3.28
touch compile-db.sh
chmod ugo+x compile-db.sh
Content of compile-db.sh:
Code:
#!/bin/bash
MXE_PATH=/mnt/mxe
sed -i "s/WinIoCtl.h/winioctl.h/g" src/dbinc/win_db.h
mkdir build_mxe
cd build_mxe
CC=$MXE_PATH/usr/bin/i686-w64-mingw32.static-gcc \
CXX=$MXE_PATH/usr/bin/i686-w64-mingw32.static-g++ \
../dist/configure \
--disable-replication \
--enable-mingw \
--enable-cxx \
--host x86 \
--prefix=$MXE_PATH/usr/i686-w64-mingw32.static
make
make install
Compile:
Code:
./compile-db.sh
Compiling miniupnpc:
Download and unpack miniupnpc:
Code:
cd /mnt
wget http://miniupnp.free.fr/files/miniupnpc-1.6.20120509.tar.gz
tar zxvf miniupnpc-1.6.20120509.tar.gz
Content of compile-m.sh:
Code:
https://bitcointalk.org/index.php?topic=1080289.0;all 3/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
#!/bin/bash
MXE_PATH=/mnt/mxe
CC=$MXE_PATH/usr/bin/i686-w64-mingw32.static-gcc \
AR=$MXE_PATH/usr/bin/i686-w64-mingw32.static-ar \
CFLAGS="-DSTATICLIB -I$MXE_PATH/usr/i686-w64-mingw32.static/include" \
LDFLAGS="-L$MXE_PATH/usr/i686-w64-mingw32.static/lib" \
make libminiupnpc.a
mkdir $MXE_PATH/usr/i686-w64-mingw32.static/include/miniupnpc
cp *.h $MXE_PATH/usr/i686-w64-mingw32.static/include/miniupnpc
cp libminiupnpc.a $MXE_PATH/usr/i686-w64-mingw32.static/lib
Compile:
Code:
./compile-m.sh
Step 5.
Yay! Making our environment is done! Now we can compile blackcoin.
Content of compile-blk.sh:
Code:
#!/bin/bash
MXE_INCLUDE_PATH=/mnt/mxe/usr/i686-w64-mingw32.static/include
MXE_LIB_PATH=/mnt/mxe/usr/i686-w64-mingw32.static/lib
i686-w64-mingw32.static-qmake-qt5 \
BOOST_LIB_SUFFIX=-mt \
https://bitcointalk.org/index.php?topic=1080289.0;all 4/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
BOOST_THREAD_LIB_SUFFIX=_win32-mt \
BOOST_INCLUDE_PATH=$MXE_INCLUDE_PATH/boost \
BOOST_LIB_PATH=$MXE_LIB_PATH \
OPENSSL_INCLUDE_PATH=$MXE_INCLUDE_PATH/openssl \
OPENSSL_LIB_PATH=$MXE_LIB_PATH \
BDB_INCLUDE_PATH=$MXE_INCLUDE_PATH \
BDB_LIB_PATH=$MXE_LIB_PATH \
MINIUPNPC_INCLUDE_PATH=$MXE_INCLUDE_PATH \
MINIUPNPC_LIB_PATH=$MXE_LIB_PATH \
QMAKE_LRELEASE=/mnt/mxe/usr/i686-w64-mingw32.static/qt5/bin/lrelease blackcoin-qt.pro
make -f Makefile.Release
Compile:
Code:
./compile-blk.sh
becool Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#2
Legendary June 20, 2015, 04:45:53 PM
Activity: 1442
Compile boost:
Code:
cd /mnt/mxe
make MXE_TARGETS="i686-w64-mingw32.static" boost
if error message:
Missing requirement: libtool
than
Code:
sudo apt-get install libtool-bin
https://bitcointalk.org/index.php?topic=1080289.0;all 5/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Step 3.
Now we need compile boost and qt5 for our environment (need a couple of hours for this).
lulupon Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#3
Member July 21, 2015, 10:41:17 AM
If you have levelDB issue (libleveldb.a / libmemenv.a), plz follow below instruction.
Activity: 67
Code:
cd %coin_folder%/src/leveldb
TARGET_OS=NATIVE_WINDOWS make libleveldb.a libmemenv.a CC=/mnt/mxe/usr/bin/i686-w64-mingw32.static-g
BTC Address :
1ASUDTboPQsG9t2DE3Y29jnDSEgwybFc32
john75077 Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#4
Newbie August 04, 2015, 01:02:29 PM
Morning,
Activity: 26
I decided to give this a try since I'm new to the whole bitcoin / altcoin scene. This is the error I am getting when I
try to compile, and I didnt see a Makefile.Release...
Code:
[build] qtxlsxwriter i686-w64-mingw32.static
[done] qtxlsxwriter i686-w64-mingw32.static 156204 K
[no-build] qt5 i686-w64-mingw32.static
--------------------------------------------------------------------------------------------
./compile-blk.sh: line 6: i686-w64-mingw32.static-qmake-qt5: command not found
make: Makefile.Release: No such file or directory
make: *** No rule to make target `Makefile.Release'. Stop.
https://bitcointalk.org/index.php?topic=1080289.0;all 6/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
c:\senile.com (out of memory)
Fuzzbawls Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#5
Hero Member August 04, 2015, 07:07:48 PM
★YoBit.Net★ 200+ I decided to give this a try since I'm new to the whole bitcoin / altcoin scene. This is the error I am getting when I try to compile,
Coins Exchange & Dice and I didnt see a Makefile.Release...
Code:
[build] qtxlsxwriter i686-w64-mingw32.static
[done] qtxlsxwriter i686-w64-mingw32.static 15620
[no-build] qt5 i686-w64-mingw32.static
--------------------------------------------------------------------------------------------
./compile-blk.sh: line 6: i686-w64-mingw32.static-qmake-qt5: command not found
make: Makefile.Release: No such file or directory
make: *** No rule to make target `Makefile.Release'. Stop.
Verify that your PATH env var contains the correct location for mxe
Code:
export PATH=/mnt/mxe/usr/bin:$PATH
✔ FAST EXCHANGE ✔ OVER 350 COINS ✔ MULTICOIN DICE ✔ FREE COINS EVERY 24 HRS!
YoBit.net ▮▮▮▮▮ Play DICE! Win 1-5 btc just for 5 mins!
john75077 Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#6
Newbie August 04, 2015, 11:06:25 PM
Everything is compiling so far when I execute the script as root, if there is any other issues ill let you know. - It
compiled with no issues! I don't have much for BTC if you leave your address ill send you something for the help.
Activity: 26
sdmathis Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#7
August 06, 2015, 04:03:48 PM
https://bitcointalk.org/index.php?topic=1080289.0;all 7/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Hero Member
Great tutorial. It works perfectly. Thank you very much.
I have one question. You stated that some altcoins need QT4 instead of QT5. Do I have to choose just one or the
Activity: 546
other, or can I install both? Will any problems occur if both are installed?
Thanks.
Fuzzbawls Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#9
Hero Member August 13, 2015, 09:24:17 PM
Activity: 742 How do I use this to make the daemon for Ubuntu?
★YoBit.Net★ 200+
Coins Exchange & Dice You don't. this thread is specifically about cross compiling wallets for windows, using linux as your compile OS.
I have one question. You stated that some altcoins need QT4 instead of QT5. Do I have to choose just one or the other, or can I
install both? Will any problems occur if both are installed?
Thanks.
It is possible to have both qt4 and qt5 available for cross compiling at the same time. I personally have chosen to
NOT build any qt4 wallet anymore and instead update the wallet's source to support a qt5 build. This, however is a
time consuming task so it may not be worth it for you.
https://bitcointalk.org/index.php?topic=1080289.0;all 8/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
✔ FAST EXCHANGE ✔ OVER 350 COINS ✔ MULTICOIN DICE ✔ FREE COINS EVERY 24 HRS!
YoBit.net ▮▮▮▮▮ Play DICE! Win 1-5 btc just for 5 mins!
bitcreditscc Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#10
Hero Member August 16, 2015, 07:53:15 AM
*Image Removed*
CryptoVote Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#11
Full Member August 28, 2015, 02:39:56 AM
To
Code:
sudo apt-get install autoconf automake autopoint bash bison bzip2 p7zip-full cmake flex gettext git
https://github.com/CryptoDJ
BTCDDev Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#12
Sr. Member August 28, 2015, 02:53:39 AM
Hi,
Activity: 256
https://bitcointalk.org/index.php?topic=1080289.0;all 9/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
I developed a method for building BitcoinDark using mxe several months ago with help from fsb4000 and
mezzovide.
Mezzovide in supernet slack even created a custom mxe package for building bdb 4.8:
https://github.com/jl777/btcd/blob/master/libjl777/mxepatch/bdb48.mk
After you do this, export your path to mxe/usr/bin and make your coin:
https://github.com/jl777/btcd/blob/master/libjl777/Makefile.win
Quote
btcd: ../src/BitcoinDarkd-$(OS).exe; \
cd ../src; $(MAKE) clean -f Makefile.win OS=$(OS); cd leveldb; $(MAKE) clean; cd ..; $(MAKE) -f Makefile.win OS=$(OS); strip
BitcoinDarkd-$(OS).exe; cp BitcoinDarkd-$(OS).exe $(BINPATH)/$(OS)/BitcoinDarkd.exe
Matthew
BitcoinDark: RPHWc5CwP9YMMbvXQ4oXz5rQHb3pKkhaxc
Top Donations: juicybirds 420BTCD ensorcell 84BTCD Stuntruffle: 40BTCD
Top April Donations: juicybirds 420BTCD; ensorcell: 42BTCD
BTCDDev Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#13
Sr. Member September 02, 2015, 02:42:38 PM
Matthew
BitcoinDark: RPHWc5CwP9YMMbvXQ4oXz5rQHb3pKkhaxc
Top Donations: juicybirds 420BTCD ensorcell 84BTCD Stuntruffle: 40BTCD
Top April Donations: juicybirds 420BTCD; ensorcell: 42BTCD
Bitr8er Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#14
Full Member September 08, 2015, 06:44:10 AM
How would you code if you wanted to require a minimum version of a wallet to connect to the network?
Activity: 220
such a only allow version 1.0.0.1 to connect
https://bitcointalk.org/index.php?topic=1080289.0;all 10/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
BTCDDev Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#15
Sr. Member September 08, 2015, 02:11:21 PM
Activity: 256
How would you code if you wanted to require a minimum version of a wallet to connect to the network?
such a only allow version 1.0.0.1 to connect
https://github.com/laowais/bitcoindark/blob/master/src/version.h#L39
BitcoinDark: RPHWc5CwP9YMMbvXQ4oXz5rQHb3pKkhaxc
Top Donations: juicybirds 420BTCD ensorcell 84BTCD Stuntruffle: 40BTCD
Top April Donations: juicybirds 420BTCD; ensorcell: 42BTCD
temple Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#16
Sr. Member September 27, 2015, 06:01:26 AM
Code:
libtool: link: /mnt/mxe/usr/bin/i686-w64-mingw32.static-gcc -O3 -o db_archive db_archive.o util_sig
Activity: 476
libdb-5.3.a: error adding symbols: Archive has no index; run ranlib to add one
collect2: error: ld returned 1 exit status
make: *** [db_archive] Error 1
<
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
%%%%%%%%%%%%% %%
. OPEN MONEY
%%%%%%%%%%%%%%
.%%%%
%%%%%%%%
%%%%%%%
https://bitcointalk.org/index.php?topic=1080289.0;all 11/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
redfish64 Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw #17
Jr. Member September 27, 2015, 06:50:45 AM
Quote
#!/bin/bash
MXE_PATH=/mnt/mxe
sed -i "s/WinIoCtl.h/winioctl.h/g" src/dbinc/win_db.h
mkdir build_mxe
cd build_mxe
RANLIB=$MXE_PATH/usr/bin/i686-w64-mingw32.static-ranlib \
CC=$MXE_PATH/usr/bin/i686-w64-mingw32.static-gcc \
CXX=$MXE_PATH/usr/bin/i686-w64-mingw32.static-g++ \
../dist/configure \
--disable-replication \
--enable-mingw \
--enable-cxx \
--host x86 \
--prefix=$MXE_PATH/usr/i686-w64-mingw32.static
make
make install
temple Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#18
Sr. Member September 27, 2015, 04:32:29 PM
Quote
#!/bin/bash
MXE_PATH=/mnt/mxe
sed -i "s/WinIoCtl.h/winioctl.h/g" src/dbinc/win_db.h
mkdir build_mxe
cd build_mxe
RANLIB=$MXE_PATH/usr/bin/i686-w64-mingw32.static-ranlib \
CC=$MXE_PATH/usr/bin/i686-w64-mingw32.static-gcc \
CXX=$MXE_PATH/usr/bin/i686-w64-mingw32.static-g++ \
../dist/configure \
--disable-replication \
--enable-mingw \
--enable-cxx \
--host x86 \
--prefix=$MXE_PATH/usr/i686-w64-mingw32.static
make
make install
<
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
%%%%%%%%%%%%% %%
. OPEN MONEY
%%%%%%%%%%%%%%
.%%%%
%%%%%%%%
%%%%%%%
main.h Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#19
Newbie October 09, 2015, 09:56:37 AM
altcoinhosting Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#20
Hero Member October 09, 2015, 10:01:49 AM
Thanks, this tutorial looks really well-documented. Because i think it's really intresting to compile your own wallets,
Activity: 812 i'm going to replicate this scenario this weekend to see if everything works
░█████ ████████████████▓
hendo420 Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#21
Sr. Member October 27, 2015, 02:41:02 PM
Here's a copy of my Ubuntu 14.04 32-bit VMware Image for anyone that wants it. You will need atleast VMware 10
installed.
Activity: 406
https://www.amazon.com/clouddrive/share/ZhOxZQQzji8FpQvuV9b86DqJg6IGpIXmlXFyG5o2X8h?
ref_=cd_ph_share_link_copy
It should be a big help to anyone that is having problems following this guide.
There are instructions on the desktop for anyone that needs them.
I decided to give this a try since I'm new to the whole bitcoin / altcoin scene. This is the error I am getting when I try to compile,
https://bitcointalk.org/index.php?topic=1080289.0;all 14/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Code:
[build] qtxlsxwriter i686-w64-mingw32.static
[done] qtxlsxwriter i686-w64-mingw32.static 15
[no-build] qt5 i686-w64-mingw32.static
--------------------------------------------------------------------------------------------
./compile-blk.sh: line 6: i686-w64-mingw32.static-qmake-qt5: command not found
make: Makefile.Release: No such file or directory
make: *** No rule to make target `Makefile.Release'. Stop.
Verify that your PATH env var contains the correct location for mxe
Code:
export PATH=/mnt/mxe/usr/bin:$PATH
Hello. Having some fun testing our making a QT file. I'm having the same issue as the other person. What exactly
do I have to correct? The "export PATH=/mnt/mxe/usr/bin:$PATH" or a line in compile-m.sh?
I followed your instructions to a tee and all the files are in the same place as yours. I'm on a fresh install of
Ubuntu. I get the same error as the user above.
blackchopper Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#23
Sr. Member November 05, 2015, 07:15:12 AM
I cleared up the path issue, but now I'm getting this error when I compile blackcoin:
Activity: 306
Code:
https://bitcointalk.org/index.php?topic=1080289.0;all 15/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Makefile.Release:468: recipe for target 'release/blackcoin-qt.exe' failed
make: *** [release/blackcoin-qt.exe] Error 1
lulzyou Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#24
Newbie December 26, 2015, 07:25:40 AM
Quote
#!/bin/bash
MXE_PATH=/mnt/mxe
sed -i "s/WinIoCtl.h/winioctl.h/g" src/dbinc/win_db.h
mkdir build_mxe
cd build_mxe
RANLIB=$MXE_PATH/usr/bin/i686-w64-mingw32.static-ranlib \
CC=$MXE_PATH/usr/bin/i686-w64-mingw32.static-gcc \
CXX=$MXE_PATH/usr/bin/i686-w64-mingw32.static-g++ \
../dist/configure \
--disable-replication \
--enable-mingw \
--enable-cxx \
--host x86 \
--prefix=$MXE_PATH/usr/i686-w64-mingw32.static
make
make install
https://bitcointalk.org/index.php?topic=1080289.0;all 16/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
/src/leveldb/libmemenv.a: error adding symbols: Archive has no index; run ranlib to add one
collect2: error: ld returned 1 exit status
im assuming its another place in the compile, but im trying to add ranlib in both compiles and still no luck. an
suggestions (sorry for digging up an old thread, but its the only one that makes sense, and im still downloading the
amazon image hendo420 has.
thank you
Rkana Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#25
Sr. Member December 26, 2015, 12:00:41 PM
This is a very useful tutorial. Thank you for sharing it. Will do some learning with it.
Activity: 256
first i want to say very good guide and thanks for it aswell! but i am having an issue when i try to run the compile-
blk.sh file i get the following error
Activity: 16
Code:
./compile-blk.sh: line 5: blackcoin-qt.pro: command not found
make: Makefile.Release: No such file or directory
make: *** No rule to make target `Makefile.Release'. Stop.
i dont know what else to do i am stuck does anyone have any advice?
iGotSpots Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#27
Legendary January 08, 2016, 07:16:58 PM
Activity: 1512 first i want to say very good guide and thanks for it aswell! but i am having an issue when i try to run the compile-blk.sh file i get the
following error
Code:
https://bitcointalk.org/index.php?topic=1080289.0;all 17/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
i dont know what else to do i am stuck does anyone have any advice?
Twitter YouTube
.HealthyWormCoin.
██████████████
| |
██████████████████████
████████████████████████████
████████████████████████████████
████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████████████
████████████████████████████████████████████████
████████████████████████████████████████████████
████████████████████████████████████████████████
luke9511 Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#28
Newbie January 08, 2016, 07:25:40 PM
Code:
./compile-blk.sh: line 5: blackcoin-qt.pro: command not found
make: Makefile.Release: No such file or directory
make: *** No rule to make target `Makefile.Release'. Stop.
i dont know what else to do i am stuck does anyone have any advice?
i have checked everything, i didnt even type any of the commands i copied and pasted them all i also checked my
path environment variable to make sure it was correct and it is, i dont know what else there is
EDIT new error which i think may have the same thing to do with the first
Code:
./compile-blk.sh: line 6: i686-w64-mingw32.static-qmake-qt5: command not found
make: Makefile.Release: No such file or directory
make: *** No rule to make target `Makefile.Release'. Stop.
bhokor Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#29
Legendary January 08, 2016, 09:05:08 PM
https://bitcointalk.org/index.php?topic=1080289.0;all 18/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Here's a copy of my Ubuntu 14.04 32-bit VMware Image for anyone that wants it. You will need atleast VMware 10 installed.
Activity: 896
There are instructions on the desktop for anyone that needs them.
Thank you for the share, it is pure gold, i have been trying and i have could compile three altcoins wallets without
problems, i have only a question about if it is possible to have installed qt4 and qt 5 and not have problems with
compilation.
Have you tried it?
thanks again
✔ FAST EXCHANGE ✔ OVER 350 COINS ✔ MULTICOIN DICE ✔ FREE COINS EVERY 24 HRS!
YoBit.net ▮▮▮▮▮ Play DICE! Win 1-5 btc just for 5 mins!
luke9511 Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#30
Newbie January 13, 2016, 06:57:47 PM
i kinda got this working though there is no Makefile.Release any where, but if i delete the .Release part it compiles
fine but it compiles for linux instead of windows
Activity: 16
Nthused Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#31
Legendary March 17, 2016, 07:24:00 AM
Random question but could you do this on a VM server with exceeded specs ?
Activity: 1428
✔ FAST EXCHANGE ✔ OVER 350 COINS ✔ MULTICOIN DICE ✔ FREE COINS EVERY 24 HRS!
YoBit.net ▮▮▮▮▮ Play DICE! Win 1-5 btc just for 5 mins!
★YoBit.Net★ 350+
Coins Exchange & Dice
https://bitcointalk.org/index.php?topic=1080289.0;all 19/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
AliceWonderMiscre Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#32
Full Member March 17, 2016, 09:31:13 AM
I wish Linux tutorials would stop assuming Ubuntu and start specifying the upstream product name that is needed
rather than a sudo apt-get line.
Activity: 182
Weird that dependencies like bash and perl and sed are listed there.
zeitman007 Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#33
Newbie March 23, 2016, 04:54:35 AM
Im having trouble with the command not found error. Ubuntu 14.04 64-bit
Activity: 24
Code:
./compile-blk.sh: line 6: i686-w64-mingw32.static-qmake-qt5: command not found
make: Makefile.Release: No such file or directory
make: *** No rule to make target `Makefile.Release'. Stop.
I have ran the export PATH=/mnt/mxe/usr/bin:$PATH command many times, that should be where mxe is since I
followed the tutorial to a T.
tebbo Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#34
Newbie April 10, 2016, 08:21:29 PM
Activity: 4 Im having trouble with the command not found error. Ubuntu 14.04 64-bit
Code:
./compile-blk.sh: line 6: i686-w64-mingw32.static-qmake-qt5: command not found
make: Makefile.Release: No such file or directory
make: *** No rule to make target `Makefile.Release'. Stop.
I have ran the export PATH=/mnt/mxe/usr/bin:$PATH command many times, that should be where mxe is since I followed the
tutorial to a T.
https://bitcointalk.org/index.php?topic=1080289.0;all 20/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Thanks
Tebbo
ironsniper Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#35
Member July 11, 2016, 01:25:53 PM
DanyBv Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#36
Newbie July 31, 2016, 01:18:51 PM
Activity: 6 first i want to say very good guide and thanks for it aswell! but i am having an issue when i try to run the compile-blk.sh file i get the
following error
Code:
./compile-blk.sh: line 5: blackcoin-qt.pro: command not found
make: Makefile.Release: No such file or directory
make: *** No rule to make target `Makefile.Release'. Stop.
i dont know what else to do i am stuck does anyone have any advice?
Same issue...
D3m0nKinGx Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#37
Hero Member September 21, 2016, 04:34:43 AM
Code:
In file included from ./db_int.h:77:0,
The snake which cannot
from ../src/mutex/mut_win32.c:12:
cast its skin has to die ../src/dbinc/win_db.h:21:20: fatal error: direct.h: No such file or directory
compilation terminated.
Makefile:2211: recipe for target 'mut_win32.o' failed
make: *** [mut_win32.o] Error 1
./libtool --mode=compile cc -c -I. -I../src -O3 ../src/mutex/mut_win32.c
libtool: compile: cc -c -I. -I../src -O3 ../src/mutex/mut_win32.c -o mut_win32.o
In file included from ./db_int.h:77:0,
from ../src/mutex/mut_win32.c:12:
../src/dbinc/win_db.h:21:20: fatal error: direct.h: No such file or directory
compilation terminated.
Makefile:2211: recipe for target 'mut_win32.o' failed
make: *** [mut_win32.o] Error 1
After commenting out the "missing" files in win_db.h the following error occurs:
Code:
config.status: executing libtool commands
./libtool --mode=compile cc -c -I. -I../src -O3 ../src/mutex/mut_win32.c
libtool: compile: cc -c -I. -I../src -O3 ../src/mutex/mut_win32.c -o mut_win32.o
In file included from ./db_int.h:96:0,
from ../src/mutex/mut_win32.c:12:
./db.h:3196:34: error: unknown type name 'SECURITY_ATTRIBUTES'
int db_env_set_win_security __P((SECURITY_ATTRIBUTES *sa));
^
./db.h:40:21: note: in definition of macro '__P'
#define __P(protos) protos
^
In file included from ./db_int.h:1161:0,
from ../src/mutex/mut_win32.c:12:
../src/dbinc/globals.h:39:2: error: unknown type name 'SECURITY_DESCRIPTOR'
SECURITY_DESCRIPTOR win_default_sec_desc;
^
../src/dbinc/globals.h:40:2: error: unknown type name 'SECURITY_ATTRIBUTES'
SECURITY_ATTRIBUTES win_default_sec_attr;
^
seems this win_db.h has a lot of missing files referenced. and if i comment out the "missing" files on the #include
lines, there's another error that comes up.
https://bitcointalk.org/index.php?topic=1080289.0;all 22/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Whitepaper ▬◇
STRATIS BaaS ◇▬ Please Read OP
███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
▬◇▬◆
███ ███ ███ ███
███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███
███ ███
███ ███
███ ███
D3m0nKinGx Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#38
Hero Member September 22, 2016, 10:46:57 AM
Assistance please.
Whitepaper ▬◇
STRATIS BaaS ◇▬ Please Read OP
███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
▬◇▬◆
███ ███ ███ ███
███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███
███ ███
███ ███
███ ███
nemgun Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#39
Hero Member October 19, 2016, 03:22:21 PM
Code:
./compile-blk.sh: line 5: blackcoin-qt.pro: command not found
make: Makefile.Release: No such file or directory
make: *** No rule to make target `Makefile.Release'. Stop.
i dont know what else to do i am stuck does anyone have any advice?
Same issue...
https://bitcointalk.org/index.php?topic=1080289.0;all 23/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
simply check path variables using root ==> sudo su (enter password )
==> export
you will get a list of variables, PATH= will be there, if there is no /mnt/mxe/usr/bin:
and if you ever do it for the first time i think it also works with ==> sudo export PATH=/mnt/mxe/usr/bin:$PATH
but still need to test.
▄█▄ ▄█▄
║░║ ════════▮ Cross-platform Modular Decentralized Exchange ▮════════ ║░║ Crowd Sale
▄ ▄██
▐██▄ ▄████▄
NVO
█████▄ ▄███████
████████▄ ▄██████████
▐██████████▄ ▄█████████████
█████████████▄ ▀██████████████▄
║░║ ║░║
████████████████▄ ▀█████████████
▐█████████████████▄ ▀████████████
████████████████████▄ ▀██████████▌
███████████████████████▄ ▀█████████▄
▄█████████████████████████▄ ▀████████
▀█▀ Secure ═ Private ═ Assets-to-Assets ═ Full Autonomy ═ Multi-Assets Storage ═ Integrated Platform ▀█▀ ══closed══
████████████████████████████▄ ▀██████▌
▐██████████████████████████████▄ ▀██▀▀
▀████████████████████████████████
▀▀▀███████████████████████▀
▀▀███████████████▀
▀▀█████▀▀
dzimbeck Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#40
Legendary December 29, 2016, 01:11:54 AM
Activity: 1330 Here's a copy of my Ubuntu 14.04 32-bit VMware Image for anyone that wants it. You will need atleast VMware 10 installed.
https://www.amazon.com/clouddrive/share/ZhOxZQQzji8FpQvuV9b86DqJg6IGpIXmlXFyG5o2X8h?ref_=cd_ph_share_link_copy
It should be a big help to anyone that is having problems following this guide.
There are instructions on the desktop for anyone that needs them.
This doesn't work for me, I get "i686-w64-mingw32.static-g++: internal compiler error: Segmentation fault" error
4
doesn't make any sense
I'm used to building daemon, can't build qt for anything very frustrating.
Nthused Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#41
Legendary December 29, 2016, 01:46:47 AM
https://bitcointalk.org/index.php?topic=1080289.0;all 24/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
https://www.amazon.com/clouddrive/share/ZhOxZQQzji8FpQvuV9b86DqJg6IGpIXmlXFyG5o2X8h?ref_=cd_ph_share_link_copy
It should be a big help to anyone that is having problems following this guide.
There are instructions on the desktop for anyone that needs them.
This doesn't work for me, I get "i686-w64-mingw32.static-g++: internal compiler error: Segmentation fault" error 4
doesn't make any sense
I'm used to building daemon, can't build qt for anything very frustrating.
This is a Linux Qt Wallet Automatic Compiler, it works for pretty much all Sha-256 & Scrypt Altcoins, it's very easy
to use even a newbie with no Linux experience can do it with the guide.
https://bitcointalk.org/index.php?topic=498746.0
✔ FAST EXCHANGE ✔ OVER 350 COINS ✔ MULTICOIN DICE ✔ FREE COINS EVERY 24 HRS!
YoBit.net ▮▮▮▮▮ Play DICE! Win 1-5 btc just for 5 mins!
dzimbeck Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#42
Legendary December 29, 2016, 05:13:17 AM
Here's a copy of my Ubuntu 14.04 32-bit VMware Image for anyone that wants it. You will need atleast VMware 10 installed.
https://www.amazon.com/clouddrive/share/ZhOxZQQzji8FpQvuV9b86DqJg6IGpIXmlXFyG5o2X8h?
ref_=cd_ph_share_link_copy
It should be a big help to anyone that is having problems following this guide.
There are instructions on the desktop for anyone that needs them.
This doesn't work for me, I get "i686-w64-mingw32.static-g++: internal compiler error: Segmentation fault" error 4
https://bitcointalk.org/index.php?topic=1080289.0;all 25/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
I'm used to building daemon, can't build qt for anything very frustrating.
This is a Linux Qt Wallet Automatic Compiler, it works for pretty much all Sha-256 & Scrypt Altcoins, it's very easy to use even a
newbie with no Linux experience can do it with the guide.
https://bitcointalk.org/index.php?topic=498746.0
I can build for Linux just fine, also can build daemon. My issues arise when I try to cross-compile the QT wallet for
windows using MXE. I tried the virtual machine listed here and it didn't help since I got that segmentation fault.
D3m0nKinGx Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#43
Hero Member December 29, 2016, 05:16:01 AM
https://www.amazon.com/clouddrive/share/ZhOxZQQzji8FpQvuV9b86DqJg6IGpIXmlXFyG5o2X8h?ref_=cd_ph_share_link_copy
It should be a big help to anyone that is having problems following this guide.
There are instructions on the desktop for anyone that needs them.
This doesn't work for me, I get "i686-w64-mingw32.static-g++: internal compiler error: Segmentation fault" error 4
doesn't make any sense
I'm used to building daemon, can't build qt for anything very frustrating.
Should report the bug on github, very helpful devs there to go through the steps to find the issue and fix anything,
keep screenshots, also there should be a log file that outputs the errors, make sure to save those.
Whitepaper ▬◇
STRATIS BaaS ◇▬ Please Read OP
███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
▬◇▬◆
███ ███ ███ ███
███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███
███ ███
███ ███
███ ███
dzimbeck Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#44
Legendary December 29, 2016, 08:54:52 AM
https://bitcointalk.org/index.php?topic=1080289.0;all 26/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Quote from: D3m0nKinGx on December 29, 2016, 05:16:01 AM
Quote from: dzimbeck on December 29, 2016, 01:11:54 AM
Activity: 1330
Quote from: hendo420 on October 27, 2015, 02:41:02 PM
Here's a copy of my Ubuntu 14.04 32-bit VMware Image for anyone that wants it. You will need atleast VMware 10
installed.
https://www.amazon.com/clouddrive/share/ZhOxZQQzji8FpQvuV9b86DqJg6IGpIXmlXFyG5o2X8h?
ref_=cd_ph_share_link_copy
It should be a big help to anyone that is having problems following this guide.
There are instructions on the desktop for anyone that needs them.
This doesn't work for me, I get "i686-w64-mingw32.static-g++: internal compiler error: Segmentation fault" error 4
doesn't make any sense
I'm used to building daemon, can't build qt for anything very frustrating.
Should report the bug on github, very helpful devs there to go through the steps to find the issue and fix anything, keep
screenshots, also there should be a log file that outputs the errors, make sure to save those.
Thanks. Sure but which github? I'm not sure if thats an mxe issue or a VM issue or where to even ask. So I now
checked on another VM wheezy I made a script (setup.sh) as follows:
sudo apt-get install p7zip-full autoconf automake autopoint bash bison bzip2 cmake flex gettext git g++ gperf
intltool libffi-dev libtool libltdl-dev libssl-dev libxml-parser-perl make openssl patch perl pkg-config python ruby
scons sed unzip wget xz-utils
sudo apt-get install g++-multilib libc6-dev-i386
cd $HOME/QT/
git clone https://github.com/mxe/mxe.git
cd mxe
make MXE_TARGETS="i686-w64-mingw32.static" boost
make MXE_TARGETS="i686-w64-mingw32.static" qttools
cd ..
wget http://download.oracle.com/berkeley-db/db-5.3.28.tar.gz
tar zxvf db-5.3.28.tar.gz
cp compile-db.sh db-5.3.28/compile-db.sh
cd db-5.3.28
chmod ugo+x compile-db.sh
./compile-db.sh
https://bitcointalk.org/index.php?topic=1080289.0;all 27/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
cd ..
wget http://miniupnp.free.fr/files/miniupnpc-1.6.20120509.tar.gz
tar zxvf miniupnpc-1.6.20120509.tar.gz
cp compile-m.sh miniupnpc-1.6.20120509/compile-m.sh
cd miniupnpc-1.6.20120509
chmod ugo+x compile-m.sh
./compile-m.sh
export PATH=$HOME/QT/mxe/usr/bin:$PATH
cd ..
git clone https://github.com/rat4/blackcoin.git
cp compile-blk.sh blackcoin/compile-blk.sh
chmod -R 777 blackcoin
cd blackcoin
./compile-blk.sh
Its worth noting, boost skips over two packages when installing. I'm sorry but these instructions on this forum
are just not to date. I have no clue how anyone got this to work. That is two VMs, one I downloaded here in the
OP and the other was my own for building daemons and I followed the instructions exactly with failed boost
install.
Why do we have to compile this in the first place?? Its 2016 we should be in FLYING CARS. Its totally ridiculous
that we get these kinds of errors. It's times like this I want to set my computer on fire and become a farmer.
D3m0nKinGx Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#45
Hero Member December 29, 2016, 09:29:18 AM
Code:
TARGET_OS=NATIVE_WINDOWS make libleveldb.a libmemenv.a CC=~/mxe/usr/bin/i686-w64-mingw32.static-gcc
Activity: 672
▬◇▬◆
███ ███ ███ ███
███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███
███ ███
███ ███
███ ███
dzimbeck Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#46
Legendary December 29, 2016, 09:33:37 AM
I've done that, it didn't work. The error is in something missing from Boost. I wish there was a static way to install
these things instead of making them.
D3m0nKinGx Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#47
Hero Member December 29, 2016, 09:39:30 AM
$ locate list10.hpp
then copy it from where it's found to that directory, and try to compile again
The snake which cannot
cast its skin has to die
Whitepaper ▬◇
STRATIS BaaS ◇▬ Please Read OP
███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
▬◇▬◆
███ ███ ███ ███
███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███
███ ███
███ ███
███ ███
dzimbeck Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#48
Legendary December 29, 2016, 10:31:54 AM
Activity: 1330
https://bitcointalk.org/index.php?topic=1080289.0;all 29/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
boost/mpl/list/aux_/preprocessed/plain/list10.hpp
$ locate list10.hpp
then copy it from where it's found to that directory, and try to compile again
Nope, I just don't think boost is installing properly. Its giving me a bunch of weird errors now. Is there a way to
install boost and mxe that actually works?
D3m0nKinGx Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#49
Hero Member December 29, 2016, 10:40:48 AM
boost/mpl/list/aux_/preprocessed/plain/list10.hpp
$ locate list10.hpp
The snake which cannot
cast its skin has to die then copy it from where it's found to that directory, and try to compile again
Nope, I just don't think boost is installing properly. Its giving me a bunch of weird errors now. Is there a way to install boost and
mxe that actually works?
download and compile boost yourself, then install it in the mxe directory
https://sourceforge.net/projects/boost/files/boost/
▬◇ ◇▬
███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███ ███ ███
https://bitcointalk.org/index.php?topic=1080289.0;all 30/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
███ ███ ███ ███
▬◇▬◆
STRATIS BaaS
███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███
███ ███
███ ███
███ ███
███
dzimbeck Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#50
Legendary December 29, 2016, 11:48:09 AM
boost/mpl/list/aux_/preprocessed/plain/list10.hpp
$ locate list10.hpp
then copy it from where it's found to that directory, and try to compile again
Nope, I just don't think boost is installing properly. Its giving me a bunch of weird errors now. Is there a way to install boost and
mxe that actually works?
download and compile boost yourself, then install it in the mxe directory
https://sourceforge.net/projects/boost/files/boost/
Okay thanks! Also I should mention the segmentation fault with the VM featured in this thread was due to an issue
with my RAM on windows 7 running a virtual machine. So that laptop can compile the daemon but not the QT...
kind of weird but *oh well*. There wasn't much help on Google about this however it became apparent when I ran
the VM on my other laptop although it still compiles a bit clunky and freezes periodically. If it doesn't finish
compiling will let you know about to sleep.
Thanks again.
gjhiggins Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#51
Legendary December 29, 2016, 02:16:07 PM
https://bitcointalk.org/index.php?topic=1080289.0;all 31/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Quote from: dzimbeck on December 29, 2016, 05:13:17 AM
My issues arise when I try to cross-compile the QT wallet for windows using MXE.
Activity: 1232
I've had success with MXE cross-compilation by adding the MXE ppa deb http://pkg.mxe.cc/repos/apt/debian
wheezy main to my apt-sources, installing the appropriate cross-compiler bundle and all the pre-compiled
packages: boost, qt, libqrencode, miniupnpc.
I doubt whether I actually hand-selected every single installed package, I probably selected a bundle but I had a
very sketchy model of the cross-compilation process at the time, so was sort of stabbing around in blind
optimism (yes, it does sometimes pay off) and don't exactly recall what I did - other than, at the end of the
exercise, I had a richly-populated /usr/lib/mxe/usr/lib folder which does the biz.
It also has the useful side-effect of obviating the cross-compilation of the upnp & qrencode support libs.
Code:
#!/bin/bash
(The above probably includes more incantations than are strictly necessary but I have at least omitted the 1cc of
mouse blood that I habitually include.)
Oh, one last thing - all of the above assumes a VM with build-essentials, etc already apt-installed.
HTH,
https://bitcointalk.org/index.php?topic=1080289.0;all 32/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Cheers
Graham
dzimbeck Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#52
Legendary December 29, 2016, 07:53:31 PM
I've had success with MXE cross-compilation by adding the MXE ppa deb http://pkg.mxe.cc/repos/apt/debian wheezy main to my
apt-sources, installing the appropriate cross-compiler bundle and all the pre-compiled packages: boost, qt, libqrencode, miniupnpc.
I doubt whether I actually hand-selected every single installed package, I probably selected a bundle but I had a very sketchy model
of the cross-compilation process at the time, so was sort of stabbing around in blind optimism (yes, it does sometimes pay off) and
don't exactly recall what I did - other than, at the end of the exercise, I had a richly-populated /usr/lib/mxe/usr/lib folder which does
the biz.
It also has the useful side-effect of obviating the cross-compilation of the upnp & qrencode support libs.
Code:
#!/bin/bash
(The above probably includes more incantations than are strictly necessary but I have at least omitted the 1cc of mouse blood that I
https://bitcointalk.org/index.php?topic=1080289.0;all 33/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
habitually include.)
Oh, one last thing - all of the above assumes a VM with build-essentials, etc already apt-installed.
HTH,
Cheers
Graham
Thanks Graham! So it looks like I was finally able to build thanks to the advice everyone gave. The only thing I
notice is I run out of memory a lot. This doesn't make sense because both my laptops are i7 with 8 gigs of DDR. I
set my virtual machines for 3-5 gigabytes of RAM. Using VMWare on one I always got that segmentation fault which
was obviously a memory issue. The same VM ran on my other computer ran out a few times before finally compiling
correctly. The second computer fared well with VirtualBox. I get the feeling that they shouldn't come close to
running out of memory with such trivial tasks.
IngerDev Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#53
Member January 04, 2017, 09:00:41 PM
Hey,
Activity: 92
I cannot compile the Windows Wallet, it shows me everytime this Error:
What have I missed here?
I am Using Debian.
Error:
Thank you,
Lauren Smith Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#54
Sr. Member January 05, 2017, 02:08:02 AM
Ok that's complicated. What do you do after that ? I dont understand how do you get your wallet to you csn
generate and mine coins ? How do you do a premine ? What are the next steps. This is not so easy to
https://bitcointalk.org/index.php?topic=1080289.0;all 34/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Activity: 434 understand. For you it is since you know all these things and you know what is in your head but we dont so for
us understanding is not so easy.
Obizcoin : AI and
Blockchain backed
Smart Process
●● OBIZCOIN │
●● Managing Business Operations & Growing Business was never so LINKEDIN]
│
▄████████████░
▄█████████████████░█████▄
▄█████████████████████░███████▄
[BITCOINTALK
█████████████████████████░███████▄
easy! ●●
████████░░░░░███████████████░████████
██████░░░██████▀
▀▀██████░████████
YOUTUBE]
████░░░██████▀
▀▀████░███████░
░░░░███████▀
[WHITEPAPER
▓░████████
░█████████
░████████░
████████░
████████
MEDIUM]
░████████
d l
████████░
Skirmant Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#55
Member January 14, 2017, 12:22:12 AM
Thanks, this worked really well! I wonder how difficult it would be to cross-compile for MacOS
Activity: 109
Quote from: IngerDev on January 04, 2017, 09:00:41 PM
Such is life in crypto Error:
paradise
/mnt/mxe/usr/i686-w64-mingw32.static/lib/libdb_cxx.a(os_pid.o):os_pid.c:(.text+0x25): undefined reference to `pthread_self'
collect2: error: ld returned 1 exit status
Makefile.Release:427: recipe for target 'release/blackcoin-qt.exe' failed
make: *** [release/blackcoin-qt.exe] Error 1
Thank you,
Code:
windows:LIBS += -lws2_32 -lshlwapi -lmswsock -lole32 -loleaut32 -luuid -lgdi32
with
Code:
windows:LIBS += -lws2_32 -lshlwapi -lmswsock -lole32 -loleaut32 -luuid -lgdi32 -pthread
Need help with developing your altcoin? I can set up Android/Electrum wallets and Twitter/Discord tipbots and many other things for a
reasonable price.
Feel free to message me.
https://bitcointalk.org/index.php?topic=1080289.0;all 35/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Edgemaster Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw #56
Sr. Member January 14, 2017, 04:21:55 PM
Quote
can anybody help with what i need to do to include secp256k1. do i just compile it in its folder by it self using
standard means
██ ▄█████████ █████████▄ ██ ██
ON THE BLOCKCHAIN
██ ██ ██ ██ ██
██ ██ ██
Edgemaster Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#57
Sr. Member January 14, 2017, 04:38:43 PM
https://bitcointalk.org/index.php?topic=1080289.0;all 36/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Quote
can anybody help with what i need to do to include secp256k1. do i just compile it in its folder by it self using standard means
nvm fixed it. just edited key.cpp and specified exactly where the file was
██ ▄█████████ █████████▄ ██ ██
ON THE BLOCKCHAIN
██ ██ ██ ██ ██
██ ██ ██
Edgemaster Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#58
Sr. Member January 14, 2017, 06:05:31 PM
any clues ?
██ ▄█████████ █████████▄ ██ ██
ON THE BLOCKCHAIN
██ ██ ██ ██ ██
██ ██ ██
IngerDev Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#59
Member January 20, 2017, 08:43:31 PM
Activity: 92 Thanks, this worked really well! I wonder how difficult it would be to cross-compile for MacOS
Error:
https://bitcointalk.org/index.php?topic=1080289.0;all 39/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Thank you,
Code:
windows:LIBS += -lws2_32 -lshlwapi -lmswsock -lole32 -loleaut32 -luuid -lgdi32
with
Code:
windows:LIBS += -lws2_32 -lshlwapi -lmswsock -lole32 -loleaut32 -luuid -lgdi32 -pthread
No, the Problem was that Berkley DB was not the correct Version, I had to downgrade it and then it works.
svost Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#60
Sr. Member February 27, 2017, 11:20:57 AM
Hello.
Activity: 464
Somebody tried to realize 64-bit assembly of the altcoin client? Has been compiled by me novacoind.exe and
novacoin-qt.exe
Just try to build alternative toolchain with mxe
Code:
make -j2 gcc MXE_TARGETS=x86_64-w64-mingw32.static.posix
4NovacoinyLfMCjTzqDXcaGNTrykfDBNkP
D3m0nKinGx Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#61
Hero Member March 18, 2017, 10:41:01 PM
Activity: 672 I am trying to compile Blackcoin, following exactly everything from the OP;
Code:
https://bitcointalk.org/index.php?topic=1080289.0;all 40/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
i686-w64-mingw32.static-qmake-qt5
it's saying this command is missing do a search for it if it's missing your mxe installation is broken
Whitepaper ▬◇
STRATIS BaaS ◇▬ Please Read OP
███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
▬◇▬◆
███ ███ ███ ███
███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███
███ ███
███ ███
███ ███
nemgun Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#62
Hero Member March 21, 2017, 11:43:51 AM
Here's a copy of my Ubuntu 14.04 32-bit VMware Image for anyone that wants it. You will need atleast VMware 10 installed.
https://www.amazon.com/clouddrive/share/ZhOxZQQzji8FpQvuV9b86DqJg6IGpIXmlXFyG5o2X8h?ref_=cd_ph_share_link_copy
It should be a big help to anyone that is having problems following this guide.
There are instructions on the desktop for anyone that needs them.
There is a problem, i tried to do this many time and i always ended with different issues, so i came up to the
https://bitcointalk.org/index.php?topic=1080289.0;all 41/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
▄█▄ ▄█▄
║░║ ════════▮ Cross-platform Modular Decentralized Exchange ▮════════ ║░║ Crowd Sale
▄ ▄██
▐██▄ ▄████▄
NVO
█████▄ ▄███████
████████▄ ▄██████████
▐██████████▄ ▄█████████████
█████████████▄ ▀██████████████▄
║░║ ║░║
████████████████▄ ▀█████████████
▐█████████████████▄ ▀████████████
████████████████████▄ ▀██████████▌
███████████████████████▄ ▀█████████▄
▄█████████████████████████▄ ▀████████
▀█▀ Secure ═ Private ═ Assets-to-Assets ═ Full Autonomy ═ Multi-Assets Storage ═ Integrated Platform ▀█▀ ══closed══
████████████████████████████▄ ▀██████▌
▐██████████████████████████████▄ ▀██▀▀
▀████████████████████████████████
▀▀▀███████████████████████▀
▀▀███████████████▀
▀▀█████▀▀
MickGhee Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#63
Legendary April 05, 2017, 12:56:56 AM
I have libboost-dev all installed under root/usr/include/boost this is crazy because I have compiled for Linux earlier
i tried to find boost in the mxe and i think the script thinks its here /mnt/mxe/usr/i686-w64-
mingw32.static/include am I right? doi just copy boost there?? im using an ubuntu server on digital ocean with
node if that means anything. I'm trying to copy over now plus I am dl the VM to see if I have better luck.
today was the first time I have been able to compile Berkeley DB ever and I have been trying for a long time. I
think it was part this thread and part the education I have been receiving THAT FINALLY MAKES THIS STUFF
SOUND LIKE ENGLISH.\
nomadsena Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#64
Member April 14, 2017, 06:39:26 AM
when i run
Code:
Activity: 76
./compile-db.sh
https://bitcointalk.org/index.php?topic=1080289.0;all 42/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Code:
configure: error: in `/home/nomad/mnt/db-5.3.28/build_mxe':
configure: error: C compiler cannot create executables
See `config.log' for more details
make: *** No targets specified and no makefile found. Stop.
make: *** No rule to make target `install'. Stop.
MickGhee Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#65
Legendary June 06, 2017, 06:30:28 PM
Code:
configure: error: in `/home/nomad/mnt/db-5.3.28/build_mxe':
configure: error: C compiler cannot create executables
See `config.log' for more details
make: *** No targets specified and no makefile found. Stop.
make: *** No rule to make target `install'. Stop.
bumbacoin Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#66
Legendary July 08, 2017, 03:33:07 PM
https://bitcointalk.org/index.php?topic=1080289.0;all 43/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
generally it seems like i have success with secp256k1 but it is not recognized on qt build.
Code:
./autogen.sh
./configure --host=i686-w64-mingw32.static
make
fails on qt build
and
Code:
./configure --host=i686-w64-mingw32.static --prefix=/home/mxe/mxe/usr/i686-w64-mingw32.static --enab
⛄🎄🎁 ★ ★ BUMBA ★ 🎄⛄
go to
████████████████
crypto services
████████████████
████████████████
████████████████
████████████████
NODES,
████████████████
C O I N
████████████████
████████████████
████████████████
GENERAL
████████████████
bumbacoin Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#67
Legendary July 11, 2017, 07:07:21 AM
https://bitcointalk.org/index.php?topic=1080289.0;all 44/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Activity: 1204 after more fruitless searching,
i'm guessing it's to do with the age of secp256k1 (looks like early 2015).
⛄🎄🎁 ★ ★ BUMBA ★ 🎄⛄
go to
████████████████
crypto services
████████████████
████████████████
████████████████
████████████████
NODES,
████████████████
C O I N
████████████████
████████████████
████████████████
GENERAL
████████████████
gjhiggins Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#68
Legendary July 11, 2017, 07:26:46 AM
The messages suggests that autoconf isn't finding the relevant m4 macros which suggests there's a missing file or
an existing file has missing stanzas. Cross-referencing the m4 contents with those of a successfully-compiling coin
of similar vintage and configuration might help you fill in the missing bits.
Cheers
Graham
dekm0101 Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#69
Member August 05, 2017, 08:01:20 PM
Does anyone know how to resolve this error? The coin I'm working from uses secp256k which I noticed earlier
someone stated is a bit older.
Activity: 113
Code:
/mnt/mxe/usr/bin/i686-w64-mingw32.static-ld: cannot find -lsecp256k1
collect2: error: ld returned 1 exit status
Enkrypto_Storm Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#70
Newbie August 06, 2017, 01:50:33 AM
https://bitcointalk.org/index.php?topic=1080289.0;all 45/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
It's kind of funny that the file you named your username after no longer exist in the Bitcoin source code. Ever since
main.h and main.cpp were sort of replaced (I guess?) by chainparams.cpp/chainparams.h, I don't think anyone's
Activity: 16
written a decent guide on how to fork Bitcoin to make an altcoin for fun.
eliteyo Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#71
Newbie August 15, 2017, 10:58:39 AM
I'm getting:
Activity: 7
Code:
./compile-blk.sh: line 6: i686-w64-mingw32.static-qmake-qt5: command not found
make: Makefile.Release: No such file or directory
make: *** No rule to make target 'Makefile.Release'. Stop.
Code:
export PATH=/mnt/mxe/usr/bin:$PATH
gjhiggins Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#72
Legendary August 15, 2017, 07:50:28 PM
Cheers
Graham
noreplybatam Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#73
Newbie August 26, 2017, 11:35:53 AM
any solutions ??
D3m0nKinGx Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#74
Hero Member August 26, 2017, 01:02:49 PM
Whitepaper ▬◇
STRATIS BaaS ◇▬ Please Read OP
███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
▬◇▬◆
███ ███ ███ ███
███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███
███ ███
███ ███
███ ███
noreplybatam Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#75
Newbie August 27, 2017, 10:58:55 AM
any solutions ??
https://bitcointalk.org/index.php?topic=1080289.0;all 47/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
gjhiggins Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#76
Legendary August 27, 2017, 11:39:32 AM
Installed or not, the libraries aren't being found by the build process, looks like you need to tend to your
environment variable bindings.
Cheers
Graham
noreplybatam Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#77
Newbie August 27, 2017, 05:06:37 PM
Installed or not, the libraries aren't being found by the build process, looks like you need to tend to your environment variable
bindings.
Cheers
Graham
how to do that ??
gjhiggins Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#78
August 27, 2017, 05:22:50 PM
https://bitcointalk.org/index.php?topic=1080289.0;all 48/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Legendary Quote from: noreplybatam on August 27, 2017, 05:06:37 PM
how to do that ??
Activity: 1232
See the code example upthread:
https://bitcointalk.org/index.php?topic=1080289.msg17336514#msg17336514
Cheers
Graham
noreplybatam Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#79
Newbie August 28, 2017, 04:36:39 AM
https://bitcointalk.org/index.php?topic=1080289.msg17336514#msg17336514
Cheers
Graham
gjhiggins Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#80
Legendary August 28, 2017, 07:51:44 AM
Use your computer's search facility to find where the boost libraries were installed.
Cheers
https://bitcointalk.org/index.php?topic=1080289.0;all 49/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Graham
noreplybatam Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#81
Newbie August 28, 2017, 03:14:39 PM
Activity: 27 Here's a copy of my Ubuntu 14.04 32-bit VMware Image for anyone that wants it. You will need atleast VMware 10 installed.
https://www.amazon.com/clouddrive/share/ZhOxZQQzji8FpQvuV9b86DqJg6IGpIXmlXFyG5o2X8h?ref_=cd_ph_share_link_copy
It should be a big help to anyone that is having problems following this guide.
There are instructions on the desktop for anyone that needs them.
D3m0nKinGx Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#82
Hero Member August 28, 2017, 03:20:13 PM
https://www.amazon.com/clouddrive/share/ZhOxZQQzji8FpQvuV9b86DqJg6IGpIXmlXFyG5o2X8h?ref_=cd_ph_share_link_copy
It should be a big help to anyone that is having problems following this guide.
There are instructions on the desktop for anyone that needs them.
https://bitcointalk.org/index.php?topic=1080289.0;all 51/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
https://bitcointalk.org/index.php?topic=1080289.0;all 52/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
seems you need to setup a swap file, or increase the one already there, so this issue is likely due to lack of ram
Whitepaper ▬◇
STRATIS BaaS ◇▬ Please Read OP
███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
▬◇▬◆
███ ███ ███ ███
███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███
███ ███
███ ███
███ ███
noreplybatam Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#83
Newbie August 28, 2017, 03:34:41 PM
Here's a copy of my Ubuntu 14.04 32-bit VMware Image for anyone that wants it. You will need atleast VMware 10 installed.
https://www.amazon.com/clouddrive/share/ZhOxZQQzji8FpQvuV9b86DqJg6IGpIXmlXFyG5o2X8h?
ref_=cd_ph_share_link_copy
It should be a big help to anyone that is having problems following this guide.
There are instructions on the desktop for anyone that needs them.
seems you need to setup a swap file, or increase the one already there, so this issue is likely due to lack of ram
D3m0nKinGx Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#84
Hero Member August 28, 2017, 03:38:26 PM
https://www.digitalocean.com/community/tutorials/how-to-add-swap-on-ubuntu-14-04
Activity: 672
Whitepaper ▬◇
STRATIS BaaS ◇▬ Please Read OP
███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
https://bitcointalk.org/index.php?topic=1080289.0;all 54/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Slack ▬◇▬◆ Blockchain Solutions Blockchain as a Service ◆▬◇▬ stratisplatform.com
noreplybatam Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#85
Newbie August 28, 2017, 04:15:02 PM
Activity: 27 https://www.digitalocean.com/community/tutorials/how-to-add-swap-on-ubuntu-14-04
noreplybatam Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#86
Newbie August 28, 2017, 04:36:05 PM
Activity: 27 https://www.digitalocean.com/community/tutorials/how-to-add-swap-on-ubuntu-14-04
https://bitcointalk.org/index.php?topic=1080289.0;all 55/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
noreplybatam Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#87
Newbie August 28, 2017, 04:49:08 PM
Code:
i686-w64-mingw32.static-g++ -c -DQT_GUI -DQT_NO_PRINTER -std=gnu++11 -march=i686 -Isrc -Isrc/json -I
Activity: 27
i686-w64-mingw32.static-g++: internal compiler error: Segmentation fault (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.
make: *** [build/txdb-bdb.o] Error 4
D3m0nKinGx Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#88
Hero Member August 28, 2017, 05:03:59 PM
free -h
at the terminal, there should be a value on the swap line something like:
Whitepaper ▬◇
STRATIS BaaS ◇▬ Please Read OP
███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
▬◇▬◆
███ ███ ███ ███
███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███
███ ███
███ ███
███ ███
noreplybatam Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#89
Newbie August 28, 2017, 05:07:54 PM
free -h
at the terminal, there should be a value on the swap line something like:
https://bitcointalk.org/index.php?topic=1080289.0;all 56/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
i got this
D3m0nKinGx Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#90
Hero Member August 28, 2017, 05:13:38 PM
free -h
at the terminal, there should be a value on the swap line something like:
The snake which cannot
cast its skin has to die Swap: 7.5G 45M 7.4G
i got this
You didn't increase your swap that's only 19 Megabytes... if you only typed "free" in the terminal, i asked you to
type "free -h" or "free -m" these switches give easier to read output
so if the first part is true, then you still need to make a larger swap
Whitepaper ▬◇
STRATIS BaaS ◇▬ Please Read OP
███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
▬◇▬◆
███ ███ ███ ███
███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███
███ ███
███ ███
███ ███
D3m0nKinGx Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#91
Hero Member August 28, 2017, 05:19:30 PM
https://bitcointalk.org/index.php?topic=1080289.0;all 57/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Activity: 672 Code:
// Minimal C example
#include <stdio.h>
int main()
{
printf("This works\n");
return 0;
}
The snake which cannot
cast its skin has to die
then test your compiler on the file:
Code:
mxe/usr/bin/i686-w64-mingw32.static-g++ m32test.c
Whitepaper ▬◇
STRATIS BaaS ◇▬ Please Read OP
███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
▬◇▬◆
███ ███ ███ ███
███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███
███ ███
███ ███
███ ███
noreplybatam Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#92
Newbie August 28, 2017, 05:28:36 PM
Code:
// Minimal C example
#include <stdio.h>
int main()
{
printf("This works\n");
return 0;
}
Code:
mxe/usr/bin/i686-w64-mingw32.static-g++ m32test.c
https://bitcointalk.org/index.php?topic=1080289.0;all 58/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
D3m0nKinGx Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#93
Hero Member August 28, 2017, 05:32:53 PM
▬◇▬◆
███ ███ ███ ███
███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███
███ ███
███ ███
███ ███
noreplybatam Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#94
Newbie August 28, 2017, 05:35:19 PM
D3m0nKinGx Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#95
Hero Member August 28, 2017, 05:35:57 PM
https://bitcointalk.org/index.php?topic=1080289.0;all 59/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
▬◇▬◆
███ ███ ███ ███
███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███
███ ███
███ ███
███ ███
noreplybatam Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#96
Newbie August 28, 2017, 05:42:01 PM
D3m0nKinGx Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#97
Hero Member August 28, 2017, 05:47:38 PM
https://bitcointalk.org/index.php?topic=1080289.0;all 60/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Whitepaper ▬◇
STRATIS BaaS ◇▬ Please Read OP
███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
▬◇▬◆
███ ███ ███ ███
███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███
███ ███
███ ███
███ ███
noreplybatam Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#98
Newbie August 28, 2017, 05:49:54 PM
bumbacoin Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#99
Legendary August 30, 2017, 03:10:24 AM
Activity: 1204 i'm having trouble with building a coin using secp256k1
Code:
libsecp256k1_la-secp256k1.o: file not recognized: File format not recognized
generally it seems like i have success with secp256k1 but it is not recognized on qt build.
https://bitcointalk.org/index.php?topic=1080289.0;all 61/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Code:
./autogen.sh
./configure --host=i686-w64-mingw32.static
make
fails on qt build
and
Code:
./configure --host=i686-w64-mingw32.static --prefix=/home/mxe/mxe/usr/i686-w64-mingw32.static --e
i'm trying a different source, and using latest version of secp256k1 but still getting
Code:
libsecp256k1_la-secp256k1.o: file not recognized: File format not recognized
go to
████████████████
crypto services
BUMBA
████████████████
████████████████
████████████████
████████████████
https://bitcointalk.org/index.php?topic=1080289.0;all 62/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
⛄🎄🎁 ★ ★ ★ 🎄⛄
ask for a voucher
████████████████
C O I N NODES,
████████████████
████████████████
████████████████
████████████████
gjhiggins Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#100
Legendary August 30, 2017, 08:12:20 AM
Activity: 1232 i'm trying a different source, and using latest version of secp256k1 but still getting
Code:
libsecp256k1_la-secp256k1.o: file not recognized: File format not recognized
It's a long shot but I've been caught out before with self-edited Makefiles fumbling the removal of binaries from the
build directory, being skipped by make and, if I'm wrestling with cross-compilation, ultimately causing the linker to
complain about unrecognised format. I also used to see that after the laptop crashed, leaving truncated .o files in
the build directory. What you're describing suggests that the secp256k1 code is being natively compiled when it
should be cross-compiled. I've also encountered crypto files that need to be compiled with plain C, requiring ${CC}
to be properly bound to the corresponding MXE binary.
Cheers
Graham
hesdeadjim Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#101
Sr. Member September 05, 2017, 04:33:50 PM
Hello everyone.
Activity: 433
I've been compiling wallets for different Linux distros and for the Raspberry Pi and I thought I might give the
Windows wallet a shot.
I followed the instructions on the first post exactly and everything worked perfectly until the compile.
Code:
compile@compile-HP-Compaq-dc7700-Convertible-Minitower:/mnt/blackcoin$ sudo ./compile-blk.sh
./compile-blk.sh: 1: ./compile-blk.sh: #!/bin/bash: not found
./compile-blk.sh: 4: ./compile-blk.sh: i686-w64-mingw32.static-qmake-qt5: not found
make: Makefile.Release: No such file or directory
make: *** No rule to make target `Makefile.Release'. Stop.
compile@compile-HP-Compaq-dc7700-Convertible-Minitower:/mnt/blackcoin$
https://bitcointalk.org/index.php?topic=1080289.0;all 63/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Now here is the strange part. I put the path in correctly, and it shows up fine when I display environmental list in
the terminal.
Thanks.
AnthonyBitLand Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#102
Member September 08, 2017, 11:37:31 AM
Code:
Activity: 70
compile@compile-HP-Compaq-dc7700-Convertible-Minitower:/mnt/blackcoin$ sudo ./compile-blk.sh
http://eddiecoin.com ./compile-blk.sh: 1: ./compile-blk.sh: #!/bin/bash: not found
./compile-blk.sh: 4: ./compile-blk.sh: i686-w64-mingw32.static-qmake-qt5: not found
make: Makefile.Release: No such file or directory
make: *** No rule to make target `Makefile.Release'. Stop.
compile@compile-HP-Compaq-dc7700-Convertible-Minitower:/mnt/blackcoin$
kurdcoin Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#103
Newbie September 08, 2017, 05:22:38 PM
Code:
libsecp256k1_la-secp256k1.o: file not recognized: File format not recognized
generally it seems like i have success with secp256k1 but it is not recognized on qt build.
Code:
./autogen.sh
./configure --host=i686-w64-mingw32.static
make
https://bitcointalk.org/index.php?topic=1080289.0;all 64/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
fails on qt build
and
Code:
./configure --host=i686-w64-mingw32.static --prefix=/home/mxe/mxe/usr/i686-w64-mingw32.static --e
i kinda fixed this issue ,, the fastes way is to get pre compiled secp256k1 for win32, or do it yourself on winodws,
copy secp256k1 to ubuntu , copy and merge libs & include in to mxe i686-w64-mingw32.static folder, and that is
it,
bumbacoin Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#104
Legendary September 09, 2017, 09:33:01 AM
Activity: 1204
i kinda fixed this issue ,, the fastes way is to get pre compiled secp256k1 for win32, or do it yourself on winodws, copy secp256k1
to ubuntu , copy and merge libs & include in to mxe i686-w64-mingw32.static folder, and that is it,
i just grabbed bitcoin source and used it to compile the secp256k1 libraries for windows.
https://bitcointalk.org/index.php?topic=1080289.0;all 65/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
i had a go at win64, this version appears to have succeeded but i havent tested it
https://drive.google.com/open?id=0B5j8d4FSc7drd3RBUnc0R0pyUE0
⛄🎄🎁 ★ ★ BUMBA ★ 🎄⛄
go to
████████████████
crypto services
████████████████
████████████████
████████████████
████████████████
NODES,
████████████████
C O I N
████████████████
████████████████
████████████████
GENERAL
████████████████
MNCoin Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#105
Newbie September 13, 2017, 08:33:45 PM
How do you guys use this to compile coins without .pro file ? but has autogen.sh ..?
Activity: 10
MickGhee Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#106
Legendary September 20, 2017, 03:32:28 AM
happy coding
gjhiggins Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#107
Legendary September 20, 2017, 08:18:19 AM
https://bitcointalk.org/index.php?topic=1080289.0;all 66/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Doesn't cover the “using mxe and mingw” (c.f. thread topic).
Cheers
Graham
jocker1508 Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#108
Newbie October 12, 2017, 01:23:36 PM
Activity: 1 Everything is compiling so far when I execute the script as root, if there is any other issues ill let you know. - It compiled with no
issues! I don't have much for BTC if you leave your address ill send you something for the help.
./compile-m.sh
error is as follows:
scryclip Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#109
Member October 17, 2017, 04:09:55 PM
i kinda fixed this issue ,, the fastes way is to get pre compiled secp256k1 for win32, or do it yourself on winodws, copy
secp256k1 to ubuntu , copy and merge libs & include in to mxe i686-w64-mingw32.static folder, and that is it,
i just grabbed bitcoin source and used it to compile the secp256k1 libraries for windows.
i had a go at win64, this version appears to have succeeded but i havent tested it
https://bitcointalk.org/index.php?topic=1080289.0;all 67/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
https://drive.google.com/open?id=0B5j8d4FSc7drd3RBUnc0R0pyUE0
It would have taken me days, (or maybe a week with the arduous task of having learn how and then attempt
compile it entirely under windows, which I was reading about and considering ...it did not sound fun), Had I did not
see your advice kurdcoin (and been able to quickly check it worked with your Library bumbacoin, that was great)
Actually I did a different wallet 3 months ago (before you guys posted) that had this secp256k1 library however the
original dev had coded an #ifdef around all the secp256k1 instances so it was possible to optionally exclude it when
compiling. I wonder now if he had coded around it just to get it to compile with mingw if needed....
bumbacoin Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#110
Legendary October 21, 2017, 04:26:44 PM
Activity: 1204
Actually I did a different wallet 3 months ago (before you guys posted) that had this secp256k1 library however the original dev had
coded an #ifdef around all the secp256k1 instances so it was possible to optionally exclude it when compiling. I wonder now if he
had coded around it just to get it to compile with mingw if needed....
⛄🎄🎁 ★ ★ BUMBA ★ 🎄⛄
go to
████████████████
crypto services
████████████████
████████████████
████████████████
████████████████
NODES,
████████████████
C O I N
████████████████
████████████████
████████████████
GENERAL
████████████████
hoop Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#111
Legendary October 21, 2017, 09:43:56 PM
I will following this topic regarding the constructive discussions in addition to valuable information.
Activity: 1246
██████████ ██████████▄▄
█████████████ ██████████████ ██ ██
https://bitcointalk.org/index.php?topic=1080289.0;all 68/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
█████████████ ██████████████▄▄ ██ ██
NOBT
██████ ▀█████▄ ████ ▀▀█████ ██ ███ ██████████████████ █████████ ████████ ▄█████████ ██
█████ ▀█████▄ ████ █████ ██ ████████████████████████████████ ████ ███▌ ██
████ ▀████ ████ ████ ███ ███ ████████████████████████████ ███ ██▌
████ ██▄ ▀█ ██▄ ████ ████ ██ ███ ███ █████████████████████████████ ▐██ ███ ████ ██
████▌ █████▄ ████████ ▐████ ██ ███ ██ ███ ██████████████████ ▄███████████ ██
▐████ ████████ ▀█████ ████▌ ███ ██ ██ ██ ███ ██████████████████ ███████████ ███████████▀
Twitter Telegram
█████ ████ ▀██ █▄ ▀██ █████ ██ ███ ██ ██ ██ ███ ██████████████████ ██ █████ ████ ███ ██▌ ██
█████ ████ ████▄ █████ ███ ██ ██ ██ ███ ██████████████████ ███████████ ▐██ ███
█████▄ ████
▀█████▄ ████
▀█████▄
▀█████▄
▄█████
██▀ ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ██
██
███
███
███
███
██████████████████
█████████████████████████████
▐███ ████
█████████▀
██
██
▀█████▄ ▀█████ ████████████████████████████████ ████████████████████████████ ▀█████▀
WNOBT
██ ██
Nobt-plataform
▀▀████████ ████████▀▀ ██ ██
▀▀████ ████▀▀ ██ ██
██ ██
owner232 Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#112
Member October 25, 2017, 09:36:05 PM
Ive been working on this for days and Im now getting this error
Activity: 68
g[abi:cxx11]() const'
./build/main.o:main.cpp:(.text+0x89ef): undefined reference to `leveldb::WriteBatch::~WriteBatch()'
./build/main.o:main.cpp:(.text+0xd76b): undefined reference to `leveldb::WriteBatch::~WriteBatch()'
./build/main.o:main.cpp:(.text+0x128d8): undefined reference to `leveldb::WriteBatch::~WriteBatch()'
./build/main.o:main.cpp:(.text+0x13949): undefined reference to `leveldb::WriteBatch::~WriteBatch()'
./build/main.o:main.cpp:(.text$_ZN5CTxDBD1Ev[__ZN5CTxDBD1Ev]+0xe): undefined reference to
`leveldb::WriteBatch::~WriteBatch()'
./build/miner.o:miner.cpp:(.text+0x48c6): more undefined references to `leveldb::WriteBatch::~WriteBatch()'
follow
FIXED.
For everyone with this error, I went to novacoin and took the leveldb from their project folder and replaced the one
in my source folder. It then compiled.
Telegram:@owner232
Discord: Owner 232#1419
AltCreators Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#113
Full Member November 20, 2017, 04:59:13 PM
libgtk2.0-dev is missing.
Code:
Official AltCreator
https://bitcointalk.org/index.php?topic=1080289.0;all 69/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Account sudo apt-get install libgtk2.0-dev
*if anyone needs help compiling or want to make their own coin, PM me
♦♦♦CryptoDiamond♦♦♦
Daily Trading Tips! ▍Daily Cryptocurrency news ▍BEST TELEGRAM CHANNEL! ▍
Daily Coin Predictions ▍Trading Analysis ▍100% FREE ▍Professional trading Admins[url]
AltCreators Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#114
Full Member November 21, 2017, 04:46:45 PM
Official AltCreator
Account
♦♦♦CryptoDiamond♦♦♦
Daily Trading Tips! ▍Daily Cryptocurrency news ▍BEST TELEGRAM CHANNEL! ▍
Daily Coin Predictions ▍Trading Analysis ▍100% FREE ▍Professional trading Admins[url]
AltCreators Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#115
Full Member November 22, 2017, 04:06:32 AM
Compiling Boost takes a pretty long time. a few hours on a descent VPS.
When it is compiling boost, dont discourage yourself and quit compiling. Eventually it will compile!
Official AltCreator
Account Compiling QT 5 does not take much time. About 1 hour and a half should do.
♦♦♦CryptoDiamond♦♦♦
Daily Trading Tips! ▍Daily Cryptocurrency news ▍BEST TELEGRAM CHANNEL! ▍
Daily Coin Predictions ▍Trading Analysis ▍100% FREE ▍Professional trading Admins[url]
https://bitcointalk.org/index.php?topic=1080289.0;all 70/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
rewenton Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw #116
Member November 22, 2017, 06:12:41 PM
Code:
:/mnt/mxe# make MXE_TARGETS="i686-w64-mingw32.static" boost
Activity: 70
[create settings.mk]
[check requirements]
Missing requirement: libtool
Missing requirement: gdk-pixbuf-csource
D3m0nKinGx Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#117
Hero Member November 22, 2017, 06:20:35 PM
Code:
sudo apt install libgdk-pixbuf2.0-dev libtool
Whitepaper ▬◇
STRATIS BaaS ◇▬ Please Read OP
███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
███ ███
▬◇▬◆
███ ███ ███ ███
███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███ ███
███ ███ ███
███ ███
███ ███
███ ███
https://bitcointalk.org/index.php?topic=1080289.0;all 71/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
AnorakThaGreat Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw #118
Newbie November 23, 2017, 09:12:45 AM
AnorakThaGreat Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#119
Newbie November 23, 2017, 09:21:44 AM
I've been compiling wallets for different Linux distros and for the Raspberry Pi and I thought I might give the Windows wallet a shot.
I followed the instructions on the first post exactly and everything worked perfectly until the compile.
Code:
compile@compile-HP-Compaq-dc7700-Convertible-Minitower:/mnt/blackcoin$ sudo ./compile-blk.sh
./compile-blk.sh: 1: ./compile-blk.sh: #!/bin/bash: not found
./compile-blk.sh: 4: ./compile-blk.sh: i686-w64-mingw32.static-qmake-qt5: not found
make: Makefile.Release: No such file or directory
make: *** No rule to make target `Makefile.Release'. Stop.
compile@compile-HP-Compaq-dc7700-Convertible-Minitower:/mnt/blackcoin$
https://bitcointalk.org/index.php?topic=1080289.0;all 72/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
to pass the environment vars (PATH and whatever else you have defined in sudoers)
rewenton Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#120
Member November 25, 2017, 02:21:35 AM
altcoin - https://github.com/peopleproject/people
gjhiggins Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#121
Legendary December 14, 2017, 11:36:24 AM
https://bitcointalk.org/index.php?topic=1080289.0;all 73/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
There are two shell script files that need to be executable in order for the compilation process to succeed. If the dev
has omitted to make them executable, the above error is seen:
Cheers
Graham
thepcb Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#122
Newbie December 15, 2017, 07:42:09 PM
================================================================
gjhiggins Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#123
Legendary December 16, 2017, 01:44:10 PM
FWIW: I won't be responding to any more “Can you help me?” PMs.
Activity: 1232
This exercise is public for a reason, so that knowledge is distributed - and from my perspective, so that others
https://bitcointalk.org/index.php?topic=1080289.0;all 74/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Cheers
Graham
gjhiggins Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#124
Legendary December 16, 2017, 01:58:37 PM
I'v experienced this on more than one occasion. Sometimes it can be trivially solved by running make libmemenv.a in
src/leveldb and sometimes not. If not then the only recourse is to try and deduce a fix by cross-referencing
against the contents of leveldb and the top-level (qmake/autotools) build file of a close clonecousin.
Cheers
Graham
Blackboltz Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#125
Newbie December 16, 2017, 02:19:43 PM
gjhiggins Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#126
Legendary December 16, 2017, 02:46:56 PM
https://bitcointalk.org/index.php?topic=1080289.0;all 75/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Cheers
Graham
thepcb Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#127
Newbie December 20, 2017, 10:36:35 AM
gjhiggins Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#128
Legendary December 20, 2017, 02:24:01 PM
https://bitcointalk.org/index.php?topic=1080289.0;all 76/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
thepcb Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#129
Newbie December 20, 2017, 02:32:04 PM
root@noodihdus:/mnt/coinm# ls ../mxe/usr/bin/
cmake-configure-file i686-w64-mingw32.static-gfortran
config.guess i686-w64-mingw32.static-gprof
i686-w64-mingw32.static-addr2line i686-w64-mingw32.static-icu-config
i686-w64-mingw32.static-ar i686-w64-mingw32.static-ld
i686-w64-mingw32.static-as i686-w64-mingw32.static-ld.bfd
i686-w64-mingw32.static-c++ i686-w64-mingw32.static-libpng-config
i686-w64-mingw32.static-c++filt i686-w64-mingw32.static-nm
i686-w64-mingw32.static-cmake i686-w64-mingw32.static-objcopy
i686-w64-mingw32.static-cpack i686-w64-mingw32.static-objdump
i686-w64-mingw32.static-cpp i686-w64-mingw32.static-pcre2-config
i686-w64-mingw32.static-dlltool i686-w64-mingw32.static-pcre-config
i686-w64-mingw32.static-dllwrap i686-w64-mingw32.static-pg_config
i686-w64-mingw32.static-elfedit i686-w64-mingw32.static-pkg-config
i686-w64-mingw32.static-freetype-config i686-w64-mingw32.static-qmake-qt5
i686-w64-mingw32.static-g++ i686-w64-mingw32.static-ranlib
i686-w64-mingw32.static-gcc i686-w64-mingw32.static-readelf
i686-w64-mingw32.static-gcc-5.4.0 i686-w64-mingw32.static-size
i686-w64-mingw32.static-gcc-ar i686-w64-mingw32.static-strings
i686-w64-mingw32.static-gcc-nm i686-w64-mingw32.static-strip
i686-w64-mingw32.static-gcc-ranlib i686-w64-mingw32.static-windmc
i686-w64-mingw32.static-gcov i686-w64-mingw32.static-windres
i686-w64-mingw32.static-gcov-tool
mr0x50 Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#130
Newbie December 23, 2017, 12:09:00 PM
https://bitcointalk.org/index.php?topic=1080289.0;all 77/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Activity: 1 Hi guys,
I have issues with Compile qt5:
Code:
make MXE_TARGETS="i686-w64-mingw32.static" qttools
output:
Code:
[build] qtbase i686-w64-mingw32.static
any ideas?
thepcb Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#131
Newbie December 28, 2017, 12:26:46 PM
https://bitcointalk.org/index.php?topic=1080289.0;all 78/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
...
...
...
...
/mnt/coinm/src/leveldb/libmemenv.a: error adding symbols: Archive has no index; run ranlib to add one
collect2: error: ld returned 1 exit status
make: *** [release/coinm-qt.exe] Error 1
gjhiggins Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#132
Legendary December 28, 2017, 12:35:43 PM
https://duckduckgo.com/?
q=%22Archive+has+no+index%3B+run+ranlib+to+add+one%22+site%3Abitcointalk.org&atb=v81-6__&ia=web
https://bitcointalk.org/index.php?topic=1080289.0;all 79/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Cheers
Graham
thepcb Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#133
Newbie December 28, 2017, 12:49:42 PM
https://duckduckgo.com/?q=%22Archive+has+no+index%3B+run+ranlib+to+add+one%22+site%3Abitcointalk.org&atb=v81-
6__&ia=web
Cheers
Graham
in your link they think that person dont generated libleveldb.a and libmemenv.a files, but I have the files...
gjhiggins Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#134
Legendary December 28, 2017, 05:09:17 PM
------------------------------------------------------------------------------------------
Could you tell me how to solve this problem?
Not specifically, I'm afraid --- because the problem is local to your setup. Fairly obviously, it's a problem with the
path to the MXE boost libs. Try reinstalling/recompiling the MXE suite - I have no idea whether that will help but
it's a starting poiint.
https://bitcointalk.org/index.php?topic=1080289.0;all 80/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Cheers
Graham
gjhiggins Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
#135
Legendary December 28, 2017, 05:27:53 PM
https://duckduckgo.com/?q=%22Archive+has+no+index%3B+run+ranlib+to+add+one%22+site%3Abitcointalk.org&atb=v81-
6__&ia=web
in your link they think that person dont generated libleveldb.a and libmemenv.a files, but I have the files...
You might need to summon a little more persistence, then you might progress a little faster.
For people arriving later with the same problem ... from the list of search results I gave:
https://bitcointalk.org/index.php?topic=912667.msg10037005#msg10037005
Otherwise:
https://bitcointalk.org/index.php?topic=912667.msg10037005#msg10037005
Cheers
Graham
https://bitcointalk.org/index.php?topic=1080289.0;all 81/82
1/3/2018 [HOWTO] compile altcoin for windows on linux using mxe and mingw
Bitcoin Forum > Alternate cryptocurrencies > Altcoin Discussion (Moderator: mprep) > [HOWTO] compile altcoin for « previous topic next
windows on linux using mxe and mingw topic »
https://bitcointalk.org/index.php?topic=1080289.0;all 82/82