compiler could not find include *.h file

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • zqiang320

    compiler could not find include *.h file

    Hello:
    when I execute
    $ make
    Making all in libsbml/src
    make[1]: Entering directory `/home/internet/mydoc/test_pj/libsbml/src'
    .........
    -I. -Isundials/include -Ilibsbml/include -g -O2 -MT main.o -MD -MP -
    MF .deps/main.Tpo -c -o main.o main.c
    In file included from sundials/include/sundials/sundials_nvecto r.h:50,
    from sundials/include/cvodes/cvodes.h:41,
    from main.c:52:
    sundials/include/sundials/sundials_types. h:50:38: error: sundials/
    sundials_config .h: No such file or directory
    In file included from sundials/include/cvodes/cvodes.h:41,
    from main.c:52:


    sundials/sundials_config .h was in directory in sundials/include, why
    compiler could not find it by
    AM_CPPFLAGS = -Isundials/include

    what should I do?

    my configure.in :

    AC_INIT(main, 0.1, zqiang320@gmail .com)
    AM_INIT_AUTOMAK E(foreign)
    AC_PROG_CC
    AC_PROG_CXX
    AM_PROG_LIBTOOL
    AC_OUTPUT(Makef ile libsbml/src/Makefile)

    Makefile.am :

    bin_PROGRAMS = main
    SUBDIRS = libsbml/src .
    main_SOURCES = main.c
    main_LDADD = sundials/src/cvodes/libsundials_cvo des.la sundials/src/
    nvec_ser/libsundials_nve cserial.la ./libsbml/src/libsbml.la -lm
    AM_CPPFLAGS = -Isundials/include -Ilibsbml/include
  • Ian Collins

    #2
    Re: compiler could not find include *.h file

    zqiang320 wrote:
    >
    what should I do?
    >
    Again, this looks like a platform/tool problem, not a C language one.
    Try another group.

    --
    Ian Collins.

    Comment

    • William Pursell

      #3
      Re: compiler could not find include *.h file

      On 27 Sep, 04:11, zqiang320 <zqiang...@gmai l.comwrote:
      Hello:
       when I execute
      $ make
      <snip>
      >
      what should I do?
      1) Ask in a more appropriate group.
      2) Set AM_CPPFLAGS in Makefile.am, not in configure.ac



      Comment

      Working...