Bug 265538 - lang/sbcl: missing sb-simd module
Summary: lang/sbcl: missing sb-simd module
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: amd64 Any
: --- Affects Only Me
Assignee: Kirill Ponomarev
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-07-31 17:39 UTC by lbfoo
Modified: 2023-02-13 08:42 UTC (History)
1 user (show)

See Also:
bugzilla: maintainer-feedback? (krion)


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description lbfoo 2022-07-31 17:39:38 UTC
(require :sb-simd) failed.

Caused by absence of sb-simd module when built from lang/sbcl port.
Comment 1 Kirill Ponomarev freebsd_committer freebsd_triage 2022-07-31 17:42:30 UTC
Can you elaborate on this issue? I can't parse it.
Comment 2 lbfoo 2022-07-31 18:17:32 UTC
(In reply to Kirill Ponomarev from comment #1)

according to sbcl release note of version 2.2.6, a new module named "sb-simd" came into sbcl source base. 

 new contrib: sb-simd, to provide a convenient interface for SIMD programming on x86-64. (Thanks to Marco Heisig and other sb-simd contributors) (http://www.sbcl.org/news.html#2.2.7)

i'm trying to load this sb-simd module on freebsd by (require :sb-simd) in the repl. But it failed. 

the Makefile in the lang/sbcl shows:

CONMODULES=     asdf sb-aclrepl sb-bsd-sockets sb-cltl2 sb-concurrency sb-cover \
                sb-executable sb-gmp sb-grovel sb-introspect sb-md5 sb-mpfr \
                sb-posix sb-queue sb-rotate-byte sb-rt sb-simple-streams \
                sb-sprof

CONMODULES may miss sb-simd?