Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix handling of deprecated ?GELQS/?GEQRS in building the shared library #4874

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions exports/gensymbol
Original file line number Diff line number Diff line change
Expand Up @@ -880,10 +880,8 @@ lapackobjs2c="$lapackobjs2c
# clatrs3

lapackobjs2d="$lapackobjs2d
dgelqs
dgelst
dgeqp3rk
dgeqrs
dlaqp2rk
dlaqp3rk
dlarmm
Expand All @@ -897,10 +895,8 @@ lapackobjs2d="$lapackobjs2d
# dlaqz4

lapackobjs2z="$lapackobjs2z
zgelqs
zgelst
zgeqp3rk
zgeqrs
zlaqp2rk
zlaqp3rk
zlatrs3
Expand All @@ -918,6 +914,7 @@ lapack_extendedprecision_objs="
"

lapack_deprecated_objsc="
cgelqs cgeqrs
cgegs cggsvd
cgegv cggsvp
cgelsx clahrd
Expand All @@ -926,13 +923,16 @@ lapack_deprecated_objsc="
"

lapack_deprecated_objsd="
dgelqs dgeqrs
dgegs dgeqpf
dgegv dggsvd
dgelsx dggsvp
dlahrd
dlatzm dtzrqf"

lapack_deprecated_objss="
sgelqs
sgeqrs
sgelsx
sgegs
sgegv
Expand All @@ -945,6 +945,8 @@ lapack_deprecated_objss="
"

lapack_deprecated_objsz="
zgelqs
zgeqrs
zgegs
zgegv
zgelsx
Expand Down
Loading