«autotools» 태그된 질문




5
오류 : Libtool 라이브러리가 사용되었지만 'LIBTOOL'이 정의되지 않았습니다.
automakeOrientDb C ++ 라이브러리를 사용 하려고하는데 오류가 발생합니다. Makefile.am:10: error: Libtool library used but 'LIBTOOL' is undefined Makefile.am:10: The usual way to define 'LIBTOOL' is to add 'LT_INIT' Makefile.am:10: to 'configure.ac' and run 'aclocal' and 'autoconf' again. Makefile.am:10: If 'LT_INIT' is in 'configure.ac', make sure Makefile.am:10: its definition is in …
117 c  linux  autotools  orientdb 

19
정의되지 않은 매크로 : AC_MSG_ERROR
configure.ac에 다음이 있습니다. AC_CHECK_PROGS(MAKE,$MAKE make gmake,error) if test "x$MAKE" = "xerror" ;then AC_MSG_ERROR([cannot find a make command]) fi 이것은 오랫동안 우리 프로젝트에 있었지만 일부 설정에서는 다음 오류가 발생합니다. configure.ac:45: error: possibly undefined macro: AC_MSG_ERROR If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. 이 위에 …

4
CFLAGS 대 CPPFLAGS
CFLAGS (또는 C ++의 경우 CXXFLAGS)는 컴파일러 용이고 CPPFLAGS는 전 처리기에서 사용된다는 것을 이해합니다. 그러나 나는 여전히 그 차이를 이해하지 못한다. #include에 포함 된 헤더 파일의 포함 경로를 지정해야합니다. 어떤 상황에서 컴파일러에 추가 포함 경로를 제공해야합니까? 일반적으로 전처리 기가 필요한 헤더 파일을 찾아 포함하는 경우 추가 포함 디렉토리에 대해 알려야하는 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.