bugMIT/GNU Scheme - Bugs: bug #61153, Cannot build or install 11.2 on...

 
 

bug #61153: Cannot build or install 11.2 on Mac OS 11.5.2 (Big Sur)

Submitter:  None
Submitted:  Mon 13 Sep 2021 06:39:22 PM UTC
   
 
Category:  None Severity:  3 - Normal
Priority:  5 - Normal Item Group:  None
Status:  Fixed Privacy:  Public
Assigned to:  None Originator Name:  Michael Winterstein
Originator Email:  -email is unavailable- Open/Closed:  Closed
Keywords: 
* Mandatory Fields

Add a New Comment Rich Markup
   

Jump to the original submission

Mon 19 Dec 2022 11:00:23 PM UTC, comment #6: 

Thanks for reporting and testing!

Taylor R. Campbell <riastradh>
Group Member
Mon 19 Dec 2022 10:51:20 PM UTC, comment #5: 

Already changed vfork to fork there a year ago in master: https://git.savannah.gnu.org/cgit/mit-scheme.git/commit/src/microcode/macosx-starter.c?id=013fad016413e582d769e5d1b7e6bd15006554c4

Closing because this will be in the 12.0 release coming soon.

Taylor R. Campbell <riastradh>
Group Member
Mon 19 Dec 2022 08:18:08 PM UTC, comment #4: 

It took me a while to get back to this, since I was running v10 just fine and forgot about trying to upgrade. But I can confirm that it does work; I was able to use the patch and have installed v11 successfully.

There is one caveat, however. I have since updated to MacOS Monterey. Using the installed code as written, make failed. Fortunately, it was easy to to fix.

As of this OS, Apple has deprecated 'vfork', and suggests replacing it with simple 'fork' (or 'posix_spawn'). I changed line 58 in /src/microcode/macos-starter.c from

 pid = (vfork ());

to

 pid = (fork ());

and it compiled fine from there. I could possibly open another bug report on this issue if it's needed.

Anonymous
Fri 10 Jun 2022 03:16:31 PM UTC, comment #3: 

This was fixed in the master branch back in December, but I didn't think to pull it up to the release-11 branch until now.  Can you try again, with the patch in https://git.savannah.gnu.org/cgit/mit-scheme.git/commit/?h=release-11&id=6cbeeb17862a16feb7df6c2610cb1174de2f8e58 applied on top of the 11.2 release tarball?

cd mit-scheme-11.2
curl -fsSL https://git.savannah.gnu.org/cgit/mit-scheme.git/patch/?id=6cbeeb17862a16feb7df6c2610cb1174de2f8e58 | patch -p1

Taylor R. Campbell <riastradh>
Group Member
Wed 22 Sep 2021 07:50:33 PM UTC, comment #2: 

Same problem with mit-scheme-11.2-svm1-64le.tar.gz (gpg verified) on MacOS Big Sur 11.6 (with\XCode tools up to date and XQuartz installed), a ./configure that creates a Makefile, and make gives:

gcc -DHAVE_CONFIG_H -DMIT_SCHEME -DDEFAULT_LIBRARY_PATH=\"/usr/local/lib/mit-scheme-svm1-64le-11.2\" -I. -I. -O3  -frounding-math -fno-builtin-floor -Wall -Wempty-body -Wignored-qualifiers -Wimplicit-fallthrough -Wmissing-field-initializers -Wnested-externs -Woverride-init -Wpointer-arith -Wredundant-decls -Wshift-negative-value -Wstrict-prototypes -Wtype-limits -Wundef -Wuninitialized -Wwrite-strings  -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -fconstant-cfstrings -DSIGNAL_HANDLERS_CAN_USE_SCHEME_STACK -D_REENTRANT -Werror -o uxsig.o -c uxsig.c
uxsig.c:1197:25: error: cast to smaller integer type 'outf_channel' from 'FILE ' (aka 'struct __sFILE ') [-Werror,-Wpointer-to-enum-cast]
      debug_back_trace ((outf_channel) to_dump);
                        ^~~~~~~~~~~~~~~~~~~~~~
1 error generated.
make[1]: * [uxsig.o] Error 1
make: * [microcode/scheme] Error 2

Patrick Cousot <cousot>
Sun 19 Sep 2021 07:54:30 PM UTC, comment #1: 

As an update, I tried to see if I could compile MIT Scheme 11.1 from version 10, since 9 seems a bit far behind. The binaries for 10.11 (x86) installed just fine. Using 10.11 as a base, compiling 11.1 from source got farther, but ended up running into the same error during make (in uxsig.c) that the binary version of 11.2 had for me.

I did notice that the make step in the binary of 10.11 actually encounters the same or similar problem, but it seems the compiler is configured to suppress it as a warning. I don't know enough about gcc to know which of these flags would work.  Here's the relevant output (compare to the previously attached output for version 11):


gcc -DHAVE_CONFIG_H -DMIT_SCHEME -DDEFAULT_LIBRARY_PATH=\"/opt/local/mit-scheme/v10/lib/mit-scheme-x86-64\" -I. -I. -Wold-style-definition -Wextra -Wno-sign-compare -Wno-unused-parameter -Wstrict-prototypes -Wnested-externs -Wredundant-decls -Wall -Wundef -Wpointer-arith -Winline -O3  -arch x86_64  -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -fconstant-cfstrings -DSIGNAL_HANDLERS_CAN_USE_SCHEME_STACK -D_REENTRANT -o uxsig.o -c uxsig.c
uxsig.c:1206:25: warning: cast to smaller integer type 'outf_channel' from 'FILE *' (aka 'struct __sFILE *') [-Wpointer-to-enum-cast]
      debug_back_trace ((outf_channel) to_dump);


Anonymous
Mon 13 Sep 2021 06:39:22 PM UTC, original submission:  

I have tried installing MIT Scheme 11.2 from binary (x86 on an Intel Mac) but make fails with a problem in uxsig.c (see attached file). I tried configure both with some options set and without, and the error in make occurs both times.

Since MacPorts has 9.2 as a package, I installed that and it works fine. I then tried to compile MIT Scheme 11.2 from source, both with and without --enable-cross-compiling explicitly set in the configure step. This leads to an error in the make stage as well, with "bytes-per-object" and the file bytevector.scm. More details are in the attached file.


Anonymous

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

Attach Files:
   
   
Comment:
   

Attached Files
file #51905:  schemeerrors.txt added by None (4KiB - text/plain - Error messages and system info)

 

Depends on the following items: None found

Items that depend on this one: None found

 

Carbon-Copy List
  • -email is unavailable- added by riastradh (Posted a comment)
  • -email is unavailable- added by cousot (Posted a comment)
  •  

    There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

    Only logged-in users can vote.

     

    Follow 4 latest changes.

    Date Changed by Updated Field Previous Value => Replaced by
    2022-12-19 riastradh StatusReady For Test Fixed
        Open/ClosedOpen Closed
    2022-06-10 riastradh StatusNone Ready For Test
    2021-09-13 None Attached File- Added schemeerrors.txt, #51905

    Back to the top

    Powered by Savane 3.13-f8d8.
    Corresponding source code