Custom Query (122 matches)
Results (61 - 63 of 122)
Ticket
|
Resolution
|
Summary
|
Owner
|
Reporter
|
#98 |
fixed
|
change --with-pic default to yes
|
stefan
|
stefan
|
Description |
Andreas requests to build PIC code also for static libraries, i.e., to change the default for configure's --with-pic option to yes.
It may be sufficient to add a LT_INIT(pic-only) before AC_PROG_LIBTOOL in the AC_COIN_PROG_LIBTOOL macro, see http://www.gnu.org/software/libtool/manual/html_node/LT_005fINIT.html.
|
#105 |
fixed
|
shared libraries do not properly list dependencies
|
stefan
|
mlubin
|
Description |
Previous discussions:
http://list.coin-or.org/pipermail/coin-discuss/2008-October/003480.html
http://list.coin-or.org/pipermail/ipopt/2009-May/001531.html
http://list.coin-or.org/pipermail/clp/2012-June/001265.html
Also open as ipopt ticket 115, but this is a more appropriate place.
This affects loading coin libraries from dynamic languages and packaging coin projects for Fedora and Debian.
|
#107 |
fixed
|
Need dense linear solver in ThirdPary/Lapack
|
andreasw
|
ghackebeil
|
Description |
The necessary source files are dppsv.f, dpptrf.f, dpptrs.f. Here is a patch (before running autotools):
-
|
|
|
125 | 125 | dpotf2.f \ |
126 | 126 | dpotrf.f \ |
127 | 127 | dpotrs.f \ |
| 128 | dppsv.f \ |
| 129 | dpptrf.f \ |
| 130 | dpptrs.f \ |
128 | 131 | dstebz.f \ |
129 | 132 | dstein.f \ |
130 | 133 | dstemr.f \ |
-
|
|
|
101 | 101 | ############################################################################# |
102 | 102 | |
103 | 103 | lapack_source_files='dbdsqr.f dgebal.f dgebak.f dgebd2.f dgebrd.f dgeev.f dgehd2.f dgehrd.f dgelq2.f dgelqf.f dgels.f dgeqr2.f dgeqrf.f dgesvd.f dgesv.f dgetf2.f dgetrf.f dgetri.f dgetrs.f dggbak.f dggbal.f dgghrd.f dggev.f dhgeqz.f dhseqr.f disnan.f dlabad.f dlabrd.f dlacpy.f dladiv.f dlaebz.f dlae2.f dlaev2.f dlaexc.f dlagtf.f dlagts.f dlag2.f dlahqr.f dlahr2.f dlaisnan.f dlaln2.f dlaneg.f dlange.f dlanhs.f dlanst.f dlansy.f dlanv2.f dlapy2.f dlapy3.f dlaqr0.f dlaqr1.f dlaqr2.f dlaqr3.f dlaqr4.f dlaqr5.f dlarf.f dlarfb.f dlarfg.f |
104 | | dlarft.f dlarfx.f dlarnv.f dlarra.f dlarrb.f dlarrc.f dlarrd.f dlarre.f dlarrf.f dlarrj.f dlarrk.f dlarrr.f dlarrv.f dlartg.f dlartv.f dlaruv.f dlar1v.f dlas2.f dlascl.f dlaset.f dlasq1.f dlasq2.f dlasq3.f dlasq4.f dlasq5.f dlasq6.f dlasr.f dlasrt.f dlaswp.f dlassq.f dlasv2.f dlasyf.f dlasy2.f dlatrd.f dorg2l.f dorg2r.f dorgbr.f dorghr.f dorglq.f dorgl2.f dorgql.f dorgqr.f dorgtr.f dorm2r.f dormbr.f dormhr.f dorml2.f dormlq.f dormql.f dormqr.f dormtr.f dorm2l.f dpotf2.f dpotrf.f dpotrs.f dstebz.f dstein.f dstemr.f dsteqr.f dsterf.f dsyev.f dsyevr.f dsyevx.f dsytd2.f dsytf2.f dsytrd.f dsytrf.f dsytri.f dtgevc.f dtrevc.f dtrexc.f dtrti2.f dtrtri.f dtrtrs.f ieeeck.f iladlc.f iladlr.f ilaenv.f iparmq.f sgetf2.f sgetrf.f slaswp.f zgetf2.f zgetrf.f zlacgv.f zlacpy.f zlaev2.f zlaswp.f zpotf2.f zrot.f zsymv.f zsyr.f zsytri.f' |
| 104 | dlarft.f dlarfx.f dlarnv.f dlarra.f dlarrb.f dlarrc.f dlarrd.f dlarre.f dlarrf.f dlarrj.f dlarrk.f dlarrr.f dlarrv.f dlartg.f dlartv.f dlaruv.f dlar1v.f dlas2.f dlascl.f dlaset.f dlasq1.f dlasq2.f dlasq3.f dlasq4.f dlasq5.f dlasq6.f dlasr.f dlasrt.f dlaswp.f dlassq.f dlasv2.f dlasyf.f dlasy2.f dlatrd.f dorg2l.f dorg2r.f dorgbr.f dorghr.f dorglq.f dorgl2.f dorgql.f dorgqr.f dorgtr.f dorm2r.f dormbr.f dormhr.f dorml2.f dormlq.f dormql.f dormqr.f dormtr.f dorm2l.f dpotf2.f dpotrf.f dpotrs.f dppsv.f dpptrf.f dpptrs.f dstebz.f dstein.f dstemr.f dsteqr.f dsterf.f dsyev.f dsyevr.f dsyevx.f dsytd2.f dsytf2.f dsytrd.f dsytrf.f dsytri.f dtgevc.f dtrevc.f dtrexc.f dtrti2.f dtrtri.f dtrtrs.f ieeeck.f iladlc.f iladlr.f ilaenv.f iparmq.f sgetf2.f sgetrf.f slaswp.f zgetf2.f zgetrf.f zlacgv.f zlacpy.f zlaev2.f zlaswp.f zpotf2.f zrot.f zsymv.f zsyr.f zsytri.f' |
105 | 105 | for file in $lapack_source_files; do |
106 | 106 | AC_CONFIG_LINKS($file:LAPACK/SRC/$file) |
107 | 107 | done |
|
Note: See
TracQuery
for help on using queries.