Skip to content

Commit

Permalink
[ fix ] thunking the proc
Browse files Browse the repository at this point in the history
  • Loading branch information
gallais committed Feb 5, 2025
1 parent b3c40da commit df1f54a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Compiler/Scheme/Chez.idr
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ schHeader chez libs whole
[(i3fb ti3fb a6fb ta6fb) #f]
[(i3le ti3le a6le ta6le tarm64le)
(with-exception-handler (lambda(x) (load-shared-object "libc.so"))
(load-shared-object "libc.so.6"))]
(lambda () (load-shared-object "libc.so.6")))]
[(i3osx ti3osx a6osx ta6osx tarm64osx tppc32osx tppc64osx) (load-shared-object "libc.dylib")]
[(i3nt ti3nt a6nt ta6nt) (load-shared-object "msvcrt.dll")]
[else (load-shared-object "libc.so")])
Expand Down

0 comments on commit df1f54a

Please sign in to comment.