Guest User

Untitled

a guest
Sep 1st, 2015
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.86 KB | None | 0 0
  1. $ g++ --version
  2. g++ (Ubuntu 4.8.1-2ubuntu1~12.04) 4.8.1
  3. Copyright (C) 2013 Free Software Foundation, Inc.
  4. This is free software; see the source for copying conditions.  There is NO
  5. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  6.  
  7. sohail@sohail-Inspiron-N5110:~/learning/gitfiles/bitbucket/c++$ ls
  8. a.out  hello_world.cpp  myfirst.cpp
  9. sohail@sohail-Inspiron-N5110:~/learning/gitfiles/bitbucket/c++$ rm a.out
  10. sohail@sohail-Inspiron-N5110:~/learning/gitfiles/bitbucket/c++$ ls
  11. hello_world.cpp  myfirst.cpp
  12. sohail@sohail-Inspiron-N5110:~/learning/gitfiles/bitbucket/c++$ g++ -std=c++11 hello_world.cpp
  13. sohail@sohail-Inspiron-N5110:~/learning/gitfiles/bitbucket/c++$ ./a.out
  14. Hello World!
  15. sohail@sohail-Inspiron-N5110:~/learning/gitfiles/bitbucket/c++$ cd ..
  16. sohail@sohail-Inspiron-N5110:~/learning/gitfiles/bitbucket$ cd python_files/fenics/
  17. sohail@sohail-Inspiron-N5110:~/learning/gitfiles/bitbucket/python_files/fenics$ cd 2d/
  18. sohail@sohail-Inspiron-N5110:~/learning/gitfiles/bitbucket/python_files/fenics/2d$ ls
  19. dof.py
  20. sohail@sohail-Inspiron-N5110:~/learning/gitfiles/bitbucket/python_files/fenics/2d$ python dof.py
  21. Calling DOLFIN just-in-time (JIT) compiler, this may take some time.
  22. In instant.recompile: The module did not compile with command 'make VERBOSE=1', see '/home/sohail/.instant/error/dolfin_compile_code_7d81444d5be087272ea3a6899f103f7bc49289a0/compile.log'
  23. Traceback (most recent call last):
  24.   File "dof.py", line 12, in <module>
  25.     f = Expression('sin(pi*x[0]*x[1]')
  26.   File "/usr/lib/python2.7/dist-packages/dolfin/functions/expression.py", line 602, in __new__
  27.     mpi_comm=mpi_comm)
  28.   File "/usr/lib/python2.7/dist-packages/dolfin/compilemodules/expressions.py", line 217, in compile_expressions
  29.     mpi_comm=mpi_comm)
  30.   File "/usr/lib/python2.7/dist-packages/dolfin/compilemodules/expressions.py", line 145, in compile_expression_code
  31.     mpi_comm=mpi_comm)
  32.   File "/usr/lib/python2.7/dist-packages/dolfin/compilemodules/jit.py", line 64, in mpi_jit
  33.     return local_jit(*args, **kwargs)
  34.   File "/usr/lib/python2.7/dist-packages/dolfin/compilemodules/compilemodule.py", line 458, in compile_extension_module
  35.     **instant_kwargs)
  36.   File "/usr/lib/python2.7/dist-packages/instant/build.py", line 563, in build_module
  37.     recompile(modulename, module_path, new_compilation_checksum, build_system)
  38.   File "/usr/lib/python2.7/dist-packages/instant/build.py", line 165, in recompile
  39.     instant_error(msg % (cmd, compile_log_filename_dest))
  40.   File "/usr/lib/python2.7/dist-packages/instant/output.py", line 85, in instant_error
  41.     raise RuntimeError(text)
  42. RuntimeError: In instant.recompile: The module did not compile with command 'make VERBOSE=1', see '/home/sohail/.instant/error/dolfin_compile_code_7d81444d5be087272ea3a6899f103f7bc49289a0/compile.log'
  43. sohail@sohail-Inspiron-N5110:~/learning/gitfiles/bitbucket/python_files/fenics/2d$
Advertisement
Add Comment
Please, Sign In to add comment