Changes between Initial Version and Version 2 of Ticket #53662


Ignore:
Timestamp:
Feb 27, 2017, 2:00:08 PM (7 years ago)
Author:
mojca (Mojca Miklavec)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #53662

    • Property Status changed from new to assigned
    • Property Cc ryandesign mojca added
    • Property Summary changed from gcc48: Failed to build, command execution failed to gcc48: incompatible with isl 0.18
    • Property Keywords gcc48 removed
    • Property Version changed from 2.4.1 to
    • Property Owner set to MarcusCalhoun-Lopez
    • Property Port isl added
  • Ticket #53662 – Description

    initial v2  
    1 Have tried clean and uninstall to no avail.
     1An update of isl broke gcc48 on all OS versions (see #53617).
    22
    3 Hari:src Arekusu$ sudo port install gcc48
    4 
    5 --->  Computing dependencies for gcc48
    6 
    7 --->  Fetching archive for gcc48
    8 
    9 --->  Attempting to fetch gcc48-4.8.5_1.darwin_14.x86_64.tbz2 from https://packages.macports.org/gcc48
    10 
    11 --->  Attempting to fetch gcc48-4.8.5_1.darwin_14.x86_64.tbz2 from http://lil.fr.packages.macports.org/gcc48
    12 
    13 --->  Attempting to fetch gcc48-4.8.5_1.darwin_14.x86_64.tbz2 from http://mse.uk.packages.macports.org/sites/packages.macports.org/gcc48
    14 
    15 --->  Fetching distfiles for gcc48
    16 
    17 --->  Verifying checksums for gcc48
    18 
    19 --->  Extracting gcc48
    20 
    21 --->  Applying patches to gcc48
    22 
    23 --->  Configuring gcc48
    24 
    25 --->  Building gcc48
    26 
    27 Error: Failed to build gcc48: command execution failed
    28 
    29 Error: See /opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_release_tarballs_ports_lang_gcc48/gcc48/main.log for details.
    30 
     3Here's one part of the error from the [https://build.macports.org/builders/ports-10.12_x86_64-builder/builds/22072/steps/install-port/logs/stdio 10.12] buildbot:
     4{{{
     5In file included from /path/to/gcc48/work/gcc-4.8.5/gcc/graphite-optimize-isl.c:48:
     6/path/to/gcc48/work/gcc-4.8.5/gcc/graphite-poly.h:397:43: error: unknown type name 'isl_constraint'
     7extern void print_isl_constraint (FILE *, isl_constraint *);
     8                                          ^
     9/path/to/gcc48/work/gcc-4.8.5/gcc/graphite-poly.h:401:35: error: unknown type name 'isl_constraint'
     10extern void debug_isl_constraint (isl_constraint *);
     11                                  ^
     12/path/to/gcc48/work/gcc-4.8.5/gcc/graphite-optimize-isl.c:56:24: error: use of undeclared identifier 'isl_union_set_empty'; did you mean 'isl_union_map_empty'?
     13  isl_union_set *res = isl_union_set_empty (space);
     14                       ^~~~~~~~~~~~~~~~~~~
     15                       isl_union_map_empty
     16/opt/local/include/isl/union_map.h:27:27: note: 'isl_union_map_empty' declared here
     17__isl_give isl_union_map *isl_union_map_empty(__isl_take isl_space *dim);
     18                          ^
     19/path/to/gcc48/work/gcc-4.8.5/gcc/graphite-optimize-isl.c:56:18: error: cannot initialize a variable of type 'isl_union_set *' with an rvalue of type 'isl_union_map *'
     20  isl_union_set *res = isl_union_set_empty (space);
     21                 ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~
     22/path/to/gcc48/work/gcc-4.8.5/gcc/graphite-optimize-isl.c:144:7: error: unknown type name 'isl_constraint'
     23      isl_constraint *c;
     24      ^
     25/path/to/gcc48/work/gcc-4.8.5/gcc/graphite-optimize-isl.c:147:11: error: use of undeclared identifier 'isl_equality_alloc'
     26      c = isl_equality_alloc(isl_local_space_copy(LocalSpace));
     27          ^
     28/path/to/gcc48/work/gcc-4.8.5/gcc/graphite-optimize-isl.c:153:11: error: use of undeclared identifier 'isl_equality_alloc'
     29      c = isl_equality_alloc(isl_local_space_copy(LocalSpace));
     30          ^
     31/path/to/gcc48/work/gcc-4.8.5/gcc/graphite-optimize-isl.c:159:11: error: use of undeclared identifier 'isl_inequality_alloc'
     32      c = isl_inequality_alloc(isl_local_space_copy(LocalSpace));
     33          ^
     34/path/to/gcc48/work/gcc-4.8.5/gcc/graphite-optimize-isl.c:165:11: error: use of undeclared identifier 'isl_inequality_alloc'
     35      c = isl_inequality_alloc(isl_local_space_copy(LocalSpace));
     36          ^
     37/path/to/gcc48/work/gcc-4.8.5/gcc/graphite-optimize-isl.c:268:3: error: unknown type name 'isl_constraint'
     38  isl_constraint *c;
     39  ^
     40/path/to/gcc48/work/gcc-4.8.5/gcc/graphite-optimize-isl.c:287:11: error: use of undeclared identifier 'isl_equality_alloc'
     41      c = isl_equality_alloc(isl_local_space_copy(LocalSpace));
     42          ^
     43/path/to/gcc48/work/gcc-4.8.5/gcc/graphite-optimize-isl.c:311:7: error: use of undeclared identifier 'isl_inequality_alloc'
     44  c = isl_inequality_alloc(isl_local_space_copy(LocalSpace));
     45      ^
     46/path/to/gcc48/work/gcc-4.8.5/gcc/graphite-optimize-isl.c:317:7: error: use of undeclared identifier 'isl_inequality_alloc'
     47  c = isl_inequality_alloc(LocalSpace);
     48      ^
     49/path/to/gcc48/work/gcc-4.8.5/gcc/graphite-optimize-isl.c:432:7: error: use of undeclared identifier 'isl_union_set_from_set'; did you mean 'isl_union_map_from_map'?
     50                                                isl_union_set_from_set(domain));
     51                                                ^~~~~~~~~~~~~~~~~~~~~~
     52                                                isl_union_map_from_map
     53}}}