Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: fix sccache bug for dwo file generate #2271

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

zhouronghua
Copy link

@zhouronghua zhouronghua commented Oct 9, 2024

When output dir changed, and -g -gsplit-dwarf is enabled,
because the object file have link to the dwo file (include directories),
the new object file should be gererated, but not old cached object.
In this patch, we add a new precompile macro, for example, "-D_gsplit_dwarf_path=foo.dwo", to force sccache to generate new object file depend on the output directories.

we can check if it work by this case:
case:

echo "int test(){}" > test.cc
mkdir o1 o2
sccache g++ -c -g -gsplit-dwarf test.cc -o o1/test.o
sccache g++ -c -g -gsplit-dwarf test.cc -o o2/test.o
strings o2/test.o |grep o2/test.dwo

The new o2/test.o should contains new link to o2/test.dwo, but not cached o1/test.dwo

@codecov-commenter
Copy link

codecov-commenter commented Oct 9, 2024

Codecov Report

Attention: Patch coverage is 66.66667% with 2 lines in your changes missing coverage. Please review.

Project coverage is 40.67%. Comparing base (0cc0c62) to head (4a14637).
Report is 81 commits behind head on main.

Files with missing lines Patch % Lines
src/compiler/gcc.rs 66.66% 0 Missing and 2 partials ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #2271      +/-   ##
==========================================
+ Coverage   30.91%   40.67%   +9.76%     
==========================================
  Files          53       54       +1     
  Lines       20112    20758     +646     
  Branches     9755     9651     -104     
==========================================
+ Hits         6217     8443    +2226     
- Misses       7922     8155     +233     
+ Partials     5973     4160    -1813     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@sylvestre
Copy link
Collaborator

Could you please add a test to make sure we don't regress in the future? thanks

@zhouronghua
Copy link
Author

"test_parse_arguments_split_dwarf" this case has been modified to make it work all the time

@sylvestre
Copy link
Collaborator

this isn't enough. I would like to see a test reproducing:

echo "int test(){}" > test.cc
mkdir o1 o2
sccache g++ -c -g -gsplit-dwarf test.cc -o o1/test.o
sccache g++ -c -g -gsplit-dwarf test.cc -o o2/test.o
strings o2/test.o |grep o2/test.dwo

also, you didn't updated the clang.rs file, is that expected ?

@zhouronghua
Copy link
Author

ok, I will add another test for it, but it need time.

parse_arguments in clang.rs will call parse_arguments in gcc.rs, so no need to change them all.

@sylvestre
Copy link
Collaborator

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants