Compiling on Sunos

I just started using boost libraries. For one of our projects, I want to compile Boost 1.39.0 on Sun OS using a solar compiler. However, if I compile it using the steps mentioned in http://www.boost.org/doc/libs/1_39_0/more/getting_started/unix-variants.html , not all compilations are fully compiled. Can someone provide resources that would be useful for compiling it on Sun os. Is there any separate set of instructions for compiling on Sun OS

+4
source share
1 answer

The SunOS compiler is known for not having the appropriate libraries and compilation. But we have at least one tester that uses the platform (see Sandia-sun tester ). And from what you see, there are many failures in the toolbox. Regarding its configuration, the key point is to use the standard STD lib, but use the STLport STD lib. As you can see from the Sandia-sun tester installation description (see Sandia-sun information ). What you can do is try and mirror this setting. First it would create a user-config.jam that has "use of the sun ..." in this setting. And when you build, you should build with something similar to: bjam sun-5.10 stdlib = sun-stlport address-model = 64.

+3
source

Source: https://habr.com/ru/post/1303691/


All Articles