728x90 BackEnd FrontEnd67 Error - javax.xml.bind.JAXBException Implementation of JAXB-API has not been found on module path or classpath pom.xml 에 아래 내용을 추가해준다. javax.xml.bind jaxb-api 2.3.0-b170201.1204 javax.activation activation 1.1 org.glassfish.jaxb jaxb-runtime 2.3.0-b170127.1453 2020. 1. 26. mac에서 Jsoncpp 설치하기 $ brew install jsoncpp 코드에는 아래와 같이 헤더파일추가 #include # compile with option -ljson 2020. 1. 23. linux C/C++ openssl 설치 후 빌드에러 libssl-dev / openssl 설치 후에 빌드시 아래 에러가 나오면 undefined reference to `OPENSSL_init_ssl' undefined reference to `OPENSSL_init_ssl' 아래 결과로 나온 경로를 빌드경로에 작성해준다 (예: SSL = -L/usr/local/lib -lssl -lcrypto ) $ pkg-config openssl --libs -L/usr/local/lib -lssl -lcrypto 2020. 1. 22. [networkprogramming] mac에서 bind코드가 잘 안될때 if (bind(server_desc_, (struct sockaddr*) &h_addr_, sizeof(h_addr_)) == -1) { 이 코드를 아래 코드로 변환해준다 if (::bind(server_desc_, (sockaddr *) &servaddr, sizeof(servaddr)) < 0) { 2020. 1. 21. 이전 1 2 3 4 5 ··· 17 다음 728x90