Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

While installing these commands may be helpful:

Code Block

../babel/configure --prefix=/Users/shamsimam/softwares --enable-maintainer-mode --enable-python LDFLAGS=-L/Users/shamsimam/softwares/lib JAVAPREFIX=/System/Library/Frameworks/JavaVM.framework/Home JNI_INCLUDES=/System/Library/Frameworks/JavaVM.framework/Home/include

...


make -j4

...


sudo make install

...


make check

make check is optional and may take a long while to complete.

2. After installing babel run the following command:

Code Block
babel-config --dump | grep SUPPORT

you should get output as follows:

Code Block

SUPPORT_FORTRAN77="false"

...


SUPPORT_CXX="true"

...


SUPPORT_JAVA="true"

...


SUPPORT_PYTHON="true"

...


SUPPORT_FORTRAN90="false"

...


SUPPORT_FORTRAN03="false"

...


SUPPORT_STATIC="true"

...


SUPPORT_SHARED="true"

...


BABEL_SUPPORTED_LANGUAGES="c cxx f77 f90 f03 java python"

ensure that Java and Python are supported.

...