32bit 빌드가 필요할때 위와 같이 -m32 옵션을 사용하여 컴파일 할 수 있다.
그런데 계속해서 에러가 발생했는데...
1
|
....No such file or directory
|
cs |
와 같은 문구가 계속 발생했다.
GCC 옵션중에 32bit 컴파일은 -m32 / m64 로 64bit를 빌드할 수 있다.
그런데 이런 양방향 빌드를 위해 필요한 작업이 있다. 이 환경을 작업해주는 패키지를 설치하면 해결할 수 있다.
1
|
sudo apt install gcc-multilib
|
cs |
https://www.tutorialspoint.com/how-to-compile-32-bit-program-on-64-bit-gcc-in-c-and-cplusplus
https://stackoverflow.com/questions/6329887/compiling-problems-cannot-find-crt1-o
'빨간색 에러들' 카테고리의 다른 글
[Pyinstaller] Path error: no such file or directory (0) | 2021.10.31 |
---|---|
[Ubuntu] shared library: cannot open shared ... no such file or .. (0) | 2021.10.20 |
[pyinstaller] .spec file - Error: No such file or Directory .... (0) | 2021.10.17 |
[Ubuntu20.04] LLVM_ [90%] lib/libLTO.so.11 failed 수동 빌드 (0) | 2021.10.13 |
[Ubuntu]Virtualbox guest image addition / 게스트 확장 이미지 설정 (0) | 2021.10.06 |