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

Displaying 20 results from an estimated 3000 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
Hello, Kenneth > 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. Don't do this. Use either pure cygwin or pure mingw (with msys + msysDTK) installation. This will save bunch of time for you.
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
2008 Oct 12
2
[LLVMdev] Genlibdeps.pl, CMake and MSYS
Kenneth Boyd <zaimoni at zaimoni.com> writes: >>> * I am seeing desynchronization between the configure-generated >>> Makefiles and the CMakeFile.txt files. [e.g., llc; makefile doesn't >>> have asmprinter, CMakeFile.txt does]. That much I should be able to >>> construct a patch for "blind", if no-one gets to it first. >>>
2008 Jul 31
0
[LLVMdev] Is there room for another build system?
Óscar Fuentes wrote: > About two years ago, ActiveState added the Windows port of Expect to its > Tcl distribution, which is the de-facto canonical source of Tcl/Tk for > Windows users. Check www.activestate.com > And at such time as I get approval to correctly patch the current build system to work with ActivePerl, the patch should be ready within a couple of days. Kenneth
2008 Jul 30
2
[LLVMdev] Is there room for another build system?
Kenneth Boyd <zaimoni at zaimoni.com> writes: > The LLVM test suite requires expect as a dependency of DejaGNU. The > stock source of expect requires a *NIX fork, so it's relatively > difficult to build under MinGW even though Tk/Tcl is easy to build > under MinGW. (I'm not aware of a precompiled MinGW binary for expect, > although it might be in one of the more
2009 Aug 06
0
[LLVMdev] Problems building on Msys/MingW
John Thompson wrote: > Hi, > > I'm trying to build clang under MingW, but I'm getting a number of > errors. Could anyone provide some hints as to what you had to do? I > got some tips from > http://blogs.tedneward.com/2008/02/24/Building+LLVM+On+Windows+Using+MinGW32.aspx, > but using the newer packages, as it's a bit old. > > The ./configure seems
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:
2009 Aug 19
2
[LLVMdev] Build issues on Solaris
Duncan Sands wrote: > Hi Nathan, > > >> The latter being what GenLibDeps.pl expects to see. All else being >> equal though, it might be better to change GenLibDeps.pl to recognize >> the first version: >> --- GenLibDeps.pl (revision 78653) >> +++ GenLibDeps.pl (working copy) >> @@ -100,7 +100,7 @@ >> print "
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();
2009 Aug 07
1
[PATCH] daemon/file.c: remove duplicate absolute-path check
minor clean-up: >From cac2ce53aec6d3aaca83e4bbc3551d452c29c0b2 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering at redhat.com> Date: Fri, 7 Aug 2009 20:07:03 +0200 Subject: [PATCH] daemon/file.c: remove duplicate absolute-path check * daemon/file.c (do_file): Remove redundant use of ABS_PATH. It's redundant because the preceding line invokes NEED_ROOT_OR_IS_DEVICE, which also
2009 Aug 06
3
[LLVMdev] Problems building on Msys/MingW
Hi, I'm trying to build clang under MingW, but I'm getting a number of errors. Could anyone provide some hints as to what you had to do? I got some tips from http://blogs.tedneward.com/2008/02/24/Building+LLVM+On+Windows+Using+MinGW32.aspx, but using the newer packages, as it's a bit old. The ./configure seems to run without errors. The first run of make aborts with errors like:
2009 Aug 25
0
[LLVMdev] Build issues on Solaris
On 20/08/2009, at 1:02 AM, Kenneth Boyd wrote: > Duncan Sands wrote: >> Hi Nathan, >> >> >>> The latter being what GenLibDeps.pl expects to see. All else >>> being equal though, it might be better to change GenLibDeps.pl to >>> recognize the first version: >>> --- GenLibDeps.pl (revision 78653) >>> +++ GenLibDeps.pl
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
2006 Apr 25
8
Permissions for share
opensuse 10/find / samba-3.0.20b-3.3 I'm trying to change directory permissions on a share so all users can modify files in the share and when I do as suggested in Ch15 of Samba Howto the following happens $ find `directory_name' -type d -exec chown nobody:users {}\; find: missing argument to `-exec' Chris Boyd Systems Engineer USIT 19-21 Aston Quay Dublin 2 Ireland Tel: +353 1
2006 Apr 06
12
net drive mapping not working in login script
I've set the path for each user in pdbedit and created a login script with drive mapping etc etc The network drives aren't being mapped when I login each user: smb.conf [global] printcap name = cups cups options = raw map to guest = Bad User # include = /etc/samba/dhcp.conf logon path = \\%L\profiles\.msprofile logon home = \\%L\%U\.9xprofile