SVN won't import *.a library

后端 未结 6 1656
抹茶落季
抹茶落季 2020-12-25 12:36

I\'ve got a compiled static library (with an \"a\" extension) I want to include in my SVN repository but adding it never works (no problems adding other types of items). If

6条回答
  •  甜味超标
    2020-12-25 12:56

    So, I suggest actually edit that ~/.subversion/config file to allow .a files again:

    global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.pyc *.pyo
    #global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo
    

    Because I have a lot of those .a files in my projects.

提交回复
热议问题