Re: [OpenIndiana-discuss] Strange (?) error

2022-07-12 Thread Andreas Wacknitz
The problem has been solved by erwinlem: https://github.com/OpenIndiana/oi-userland/pull/8605 Am 01.06.22 um 17:09 schrieb Aurélien Larcher: Your problem is that boost is compiler as 32 and 64 bits and your program expects to find 64-bit versions where we install the 32-bit. You should pass an

Re: [OpenIndiana-discuss] Strange (?) error

2022-06-01 Thread Aurélien Larcher
Your problem is that boost is compiler as 32 and 64 bits and your program expects to find 64-bit versions where we install the 32-bit. You should pass an environment variable to indicate where the cmake files for the 64-bit version live: /usr/lib/amd64. It is a similar recipe as for PKG_CONFIG_PATH

Re: [OpenIndiana-discuss] Strange (?) error

2022-05-31 Thread Till Wegmueller
Hey Apostolos Here are the Compile options in boost that we set [0] Do you need additional ones? [0] https://github.com/OpenIndiana/oi-userland/blob/oi/hipster/components/library/boost/Makefile#L47-L72 Greetings Till On 31/05/2022 14.20, Apostolos Syropoulos via openindiana-discuss wrote:

Re: [OpenIndiana-discuss] Strange (?) error

2022-05-31 Thread Apostolos Syropoulos via openindiana-discuss
The maintainer of apgnasm answered as follows to the same question: I'm afraid I can't offer much help with non-Linux OS's, but this right here: but it set boost_program_options_FOUND to FALSE so package "boost_program_options" is considered to be NOT FOUND Indicates to me that what's being fou

Re: [OpenIndiana-discuss] Strange (?) error

2022-05-29 Thread Apostolos Syropoulos via openindiana-discuss
>Did you try compiling the package with GCC 7 instead of GCC 10.3 ? No this is not the problem: aposyro@adalind>> cmake .. -- The C compiler identification is GNU 7.5.0 -- The CXX compiler identification is GNU 7.5.0 -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Chec

Re: [OpenIndiana-discuss] Strange (?) error

2022-05-29 Thread s...@pandora.be
Apostolos, Alternatively you could try to rebuild boost from https://github.com/OpenIndiana/oi-userland/tree/oi/hipster/components/library/boost and set GCC_VERSION to something like 10.3 or 11 include ../../../make-rules/shared-macros.mk GCC_VERSION=11 in the boost Makefile I d

Re: [OpenIndiana-discuss] Strange (?) error

2022-05-29 Thread s...@pandora.be
Hi Apostolos, This is just an idea, maybe you already tried it, but it seems you are using GNU CC/CXX 10.3.0. While if I look at boost: depend fmri=pkg:/system/library/g++-7-runtime@7.5.0-2020.0.1.9 type=require depend fmri=pkg:/system/library/gcc-7-runtime@7.5.0-2020.0.1.9 type=require boost

[OpenIndiana-discuss] Strange (?) error

2022-05-29 Thread Apostolos Syropoulos via openindiana-discuss
Hello, I am trying to compile a 64bit binary of the following project https://github.com/apngasm/apngasm However, when the configuration process complains that there is something wrong with BOOST: aposyro@adalind>> cmake .. -- The C compiler identification is GNU 10.3.0 -- The CXX compiler identi

[OpenIndiana-discuss] strange error

2011-06-26 Thread Apostolos Syropoulos
 Hello,  Today someone posted a message to the gcc-help mailing list. He complained because he could not use Unicode characters in a C++ program. He posted a program and some list members suggested a modification. The modified program follows: #include #include #include using namespace std;