Changes between Version 2 and Version 3 of Ticket #60624, comment 5


Ignore:
Timestamp:
Jun 12, 2020, 2:17:41 PM (4 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #60624, comment 5

    v2 v3  
    1 {{{
    21I did the change that you wanted. I added "PortGroup legacysupport 1.0" right below the "PortSystem" text.
    32This did appear to eliminate the posix_memalign problem.
     
    76
    87The current problem I have are these errors:
     8{{{
    99info:build Source/OpenEXR/IlmImf/ImfSystemSpecific.cpp: In constructor 'Imf_2_2::CpuId::CpuId()':
    1010:info:build Source/OpenEXR/IlmImf/ImfSystemSpecific.cpp:51: error: can't find a register in class 'BREG' while reloading 'asm'
     
    1212:info:build Source/OpenEXR/IlmImf/ImfSystemSpecific.cpp:51: error: 'asm' operand has impossible constraints
    1313:info:build Source/OpenEXR/IlmImf/ImfSystemSpecific.cpp:51: error: 'asm' operand has impossible constraints
     14}}}
    1415
    1516This is the code that causes the error:
     17{{{
    1618#if defined(IMF_HAVE_SSE2) &&  defined(__GNUC__)
    1719
     
    2527            : /* Clobber */);
    2628    }
     29}}}
    2730
    2831My x86 assembly language is kind of rusty. Anyone have a clue how to fix this problem?
    29 }}}