Boost logo

Boost :

Subject: Re: [boost] Building 1.52.0 with g++ 4.7.2
From: Oliver Kowalke (oliver.kowalke_at_[hidden])
Date: 2013-02-01 17:09:27


2013/2/1 Richard Hadsell <hadsell_at_[hidden]>

> Performing configuration checks
>
> - x86 : no
> - power : no
> - arm : no
> - mips1 : no
> error: No best alternative for libs/context/build/asm_context_sources
>

boost.build was not able to deduce on which architecture it is running. I
assume it's x86 - then the question is why x86.cpp does not compile.
the file contains only compiler macros declared for x86, like:
#if !defined(i386) && !defined(__i386__) && !defined(__i386) \
    && !defined(__i486__) && !defined(__i586__) && !defined(__i686__) \
    && !defined(_M_IX86) && !defined(__X86__) && !defined(_X86_) \
    && !defined(__THW_INTEL__) && !defined(__I86__) && !defined(__INTEL__) \
    && !defined(__amd64__) && !defined(__x86_64__) && !defined(__amd64) \
    && !defined(__x86_64) && !defined(_M_X64)
#error "Not x86"
#endif
maybe I should remove instruction-set=core2 first


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk