diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-07-23 10:42:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-23 10:42:40 +0200 |
commit | bd00ab75162fc1cbca539786d50f04b8e5f4024f (patch) | |
tree | f18ad01c30688894c80ee6561646c7d2f543c350 | |
parent | 460a00619e3da9cb0166d065a3ee893436c7331f (diff) | |
parent | 5e8b188365a0cea2594823930e72018ee1d17a84 (diff) |
Merge pull request #40625 from akien-mga/gitignore-binutils-stXXXXXX
gitignore: Ignore binutils linker temp stXXXXXX objects
-rw-r--r-- | .gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index d9537edbf2..f4af79929c 100644 --- a/.gitignore +++ b/.gitignore @@ -34,6 +34,8 @@ platform/android/java/lib/.cxx/* *.os *.Plo *.lo +# Binutils tmp linker output of the form "stXXXXXX" where "X" is alphanumeric +st[A-Za-z0-9][A-Za-z0-9][A-Za-z0-9][A-Za-z0-9][A-Za-z0-9][A-Za-z0-9] # Libs generated files .deps/* |