similar to: wine 1.2.3 compile error ...

Displaying 20 results from an estimated 3000 matches similar to: "wine 1.2.3 compile error ..."

2012 Mar 02
2
Problems with ImgBurn, err:aspi:ASPI_GetNumControllers
I don't know exactly when, but something about my Linux Mint Debian Edition (LMDE) installation has changed that seems to have broken Wine when it comes to detecting ASPI devices, because I get the following error. Code: err:aspi:ASPI_GetNumControllers Could not open HKLM\L"HARDWARE\\DEVICEMAP\\Scsi" I tried searching the forums with the Forums -> Search for info about this
2009 Feb 23
4
Gcc error during make depend/make of latest Git-Wine source.
I'm on Linux Mint Fluxbox CE 5 trying to compile the latest Git source. I previously had Wine 1.0 something from the Synaptic repos, and wanted bleeding edge so I did Code: $ aptitude remove wine and then followed the Wine + Git instructions. After the repo was cloned I ran ./configure, installed a couple dependencies and libfreetype-dev, and the config script then ran fine. Then I
2012 Mar 23
4
DVD Rebuilder Pro does not start in Wine 1.4
When trying to start DVD-rebuilder Pro 1.282, I just get a small pop up window saying "Invalid picture" - then nothing. It was running fine in Wine 1.3.16 and 1.2. I tried the free version of DVD-rebuilder 0.98, and this one is able to start up, and appears to be running. I'm using Linux Mint LMDE. Has anyone else experienced this problem with the PRO version after installing Wine
2012 Nov 29
1
rstudio doesn't work in LMDE without internet conexion.
Hello everybody. I'm using Rstudio in LMDE (64 bits) with xfce desktop. When I'm connecting , I don't have any problem to start Rstudio , but when I am not connecting Rstudio don't start. Any idea? In rsession-user.log I get 29 Nov 2012 23:07:50 [rsession-jose] ERROR asio.netdb error 1 (Host not found (authoritative)); OCCURRED AT: core::Error
2020 Nov 16
1
lld error: output file too large <some large number>
This is a common pitfall: people think that .text is the first section of the traditional concept "text segment" (which does not apply with LLD layout and GNU ld's -z separate-code layout) You need to use --image-base=0 https://releases.llvm.org/10.0.0/tools/lld/docs/ReleaseNotes.html#breaking-changes On Mon, Nov 16, 2020 at 10:31 AM Moshtaghi, Alireza <Alireza.Moshtaghi at
2017 Dec 20
2
Question about : lprofValueProfNodes
What Vedant said -- the profiler runtime provides buffer API for profile dumping. Note that value profiling dumping is not yet supported for buffer API, but since you are using Front-end based instrumentation/profile-use, value profiler is not turned on by default anyway. David On Tue, Dec 19, 2017 at 5:29 PM, Vedant Kumar <vsk at apple.com> wrote: > > On Dec 19, 2017, at 5:16 PM,
2005 Jan 05
2
Comiple fails for Xen 2.0.2
Changes in xen/arch/x86/domain.c in 2.0.2 break comiple for me with: ld --oformat elf32-i386 -T x86_32/xen.lds -N \ boot/x86_32.o /home/root/xen-2.0/xen/common/common.o /home/root/xen-2.0/xen/drivers/char/driver.o /home/root/xen-2.0/xen/drivers/acpi/driver.o /home/root/xen-2.0/xen/drivers/pci/driver.o /home/root/xen-2.0/xen/arch/x86/arch.o -o /home/root/xen-2.0/xen/xen-syms
2020 Nov 16
2
lld error: output file too large <some large number>
I can't send the exact objects, but I'll try to reproduce. Thanks A On 11/16/20, 9:48 AM, "Fāng-ruì Sòng" <maskray at google.com> wrote: NetApp Security WARNING: This is an external email. Do not click links or open attachments unless you recognize the sender and know the content is safe. On Mon, Nov 16, 2020 at 9:05 AM Moshtaghi, Alireza
2008 Feb 01
1
[LLVMdev] C embedded extensions and LLVM
Christopher, Thank you for all the work :-) Regarding the regression testing, it is in our plan to contribute into LLVM. The current state of our project is not in the form that we can do this at this time though, but I'm hoping that we can get some minimal functionality into LLVM before LLVM 2.3 (at most LLVM 2.4) release. Looks like you have also (at least on your local project) taken
2009 Mar 12
0
[LLVMdev] promotion of return value.
Previously we talked about adding new attributes to function to identify the promotion class. > sign_ext_from_i8, sign_ext_from_i16 > zero_ext_from_i8, zero_ext_from_i16 Aren't these attributes more applicable to return value? of course then the question would be if they are also applicable to parameters too? (because we use same attributes for parameters and return value)? or
2008 Jan 31
0
[LLVMdev] C embedded extensions and LLVM
Alireza, I have added full support for embedded C address spaces to the LLVM IR (see http://llvm.org/docs/LangRef.html#t_pointer). I have not added any support for the fractional types and their operators, though I think this would simply require adding the necessary intrinsics, which is one of the easier things to add to LLVM. Given that LLVM takes the approach of modeling these kinds
2017 Dec 20
2
Question about : lprofValueProfNodes
Thank you So it does not seem to be relevant for what I’m trying to do. I’m doing something unconventional. The objective is to implement PGO and code coverage on a system that does not exit and does not have any file io, or any of stdc libraries that libclang-profile is using. (more like a kernel) So what I’m trying to do is instead of calling __llvm_profile_write_file () from the application,
2008 Nov 08
5
unable to complete installing wine from source.
ubuntu (8.04) hardy This is the error's I get after performing command: make depend && make /usr/bin/ld: cannot find -lXext collect2: ld returned 1 exit status winegcc: gcc failed make[2]: *** [winex11.drv.so] Error 2 make[2]: Leaving directory `/home/administrator/wine-1.1.8/dlls/winex11.drv' make[1]: *** [winex11.drv] Error 2 make[1]: Leaving directory
2008 Apr 16
1
[LLVMdev] overlay attribute
Chris, The reasons for not wanting the code generator to modify alloca to global references are: (1) Variable name is not as easily available in the code generator. (2) I did not want to go behind the back of compiler and change the storage class of a variable in the middle of the way. I felt more comfortable to have the frontend generate the correct information to begin with. But it concerns
2009 Mar 04
7
[LLVMdev] promotion of return value.
Below I have pasted the latest design that we discussed... Now we would like to pick it up and do the implementation. 1) Is there any last change that we would like to add? 2) Has anyone been working on it? I haven't seen any thing new in the code so I assume the answer is no... Thanks Alireza Moshtaghi Senior Software Engineer Development Systems, Microchip Technology Subject: Troubling
2020 Jun 02
2
LLD : __start_ and __end_ symbols for orphan sections
On 2020-06-02, Moshtaghi, Alireza wrote: >Sorry for the cryptic code but I had to modify stuff from original >In the following example see the difference when you comment or uncomment the line in the linker script: >============ test.c ============= : >struct orphan_dummy_anno_s { > void (*func)(void); >}; > >static void dummy_export_dbg_log_init_f (void) __attribute__
2020 Nov 16
2
lld error: output file too large <some large number>
My target requires that text section be at 0x0 so "-Ttext 0x0" is passed to the linker. When I link with gold, it goes through; but lld fails. Instead of always returning the same calculation, when I change the calculation to the following, it links: return first->offset + (os->addr > first->addr ? os->addr - first->addr :
2011 Dec 23
2
What happened to OSS support?
I had wine working beautifully with OSS4 under LMDE, and I just switched to fedora which uses WINE 1.3.33 (a much more current version than what's in debian repos) and there's no OSS support?! Every time I try to force OSS it says "no driver" under audio. I don't want pulseaudio or ALSA on my system and spotify was working beautifully with OSS4 before. I tried looking for
2012 Mar 05
2
d3d_caps error
Hello all, I just installed Linux Mint Debian Edition, which I have used in the past with Wine, and I'm trying to get Riven to run (which, again, I've used with Wine on this OS before). Wine isn't in the LMDE repository anymore for some reason, so I had to compile it myself (v. 1.2.3). I was able to install the game without a hitch, but when I try to run the EXE I get: Code:
2007 Oct 04
0
[LLVMdev] Lowering operations to 8-bit!
On Oct 3, 2007, at 3:21 PM, Alireza.Moshtaghi at microchip.com wrote: > Thank you Evan, > I added the return Type::Int8Ty to the switch statement to get it to > work. > I don't know if this can have other consequences, I haven't yet > verified > if the generated Legalized DAG is correct though. If this works, please submit a patch. Otherwise please submit a bug