Hi,
I've been trying to track down the version of Wine that a bug first appeared.
I've downloaded each Wine source, compiled them, and am running the application from their build directory. It's no surprise that I'm slowly running out of disk space.
I'd like to keep the build directories for further testing. What files can I remove safely? Has anyone written a script for this purpose?
Thanks!
After compiling Wine which files can I delete safely?
-
- Moderator
- Posts: 1153
- Joined: Wed Apr 27, 2011 11:01 pm
After compiling Wine which files can I delete safely?
On 5/28/11 7:42 PM, dk wrote:
building Wine.
ending with .c and .o. DO NOT delete files ending in .dll, .exe, dll.so
and .exe.so Those are the files built by your compiler. If you are
running on a Mac, add files ending in .dylib (dynamic library.)
James McKenzie
Why? Use Git and run a regression test. Much faster and easier thanHi,
I've been trying to track down the version of Wine that a bug first appeared.
building Wine.
I only keep the last three development builds and the last stable.I've downloaded each Wine source, compiled them, and am running the application from their build directory. It's no surprise that I'm slowly running out of disk space.
You can safely delete all of the source and object code, that is filesI'd like to keep the build directories for further testing. What files can I remove safely? Has anyone written a script for this purpose?
ending with .c and .o. DO NOT delete files ending in .dll, .exe, dll.so
and .exe.so Those are the files built by your compiler. If you are
running on a Mac, add files ending in .dylib (dynamic library.)
James McKenzie
With respect to tracking down a regression, you are better off doing this:
http://wiki.winehq.org/RegressionTesting
However, it will waste a lot of disk space as well. Is it a laptop? If not, I'd just get an extra HDD if you're running out of space so easily.
http://wiki.winehq.org/RegressionTesting
However, it will waste a lot of disk space as well. Is it a laptop? If not, I'd just get an extra HDD if you're running out of space so easily.
-
- Moderator
- Posts: 1153
- Joined: Wed Apr 27, 2011 11:01 pm
After compiling Wine which files can I delete safely?
On 5/28/11 9:01 PM, DL wrote:
you run builds based on wine versions. I deleted gigabytes of files off
of my system when I consolidated.
Regression testing is much faster than running version builds, IF you
know which version the program worked in and the one that it did not.
James McKenzie
Why are you saying 'waste space'. Git takes up less space, much so, ifWith respect to tracking down a regression, you are better off doing this:
http://wiki.winehq.org/RegressionTesting
However, it will waste a lot of disk space as well. Is it a laptop? If not, I'd just get an extra HDD if you're running out of space so easily.
you run builds based on wine versions. I deleted gigabytes of files off
of my system when I consolidated.
Regression testing is much faster than running version builds, IF you
know which version the program worked in and the one that it did not.
James McKenzie
Re: After compiling Wine which files can I delete safely?
Thanks for the quick replies.
Yes, I'm using a notebook that has limited space and no, the problem is I don't remember what version worked - hence the compilation marathon. I do intend to run a regression test once I find it.
I though (since each compilation takes forever) I'd just archive the build directories (sans code) to a flash drive or something so that if (for whatever reason) I needed it again I'd save some time.
Thanks again!
Yes, I'm using a notebook that has limited space and no, the problem is I don't remember what version worked - hence the compilation marathon. I do intend to run a regression test once I find it.
I though (since each compilation takes forever) I'd just archive the build directories (sans code) to a flash drive or something so that if (for whatever reason) I needed it again I'd save some time.
Thanks again!
Re: After compiling Wine which files can I delete safely?
What distro are you using? You'd probably be better off building packages for each version you're interested in and saving them if you ever want to use them later.dk wrote:I though (since each compilation takes forever) I'd just archive the build directories (sans code) to a flash drive or something so that if (for whatever reason) I needed it again I'd save some time.
Sorry for the double post, but you could also check http://www.winehq.org/download to see if there's already built packages for your distro.
After compiling Wine which files can I delete safely?
On Sun, May 29, 2011 at 15:08, dk <[email protected]> wrote:
builds (see on winehq's download page) to limit the scope of your
bisection.
It may be easier to keep only 1! source dir, and used release binaryThanks for the quick replies.
Yes, Â I'm using a notebook that has limited space and no, the problem is I don't remember what version worked - hence the compilation marathon. I do intend to run a regression test once I find it.
I though (since each compilation takes forever) I'd just archive the build directories (sans code) to a flash drive or something so that if (for whatever reason) I needed it again I'd save some time.
builds (see on winehq's download page) to limit the scope of your
bisection.