From d66117e306500a5b5692c805df97128443788da3 Mon Sep 17 00:00:00 2001 From: rschulz Date: Mon, 20 Dec 2004 08:15:18 +0000 Subject: [PATCH] no message git-svn-id: https://svn.dealii.org/trunk@9856 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/faq.html | 27 +++++++++++++++++++++++++++ deal.II/doc/news/5.0.0-vs-5.1.0.html | 8 ++++++++ 2 files changed, 35 insertions(+) diff --git a/deal.II/doc/faq.html b/deal.II/doc/faq.html index dde578f888..20eb509d8e 100644 --- a/deal.II/doc/faq.html +++ b/deal.II/doc/faq.html @@ -34,6 +34,9 @@
  • Does deal.II support parallel computing?
  • I can't build the online documentation under Cygwin! +
  • My program compiles and links under Cygwin, but + it issues a run-time error saying that libXXX.DLL cannot + be found!
  • Can I use/implement triangles/tetrahedra in deal.II?
  • Can I solve problem XXX with @@ -233,6 +236,30 @@ patch to the source code of the perl utility and recompile.

    +
    +

    My program compiles and links under Cygwin, but it issues a + run-time error saying that libXXX.DLL cannot + be found!

    + +

    + With Version 5.1.0, deal.II creates and uses shared + libraries (DLLs) under cygwin. These DLLs will be linked to your program + at run-time, which requires Windows to know where the DLLs are stored. + Windows looks for DLLs in the execution path of your program, in the + Windows system directories, and in every directory specified in the + PATH environment variable. To do this, type +

    + +

    + export PATH=$PATH:/usr/local/lib/deal.II/lib +

    + +

    + in the shell prior to execution, or add this line to .bashrc. + To disable shared libraries, change enable-shared in + common/Make.global_options to no and link + deal.II again (with make all). +

    diff --git a/deal.II/doc/news/5.0.0-vs-5.1.0.html b/deal.II/doc/news/5.0.0-vs-5.1.0.html index ca0fbbf47c..9f8d1fb3fc 100644 --- a/deal.II/doc/news/5.0.0-vs-5.1.0.html +++ b/deal.II/doc/news/5.0.0-vs-5.1.0.html @@ -73,6 +73,14 @@ inconvenience this causes.

    General

      +
    1. + New: Support of shared libraries under Cygwin / Windows systems. Shared + libraries are used as default. To use, make sure the library path is included + in your PATH environment variable. +
      + (Ralf B. Schulz, 2004/12/20) +

      +
    2. Fixed: Examples do not use obsolete classes QGaussN anymore. -- 2.39.5