라이브러리에서 파일 객체 제거

라이브러리에서 파일 객체 제거

다음을 사용하여 3개의 파일 개체가 있는 라이브러리를 만들었습니다.

ar rv arhiva.a file.o file2.o file3.o

파일 개체를 삭제할 수 없는 이유는 무엇입니까? 나는 사용했다

ar xv arhiva.a file.o

여기에 이미지 설명을 입력하세요.

답변1

ar(1) 매뉴얼 페이지에서

   d   Delete modules from the archive.  Specify the names of modules to be
       deleted as member...; the archive is untouched if you specify no files to
       delete.

       If you specify the v modifier, ar lists each module as it is deleted.

해보셨나요..?

 ar dv arhiva.a file.o
  • x는 추출을 나타냅니다.
  • 줄을 복사/붙여넣고 들여쓰기할 흰색 줄 4개를 만들면 됩니다.

관련 정보