Hi,
I just downloaded the git and tried compile it.
I just issued `make` command after doing `./configure`
But it gave the below errors: make[1]: Leaving directory `/media/PENDRIVE/devel/repo/wine/tools/wrc' make[1]: Entering directory `/media/PENDRIVE/devel/repo/wine/include' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/media/PENDRIVE/devel/repo/wine/include' make[1]: Entering directory `/media/PENDRIVE/devel/repo/wine/dlls/adsiid' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/media/PENDRIVE/devel/repo/wine/dlls/adsiid' rm -f dlls/libd3dcompiler.def && cp -p d3dcompiler_43/libd3dcompiler.def dlls/libd3dcompiler.def cp: cannot stat `d3dcompiler_43/libd3dcompiler.def': No such file or directory make: *** [dlls/libd3dcompiler.def] Error 1
Since the build of wine has changed a bit, i am unable to understand how to fix this issue.
Thanks, Vijay
On Mon, Oct 3, 2011 at 09:03, Vijay Kiran Kamuju infyquest@gmail.com wrote:
Hi,
I just downloaded the git and tried compile it.
I just issued `make` command after doing `./configure` ... Since the build of wine has changed a bit, i am unable to understand how to fix this issue.
Try make distclean && ./configure && make depend && make
Try this too: git clean -fd
Taken from: http://wine.1045685.n5.nabble.com/Latest-Git-Fails-tools-install-td1838892.h...
On Mon, Oct 3, 2011 at 2:15 PM, Bruno Jesus 00cpxxx@gmail.com wrote:
On Mon, Oct 3, 2011 at 09:03, Vijay Kiran Kamuju infyquest@gmail.com wrote:
Hi,
I just downloaded the git and tried compile it.
I just issued `make` command after doing `./configure` ... Since the build of wine has changed a bit, i am unable to understand how to fix this issue.
Try make distclean && ./configure && make depend && make
It did not work, same error
Try this too: git clean -fd
I did it and then I tried 'make' still the same error. Now doing the distclean and recompling. Still the same can this be a file system issue. (i do not think it is) I can see that there is libd3dcompiler.def file....
Taken from: http://wine.1045685.n5.nabble.com/Latest-Git-Fails-tools-install-td1838892.h...
-------- Vijay
On Mon, Oct 3, 2011 at 05:03, Vijay Kiran Kamuju infyquest@gmail.com wrote:
Hi,
I just downloaded the git and tried compile it.
I just issued `make` command after doing `./configure`
But it gave the below errors: make[1]: Leaving directory `/media/PENDRIVE/devel/repo/wine/tools/wrc'
What type of file system is that on?
Hi,
This is on fedora 15. I have just downloaded the fresh git, and attempting the my first build on this system. The source code is downloaded to a usb drive which is FAT32 formatted. The hardware is a Compaq laptop with core duo processor and 2 G RAM. Do you need any more details.
Thanks, Vijay
On Mon, Oct 3, 2011 at 8:17 PM, Austin English austinenglish@gmail.com wrote:
On Mon, Oct 3, 2011 at 05:03, Vijay Kiran Kamuju infyquest@gmail.com wrote:
Hi,
I just downloaded the git and tried compile it.
I just issued `make` command after doing `./configure`
But it gave the below errors: make[1]: Leaving directory `/media/PENDRIVE/devel/repo/wine/tools/wrc'
What type of file system is that on?
-- -Austin
On Mon, Oct 3, 2011 at 12:24, Vijay Kiran Kamuju infyquest@gmail.com wrote:
Hi,
This is on fedora 15. I have just downloaded the fresh git, and attempting the my first build on this system.
Please bottom-post on wine mailing lists.
The source code is downloaded to a usb drive which is FAT32 formatted.
Looking at $TOPDIR/Makefile: __builddeps__: dlls/libd3dcompiler.def dlls/libd3dcompiler.def: dlls/d3dcompiler_43/libd3dcompiler.def $(RM) $@ && $(LN_S) d3dcompiler_43/libd3dcompiler.def $@
LN_S is `ln -s`, which will fail on a fat32 file system.
You need to build on a file system that supports symlinks (ext3/4, xfs, nfs, etc.).
On Tue, Oct 4, 2011 at 3:52 AM, Austin English austinenglish@gmail.com wrote:
On Mon, Oct 3, 2011 at 12:24, Vijay Kiran Kamuju infyquest@gmail.com wrote:
Hi,
This is on fedora 15. I have just downloaded the fresh git, and attempting the my first build on this system.
Please bottom-post on wine mailing lists.
The source code is downloaded to a usb drive which is FAT32 formatted.
Looking at $TOPDIR/Makefile: __builddeps__: dlls/libd3dcompiler.def dlls/libd3dcompiler.def: dlls/d3dcompiler_43/libd3dcompiler.def $(RM) $@ && $(LN_S) d3dcompiler_43/libd3dcompiler.def $@
LN_S is `ln -s`, which will fail on a fat32 file system.
You need to build on a file system that supports symlinks (ext3/4, xfs, nfs, etc.).
-- -Austin
Well, if you see configure script. There is an alternative for "ln -s", and it is "cp -p" which is is used for MSYS and DJPP based builds. I modified the configure and it worked I will try to send that patch for review may be by evening.
----- Vijay