Changes between Initial Version and Version 1 of Ticket #64353, comment 28


Ignore:
Timestamp:
Jan 10, 2022, 4:51:38 AM (2 years ago)
Author:
mouse07410 (Mouse)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #64353, comment 28

    initial v1  
    2020
    2121Thanks!
     22
     23**Update**
     24I added the following at the end of {{{macports.conf}}} file:
     25{{{
     26# Compilers that Macports will try to use to build ports from source
     27default_compilers clang macports-clang-13 macports-gcc-11 macports-clang-11
     28}}}
     29It reflects what I have already installed. Concern:
     30{{{
     31$ port deps opencv3 +openmp
     32Full Name: opencv3 @3.4.16_1+openmp
     33Build Dependencies:   cmake, pkgconfig
     34Library Dependencies: ffmpeg, zlib, bzip2, libpng, libjpeg-turbo, openjpeg, tiff, webp, ilmbase, openexr
     35$
     36}}}
     37does not show Build dependency on clang at all - it seems to want macports-clang-12 exactly, and doesn't care what default I set? Note: when I add {{{macports-clang-12}}} to that line, the output of {{{port deps}}} does not change (clang does not appear there).
     38
     39Commenting the {{{default_compilers}}} line out restores correct reporting:
     40{{{
     41$ port deps opencv3 +openmp
     42Full Name: opencv3 @3.4.16_1+openmp
     43Build Dependencies:   cmake, pkgconfig, clang-12
     44Library Dependencies: ffmpeg, zlib, bzip2, libpng, libjpeg-turbo, openjpeg, tiff, webp, ilmbase, openexr,
     45                      libomp
     46$
     47}}}