jzmq 컴파일 중에 아래와 같은 에러 발생 시
1 2 3 4 5 6 7 8 | $ make Making all in src make[1]: Entering directory '/usr/local/jzmq/src' make[1]: *** No rule to make target 'classdist_noinst.stamp', needed by 'org/zeromq/ZMQ.class'. Stop. make[1]: Leaving directory '/usr/local/jzmq/src' Makefile:399: recipe for target 'all-recursive' failed make: *** [all-recursive] Error 1 | cs |
다음과 같이 편집 후 make를 재실행합니다.
jzmq의 홈 디렉터리에 위치하여 아래의 명령어를 실행합니다.
: sed -i 's/classdist_noinst.stamp/classnoinst.stamp/g' src/Makefile.am
1 2 | $ sed -i 's/classdist_noinst.stamp/classnoinst.stamp/g' src/Makefile.am | cs |
'Operating System > Linux' 카테고리의 다른 글
zeromq [에러] no acceptable C compiler found in $PATH (0) | 2018.03.19 |
---|---|
ubuntu Jzmq 설치 (0) | 2018.03.19 |
jzmq [경고] autoconf input should be named 'configure.ac', not 'configure.in' (0) | 2018.03.19 |
jzmq [에러] could not find libtool. libtool is required to run autogen.sh. (0) | 2018.03.19 |
zeromq [에러] cannot link with -luuid, install uuid-dev. (0) | 2018.03.19 |