Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Johannes Pfeifer
dynare
Commits
c8e59f13
Commit
c8e59f13
authored
Mar 29, 2013
by
Sébastien Villemot
Browse files
Do not put -lumfpack in LIBS, rather use a special variable for it
parent
513ae741
Changes
2
Show whitespace changes
Inline
Side-by-side
mex/build/octave/bytecode/Makefile.am
View file @
c8e59f13
...
...
@@ -2,4 +2,4 @@ EXEEXT = .mex
include
../mex.am
include
../../bytecode.am
bytecode_LDADD
=
-lumfpack
bytecode_LDADD
=
$(LIBADD_UMFPACK)
mex/build/octave/configure.ac
View file @
c8e59f13
...
...
@@ -70,7 +70,8 @@ AX_SLICOT([octave])
AM_CONDITIONAL([HAVE_SLICOT], [test "x$has_slicot" = "xyes"])
# Check for UMFPACK, needed by bytecode
AC_CHECK_LIB([umfpack], [umfpack_dl_defaults], [], [AC_MSG_ERROR([Can't find UMFPACK])])
AC_CHECK_LIB([umfpack], [umfpack_dl_defaults], [LIBADD_UMFPACK="-lumfpack"], [AC_MSG_ERROR([Can't find UMFPACK])])
AC_SUBST([LIBADD_UMFPACK])
AM_CONDITIONAL([DO_SOMETHING], [test "x$MKOCTFILE" != "x"])
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment