본문 바로가기
반응형

해결33

[Flutter] Change flutter version (downgrade, upgrade) (플러터 버전 바꾸기 (다운그레이드, 업그레이드)) [Flutter] Change flutter version (downgrade, upgrade) 플러터 버전 바꾸기 (다운그레이드, 업그레이드) 플러터를 사용하다가 실수로 업그레이드 하거나 하는 이유로, 잘 빌드되던 기존 코드가 빌드에 실패하는 불상사가 발생하곤 한다. 이 때는 당황하지 말고 플러터 버전을 다운그레이드하면 된다! (For reasons such as accidentally upgrading while using Flutter, Existing code that was built well often fails to build. In this case, don't panic and just downgrade the Flutter version!) 1. 아래 링크를 타고 들어가면, flutte.. 2022. 9. 6.
[Solved][Docker] mount failed: Operation not permitted. 해결 방법 Docker Solution - mount failed: Operation not permitted   docker 컨테이너에 privilege 권한을 줘야한다! docker run --privileged ~~ 의 형태로 컨테이너를 생성해야함  아래는 해결하는 과정에서 도움됐던 URL(Privilege permission should be given to docker containers!Container must be created in the form of docker run --privileged ~~   Below is the URL that was helpful during the resolution process) https://stackoverflow.com/questions/24614513/.. 2022. 8. 23.
[Solved] /usr/bin/ld: skipping incompatible <path 1> when searching for <path 2> workaround (/usr/bin/ld: skipping incompatible <경로1> when searching for <경로2> 해결 방법) [Linux Ubuntu] /usr/bin/ld: skipping incompatible when searching for workaround /usr/bin/ld: skipping incompatible when searching for 해결 방법 64비트 환경에서 32비트 라이브러리를 필요로 하여, 컴파일 중에 발생하는 문제 우분투 11 이하 버전에서는 ia32-libs 패키지 설치 우분투 16,18 버전에서는 sudo apt-get install gcc-multilib g++-multilib 로 gcc-multilib, g++multilib 설치 중간 버전은 상황에 맞게 설치하여 해결함 (Problems with compiling 32-bit libraries in 64-bit environment.. 2022. 8. 23.
[Solved] error adding sysmbols when compiling ccdv: Bad value (ccdv 컴파일시 error adding sysmbols: Bad value) [Linux Ubuntu] error adding sysmbols when compiling ccdv: Bad value ccdv 컴파일시 error adding sysmbols: Bad value ccdv는 컴파일할 때의 과정을 보다 가시성을 높여서 보여준다! 이를 컴파일하는 도중 에러가 발생하여 정리함. ccdv: error adding symbols: Bad value collect2: error: ld returned 1 exit status 발생하여 문제점을 찾아본 결과, 컴파일 할 때 옵션 값을 잘못주었을때 발생하였던 것이었다. 예를 들어 -o 옵션의 다음으로는 아웃풋 이름 argument가 위치해야하는데 다른 옵션 정보 등이 들어오면 발생함! (ccdv shows the process of .. 2022. 8. 23.
반응형