similar to: [LLVMdev] Working on getting MingW32/native tools-only source build up

Displaying 20 results from an estimated 5000 matches similar to: "[LLVMdev] Working on getting MingW32/native tools-only source build up"

2008 Feb 05
1
[LLVMdev] Working on getting MingW32/native tools-only source build up
Using MingW32/GCC 4.2.1 binary release, mix of Cygwin and MingW32 auxilliary tools, ActivePerl's Perl 5.8.8; operating system Vista. I'm not going to worry about bootstrapping llvm-gcc until I know I can bootstrap gcc. 1) ActivePerl uses the wrong shell (cmd.exe rather than sh.exe) when doing backticks. I had to moderately rewrite llvm-config to use the Cwd module's abs_path
2008 Feb 07
1
[LLVMdev] Working on getting MingW32/native tools-only source build up
Hello, Kenneth > Libraries weren't being linked in; This means, that generation of llvm-config for you is broken. I really suggest to use perl from msys-DTK, not ActivePerl. -- WBR, Anton Korobeynikov
2011 Nov 14
0
[LLVMdev] Build LLVM as a DLL on Windows x86
"Alan Garny" <agarny at hellix.com> writes: >> GNU make is essential to msys build. I guess msysdtk would have it. > > I could find a copy of msysDTK at > http://sourceforge.net/projects/mingw/files/Other/Unsupported/MSYS/msysDTK/, > but not only is the 'latest' version a very old version (2003!), but once > installed I couldn't find a copy of
2011 Nov 14
2
[LLVMdev] Build LLVM as a DLL on Windows x86
Hi Takumi, > > Otherwise, > > I haven't installed binutils since I don't seem to need it.? > > You need binutils, esp. ld, nm, objdump. > > FYI, how to browse export table in DLL with objdump; $ objdump -x > XXX.dll Ok, I got the latest version of binutils from http://sourceforge.net/projects/mingw/files/MinGW/Base/binutils/. > > As you can tell, I am
2011 Nov 14
2
[LLVMdev] Build LLVM as a DLL on Windows x86
> >> GNU make is essential to msys build. I guess msysdtk would have it. > > > > I could find a copy of msysDTK at > > > http://sourceforge.net/projects/mingw/files/Other/Unsupported/MSYS/msy > > sDTK/, but not only is the 'latest' version a very old version > > (2003!), but once installed I couldn't find a copy of gmake in it. > >
2008 May 30
4
[LLVMdev] Possibly Vista-related Windows/MinGW Compilation Issues
Hello, Jonathan > I thought I'd messed up something related to the linker, > but I couldn't explain why XP would work using the same steps. The only thing comes to my mind seeing this: perl from msysDTK works differently (somehow) on Vista, thus llvm-config is broken which leads to missed libraries, broken dependencies, etc. I'd suggest you to compare stuff on different
2011 Nov 14
0
[LLVMdev] Build LLVM as a DLL on Windows x86
2011/11/13 Alan Garny <agarny at hellix.com>: > Now, I know that shared libraries are not supported on Windows using CMake > (according to http://www.llvm.org/docs/CMake.html) which would have been my > preferred building choice, but I didn’t see anything against them not being > supported using Autotools, so I thought I would try it that way (as I > successively did on Linux
2008 Jun 02
2
more columns that column names
Hello to everyone, I have gotten my file to print to screen but when I use read.table I am getting an error message that says there are" more columns than column names."This is a file that was not created by me so I am not sure how to investigate and solve this problem.I looked in the help file and it suggested an auxilliary function called count.fieldsThe code that was used was:
2015 Oct 14
2
Remove trailing spaces
> Looking around, there appear to be a lot of small places needing some > whitespace cleanup/reconciliation. > Just to be clear, I am not criticizing, but actually asking... Are those white-space characters impacting the binaries being built? Would they affect common users? Are those characters affecting developers? For instance, do they affect some git command? Or, do they make
2005 May 21
2
Possible (ab)use of lexical scoping in R ?
Dear list, I wish to define a set of functions *auxilliary* to another set of "main" ones, and I wonder if there is some "clever" way do do this using lexical scoping. Looking for that in the list's archives did not get me easily understood answers. Perusing MASS (1st, 2nd, 3rd and 4th editions!) and "Programming S" wasn't of much help either... R easily
2016 Jun 04
0
[PATCH] Wedding gift, removing double l from auxilliary
This patch changes only strings, no program code. It is would be nice if it goes in the 6.04 release. Reported-by: Ady <ady-sf at hotmail.com> How this patch was prepared, how the editting for this patch was done Where is auxiliary written with double l? git grep -i auxilliary Which files are effect git grep -li auxilliary Changing the those files with the streaming editor sed
2014 Sep 26
1
Is dovecot vulnerable to the shellshock/CVE-2014-6271 exploit?
I'm right now handling this beach-ball sized grenade, and trying to figure out which of our services need to be locked down right away. Since dovecot passes values via environment variables based on user input (e.g. username, password, mailbox?) to auxilliary executables (including possibly bash shell scripts), is dovecot vulnerable to this exploit? (This is not a fault of dovecot, but
2019 Dec 17
2
Python 2 compatibility for utility scripts
On Tue, Dec 17, 2019 at 12:55 PM Nico Weber <thakis at chromium.org> wrote: > On Tue, Dec 17, 2019 at 12:41 PM James Y Knight <jyknight at google.com> > wrote: > >> It sounds like you ran into a bug in the test infrastructure's code to >> determine if python3 is supported. Fixing that might be harder, but it only >> needs to be fixed once no matter how
2010 Mar 21
6
[PATCH] mboot: set boot loader name
Set a pointer to syslinux_version()->version_string in mbinfo. Signed-off-by: Sebastian Herbszt <herbszt at gmx.de> diff --git a/com32/mboot/mboot.c b/com32/mboot/mboot.c index 8425e06..76ef7a0 100644 --- a/com32/mboot/mboot.c +++ b/com32/mboot/mboot.c @@ -222,6 +222,13 @@ int main(int argc, char *argv[]) /* Add auxilliary information */ mboot_make_memmap(); mboot_apm();
2011 Nov 13
5
[LLVMdev] Build LLVM as a DLL on Windows x86
Hi, I need to build a shared version of LLVM on Windows, Linux (both x86 and x64) and Mac OS X. So far, I have been able to build LLVM on Linux and Mac OS X, and it's all working fine as confirmed by a small LLVM test code that I wrote. However, on Windows, even though I get a DLL, that DLL doesn't contain any (exported) functions (according to DLL Export Viewer; see
2011 Nov 14
0
[LLVMdev] Build LLVM as a DLL on Windows x86
For what is worth, I have been able to trace my problem (thanks Kevin Kelley for the indirect help!). The 'culprit' was DLL Expert Viewer (http://www.nirsoft.net/utils/dll_export_viewer.html). It kept reporting that there were no exported functions, so I (wrongly) assumed that something had gone wrong while, using PEInfo (http://www.pazera-software.com/products/peinfo/) I could see that
2010 Apr 19
4
Libvirt Compilation on MS Vista
Does a comprehensive set of instructions on how to compile Libvirt on a Microsoft Vista platform exist? Has this ever been accomplished? I would very much appreciate input from persons who can give me confidence that a Windows client application can be developed on top of Libviet that connects to a QEMU system on an Ubuntu server. The Libvirt Windows Support page
2007 Feb 13
3
Linux on a Thinkpad R40
I've just acquired a use IBM Thinkpad R40 model 2722-GDM. I'm contemplating what to run on it, and longer-term the likely candidates are: Centos 5 SLE{D,S} 10 OpenSUSE 10.2 Kubuntu - the latest. Kubuntu - Long Life (aka 6.04, Dapper, ...) I've booted Knoppix 4 in it and most seems well, including the Atheros Wireless card Windows can't find. The major flies in the
2010 Jul 27
2
Usage output of Syslinux installers is not consequent
Why doesn't the Windows Syslinux installer show: --offset and --directory too (I know it is not supported)? Because the Linux versions show the Windows/dos specific commands: --mbr --active and --force I didn't check the DOS version. If all options will be displayed unconditionally for all installers, it might be a good idea to add: --offset -t Offset of the file system on the
2004 Oct 28
0
Auxilliary args in gls
I am trying to fit a B-spline regression model with a corStruct using gls. I am using bs() and specifying the knots myself. If I make the knots data-dependent, this works but has undesirable side-effects. I prefer to reference an auxilliary variable "knots" in my model formula. It should not be part of the data frame, as it is a vector of a different length. How can this be done? The