From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.1 required=5.0 tests=DKIM_ADSP_CUSTOM_MED, DKIM_INVALID,DKIM_SIGNED,FREEMAIL_FROM,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 881 invoked from network); 12 May 2020 21:03:29 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 12 May 2020 21:03:29 -0000 Received: (qmail 7754 invoked by uid 550); 12 May 2020 21:03:25 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 5591 invoked from network); 12 May 2020 20:57:16 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=6ABRtRMkH79nfqBD3C2BvNqVsGVy6l6s+2q9VLLJBzQ=; b=PIa5H84N2Uip+4LZnK8LC6N5n3xdBN8vYNxe/jAoJfGbtFyOWSOiZ9HqzwCAN/9aCk LckYhfg7JZ/QQlsEab9kUGNOTdSGoYMxmtvKjQRTuTMA2NsX4zpX84jLKhG9h/ESUvdY F9shr9vLyX/ryiakIlyLKv6F23Z7FAD7f6gmVT1o9EwycIzXBk20PXmHGph6JsBfagh1 iHK3tCV3R3p6Y3Is+NeyDcmOLkTcHY3iVrKv7ZVY0Vc54bRscsuNcQ8Bsp5qZkC2PxeF q1lYhIfBeTkAUZrRh2VFKfp3EQ1mziOrdQHkrae3oHYlbhf80pUxyJM1QADJOZedTzr6 4XXg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=6ABRtRMkH79nfqBD3C2BvNqVsGVy6l6s+2q9VLLJBzQ=; b=eyHdz94B3xfEFAzrPbCAfNeqrDdWfNRrQZn+I8eMiNQUUy5VXEn0UPE7UfACmgecXD RPuF7ExGHILARrRYyfdikbW5qRGTJ5stB8R1fcRZNhbZAUslZEKAn5tMYQsKH/goVloy LQ/mo9uVK7V6BIrlfIgvbCpA9w95zuFc7fvpBD8ozFzdypVRVhjv9RO66c1R0OZhPe8N KD7EzNLxaaPRz76D82XWTeVXoY/JCTxasUktF1jsqvtOEUCdA9FtXdxutoYcJYzRH0b0 GH3CLoZOwOEtrvrHz0VdXRNRQ1Erefa92lrMm2V2Oe5ZJQnOeaQ6HNkkSEwOG2UP0QJi GxKw== X-Gm-Message-State: AGi0PuZ5LruZ3t6jcgunrHZC5kePsNDBEGpI0suWtf5uCgBy1DMltqEC N9fD1Zd7NOhlNuRkUgE5PB/OR7LbXe5ooX3LWfzr+YM2 X-Google-Smtp-Source: APiQypIXVo7KXamkeAbOdsUerbmdEcfUkwIFjqp9AI6LkJRJVEUyAJqXBn25DHtcHtGuqxmnp7BG4nVrVYCP2RL5jso= X-Received: by 2002:a92:d4d0:: with SMTP id o16mr13615507ilm.91.1589317024120; Tue, 12 May 2020 13:57:04 -0700 (PDT) MIME-Version: 1.0 From: John Arnold Date: Tue, 12 May 2020 15:59:36 -0500 Message-ID: To: musl@lists.openwall.com Content-Type: text/plain; charset="UTF-8" Subject: [musl] PCC unable to build musl 1.2.0 (and likely earlier) With an i386 PCC 1.2.0.DEVEL built from source from http://pcc.ludd.ltu.se/ftp/pub/pcc/pcc-20200510.tgz, I was unable to build an i386 musl 1.2.0. The compiler first hits this error: ./include/limits.h:10: error: bad charcon This line was the only change made in commit cdbbcfb8f5d, but it has a lengthy commit message about the proper way of determining CHAR_MIN and CHAR_MAX. Reverting that change fixes the issue with limits.h, but PCC then runs into another problem: src/complex/catan.c, line 105: operands of = have incompatible types src/complex/catan.c, line 105: cannot recover from earlier errors: goodbye! catan.c only has one change that could possibly be relevant: 10e4bd3780050e75b72, which fixed a hack labeled FIXME. Undoing this change results in hitting yet more errors: /tmp/ctm.AkDmnc: Assembler messages: /tmp/ctm.AkDmnc:50: Error: bad register name `%%ax' Which are beyond my ability to debug on my own. Happy to help with the hunt though. I'm not on the musl mailing list, but please CC me on the replies to this. -- John