how to clean up all builds?
Hi I just built triton with debug information and would like to debug.
But I found there is something wrong with the debug symbols since the break point cannot hit the right line
When I want to rebuild triton, I found that I may need to manually delete them according to gitignore.
Thus I would like to ask if there is a way to clean up all builds??
I am not from the triton team, nor an expert here, but I am curious; is
$ rm -rf python/triton/_C/*.so
$ rm -rf python/triton/build
sufficient? or that is the manual steps that you are actually already doing?
I am not from the triton team, nor an expert here, but I am curious; is
$ rm -rf python/triton/_C/*.so $ rm -rf python/triton/buildsufficient? or that is the manual steps that you are actually already doing?
there are something more based on gitignore
Do you have a reproducable example (i.e. sequence of commands) that shows the change made is not reflected in the new build?
Do you have a reproducable example (i.e. sequence of commands) that shows the change made is not reflected in the new build?
From .gitignore, we can see the following:
# Triton builds
build/
build-*/
# Triton Python module builds
python/build/
python/dist/
python/triton*.egg-info/
python/triton/_C/*.pyd
python/triton/_C/*.so
python/triton/_C/*.dylib
...
So at lease python/triton/_C/*.so would not be removed.
I don't know the detail of building so it may have zero affect or not?
But just wondering, if I would like to clean all the stuff that is not in the repository, can I do it??