Automake가 설치되지 않는 동적 모듈을 빌드하는 방법을 알려주십시오.Automake : 설치하지 않을 공유 모듈 빌드하기
pkglib_LTLIBRARIES = mywrapper.la
mywrapper_la_LDFLAGS = -no-undefined -module -avoid-version
은 pkglibdir
으로 mywrapper.so를 설치합니다. 정적 편의 라이브러리가 발생
noinst_LTLIBRARIES = mywrapper.la
mywrapper_la_LDFLAGS = -no-undefined -module -avoid-version
대신 내장합니다.
해당 동적 모듈은 테스트 슈트를 실행하는 데에만 사용되므로 배포되지 않습니다.
아, 고맙습니다. – dottedmag