Bitcoin Forum
November 17, 2024, 06:24:05 PM *
News: Latest Bitcoin Core release: 28.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Compile error  (Read 1164 times)
tomgie (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
January 11, 2015, 07:55:39 PM
 #1

Can anyone help me? I am getting this error when trying to build my client in windows.

$ make -f makefile.mingw
g++ -c -mthreads -O2 -w -Wall -Wextra -Wformat -Wformat-security -Wno-unused-par
ameter -g -DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -D
USE_IPV6 -D__NO_SYSTEM_INCLUDES -I"C:\deps\boost" -I"C:\deps\db\build_unix" -I"C
:\deps\ssl\include" -o obj/checkpoints.o checkpoints.cpp
checkpoints.cpp:6:59: fatal error: boost/assign/list_of.hpp: No such file or dir
ectory
 #include <boost/assign/list_of.hpp> // for 'map_list_of()'
                                                           ^
compilation terminated.
make: *** [obj/checkpoints.o] Error 1
ncsupanda
Legendary
*
Offline Offline

Activity: 1628
Merit: 1012



View Profile
January 11, 2015, 07:58:09 PM
 #2

Can anyone help me? I am getting this error when trying to build my client in windows.

$ make -f makefile.mingw
g++ -c -mthreads -O2 -w -Wall -Wextra -Wformat -Wformat-security -Wno-unused-par
ameter -g -DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -D
USE_IPV6 -D__NO_SYSTEM_INCLUDES -I"C:\deps\boost" -I"C:\deps\db\build_unix" -I"C
:\deps\ssl\include" -o obj/checkpoints.o checkpoints.cpp
checkpoints.cpp:6:59: fatal error: boost/assign/list_of.hpp: No such file or dir
ectory
 #include <boost/assign/list_of.hpp> // for 'map_list_of()'
                                                           ^
compilation terminated.
make: *** [obj/checkpoints.o] Error 1

Try this thread: https://bitcointalk.org/index.php?topic=149479.0
tomgie (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
January 11, 2015, 08:04:30 PM
 #3

Can anyone help me? I am getting this error when trying to build my client in windows.

$ make -f makefile.mingw
g++ -c -mthreads -O2 -w -Wall -Wextra -Wformat -Wformat-security -Wno-unused-par
ameter -g -DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -D
USE_IPV6 -D__NO_SYSTEM_INCLUDES -I"C:\deps\boost" -I"C:\deps\db\build_unix" -I"C
:\deps\ssl\include" -o obj/checkpoints.o checkpoints.cpp
checkpoints.cpp:6:59: fatal error: boost/assign/list_of.hpp: No such file or dir
ectory
 #include <boost/assign/list_of.hpp> // for 'map_list_of()'
                                                           ^
compilation terminated.
make: *** [obj/checkpoints.o] Error 1

Try this thread: https://bitcointalk.org/index.php?topic=149479.0

Thanks, I will try this and see how it goes down.
ncsupanda
Legendary
*
Offline Offline

Activity: 1628
Merit: 1012



View Profile
January 11, 2015, 08:07:59 PM
 #4

Can anyone help me? I am getting this error when trying to build my client in windows.

$ make -f makefile.mingw
g++ -c -mthreads -O2 -w -Wall -Wextra -Wformat -Wformat-security -Wno-unused-par
ameter -g -DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -D
USE_IPV6 -D__NO_SYSTEM_INCLUDES -I"C:\deps\boost" -I"C:\deps\db\build_unix" -I"C
:\deps\ssl\include" -o obj/checkpoints.o checkpoints.cpp
checkpoints.cpp:6:59: fatal error: boost/assign/list_of.hpp: No such file or dir
ectory
 #include <boost/assign/list_of.hpp> // for 'map_list_of()'
                                                           ^
compilation terminated.
make: *** [obj/checkpoints.o] Error 1

Try this thread: https://bitcointalk.org/index.php?topic=149479.0

Thanks, I will try this and see how it goes down.

Feel free to PM me if you're still stuck.
tomgie (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
January 12, 2015, 01:22:41 AM
 #5

I am getting this error when trying to do mingw32-make -f makefile.mingw in CMD

http://pastebin.com/0gxGEBM0
ncsupanda
Legendary
*
Offline Offline

Activity: 1628
Merit: 1012



View Profile
January 12, 2015, 01:35:58 AM
 #6

I am getting this error when trying to do mingw32-make -f makefile.mingw in CMD

http://pastebin.com/0gxGEBM0

It's a libboost error. On linux you would do: sudo apt-get install libboost-all-dev

For windows it's a bit more complicated, but I'm sure you've noticed this by now.
tomgie (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
January 12, 2015, 01:39:08 AM
 #7

I am getting this error when trying to do mingw32-make -f makefile.mingw in CMD

http://pastebin.com/0gxGEBM0

It's a libboost error. On linux you would do: sudo apt-get install libboost-all-dev

For windows it's a bit more complicated, but I'm sure you've noticed this by now.

Yep. Im on windows, do you know how to fix this or where to get some precompiled deps?
ncsupanda
Legendary
*
Offline Offline

Activity: 1628
Merit: 1012



View Profile
January 12, 2015, 01:41:44 AM
 #8

I am getting this error when trying to do mingw32-make -f makefile.mingw in CMD

http://pastebin.com/0gxGEBM0

It's a libboost error. On linux you would do: sudo apt-get install libboost-all-dev

For windows it's a bit more complicated, but I'm sure you've noticed this by now.

Yep. Im on windows, do you know how to fix this or where to get some precompiled deps?

The link I posted before has a really good guide for compiling the required dependencies.
tomgie (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
January 12, 2015, 01:47:56 AM
 #9

I am getting this error when trying to do mingw32-make -f makefile.mingw in CMD

http://pastebin.com/0gxGEBM0

It's a libboost error. On linux you would do: sudo apt-get install libboost-all-dev

For windows it's a bit more complicated, but I'm sure you've noticed this by now.

Yep. Im on windows, do you know how to fix this or where to get some precompiled deps?

The link I posted before has a really good guide for compiling the required dependencies.

I did use that link, it gave me that error.
ncsupanda
Legendary
*
Offline Offline

Activity: 1628
Merit: 1012



View Profile
January 12, 2015, 01:53:01 AM
 #10

I am getting this error when trying to do mingw32-make -f makefile.mingw in CMD

http://pastebin.com/0gxGEBM0

It's a libboost error. On linux you would do: sudo apt-get install libboost-all-dev

For windows it's a bit more complicated, but I'm sure you've noticed this by now.

Yep. Im on windows, do you know how to fix this or where to get some precompiled deps?

The link I posted before has a really good guide for compiling the required dependencies.

I did use that link, it gave me that error.

Are you compiling for Bitcoin or for an altcoin? I'm assuming altcoin.
tomgie (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
January 12, 2015, 01:54:57 AM
 #11

I am getting this error when trying to do mingw32-make -f makefile.mingw in CMD

http://pastebin.com/0gxGEBM0

It's a libboost error. On linux you would do: sudo apt-get install libboost-all-dev

For windows it's a bit more complicated, but I'm sure you've noticed this by now.

Yep. Im on windows, do you know how to fix this or where to get some precompiled deps?

The link I posted before has a really good guide for compiling the required dependencies.

I did use that link, it gave me that error.

Are you compiling for Bitcoin or for an altcoin? I'm assuming altcoin.

Yes I am compiling my own coin, it works on linux so I don't think its the coin, its a scrypt coin.
ncsupanda
Legendary
*
Offline Offline

Activity: 1628
Merit: 1012



View Profile
January 12, 2015, 02:00:35 AM
 #12

Depending on which coin your coin is based on it may use a different version of the specific dependencies. If you copy me onto your project, I'll be willing to help.

You should lock this thread and we can stick to PMing.
tomgie (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
January 12, 2015, 02:14:44 AM
 #13

Depending on which coin your coin is based on it may use a different version of the specific dependencies. If you copy me onto your project, I'll be willing to help.

You should lock this thread and we can stick to PMing.

Got it PMing you now
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!