Hi,

CMake's cross compilation features are unfortunately a bit limited. To
work around this you have to create an executable
"expand_instantiations" separately by doing for example the following in
the source directory:

  $ mkdir build-executable
  $ cd build-executable
  $ cmake ..
  $ make expand_instantiations_exe

After that export the executable to your path:

  $ export PATH="$PWD/bin:$PATH"

when you now run "expand_instantiations" in your command prompt you
should get a help message:

  $ expand_instantiations
  Usage:
    expand_instantiations class_list_files < in_file > out_file

If all that works out switch to the actual build directory (in the same
terminal) and compile.

This should take care of the following error:

  > /bin/sh: expand_instantiations: command not found
  > make[2]: *** 

Best,
Matthias



-- 
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see 
https://groups.google.com/d/forum/dealii?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dealii+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dealii/87364di3m5.fsf%4043-1.org.

Reply via email to