Displaying 20 results from an estimated 100000 matches similar to: "Cygwin build"
2005 Feb 25
0
[LLVMdev] LLVM CygWin build error ?
Yeah, cygwin is a bit of a beast. There's no pre-compiled binary
available (I'm working on it). If you want to build yourself, follow
the instructions in the CFEBuildInstr.html document carefully,
especially noting the Cygwin specific stuff. For example, you can't use
the default gcc that comes with Cygwin. I've been successful with GCC
3.4.3 on Cygwin.
I've uploaded a
2005 May 20
0
[LLVMdev] [Cygwin] clean build and install :)
dot is part of the graphviz project. it is used by doxygen to generate
the inheritance and collaboration diagrams. You can get it from
www.graphviz.org. You don't have to have it, its only used to build the
documentation which you can find online anyway. You don't need this for
"make check".
Reid.
On Fri, 2005-05-20 at 17:31 +0100, Aaron Gray wrote:
> Got a clean build and
2005 May 20
0
[LLVMdev] [Cygwin] groff build error - semi solved
Yeah, that's exactly right, Aaron. "true" is a command that simply
returns with an exit status of 0 and ignores its arguments. When pod2man
can't be found we define the variable that specifies its path as "true
pod2man". This allows the command that should have been run to be shown
while at the same time not interrupting the makefile with a failure.
This is entirely
2005 Jun 02
0
[LLVMdev] Cygwin debug build results
Your "make check" output has two classes of errors:
1. llvm-gcc or llvm-g++ not being found. Its possible this results from
Cygwin requiring the .exe extension. The makefiles probably need to be
enhanced to include the suffix.
2. You have a permissions problem on:
test/Regression/Analysis/Andersens/Output/basictest.ll.out.script. The
file couldn't be opened for writing. Possibly
2005 May 19
0
[LLVMdev] [Cygwin] llvm 'make install' build errors
Aaron,
That looks to me like the "install" program on your platform isn't quite
up to snuff. It should be doing a command like:
/usr/bin/install -c -m 0755 \
/proj/llvm/build/Debug/bin/llvm-ranlib /proj/install/bin/llvm-ranlib
Its not supposed to create an llvm-ranlib directory, the second argument
is the name of the file to create. This works fine on linux.
Can you "make
2005 May 19
4
[LLVMdev] [Cygwin] llvm 'make install' build errors
On Thu, 2005-05-19 at 22:34 +0100, Aaron Gray wrote:
> I do not really feel upto looking into makefiles yet as I don't really know
> automake, configure scripts, etc, etc
>
Aaron, its trivial. Open up tools/llvm-ar/Makefile in an editor. Go to
the TOOLNAME line, delete the space at the end of the line, save the
file, rebuild.
> >I'll patch the makefiles when UIUC's
2008 Oct 11
1
[LLVMdev] can't build LLVM under Cygwin | released MinGW llvm-2.3 image
Julien Lerouge wrote:
> On Mon, Oct 06, 2008 at 08:12:05PM -0400, Chuck Zhao wrote:
>
>> I used to be able to build LLVM (from source) under Cygwin for llvm-2.2
>> and previous releases, but can't continue the trend since the release of
>> LLVM 2.3.
>> I have tried a wide variety of gcc compilers (gcc 3.4.4, 4.1.2, 4.2.4
>> and 4.3.2) on cygwin, they
2005 Jan 21
0
[LLVMdev] making cygwin nightly builds available?
Hi Marshall,
LLVM *is* cool .. just not on cygwin! :)
Sorry for the sad state of the cygwin build. I had hoped to have it
cleaned up by now but many other things have been taking my time.
Although the build has been succeeding in recent days, I'm not sure it
will buy you anything. NONE of the nightly tests pass on cygwin. Until I
can get some time to figure out why that is happening, I doubt
2008 Mar 11
0
[LLVMdev] Subversion head: build problem on cygwin?
Hi, Jules.
On Tue, March 11, 2008 2:14 pm, Jules wrote:
> Not sure if this is me or not, because this is the first time I've built
> LLVM on Cygwin, but I can't get a working compile.
Last I checked, LLVM-on-Cygwin has at least two problems, and you've hit
one of them. Working around them isn't too bad, though patches to fix
them would be appreciated.
>
2005 Jan 10
1
[LLVMdev] Cygwin build is still broken
Hi Reid,
>> I've just updated to the latest CVS version and cygwin port
>> is still broken. When building full llvm:
> > Any ideas? Has anybody been able to replicate this issue?
> > GNU assembler 2.15.91 20040725
> > gcc (GCC) 3.4.1 (cygming special)
>
> Cygwin builds just fine for me. It looks like you're using
> the wrong tools. Please read:
2005 Feb 25
2
[LLVMdev] LLVM CygWin build error ?
>Yeah, cygwin is a bit of a beast. There's no pre-compiled binary
>available (I'm working on it). If you want to build yourself, follow
>the instructions in the CFEBuildInstr.html document carefully,
>especially noting the Cygwin specific stuff. For example, you can't use
>the default gcc that comes with Cygwin. I've been successful with GCC
>3.4.3 on Cygwin.
I
2008 Oct 30
0
[LLVMdev] cygwin build problems
> I've attached a patch to fix these. This allows me to build LLVM on cygwin.
Sorry, I didn't mean to include this hunk:
Index: CMakeLists.txt
===================================================================
--- CMakeLists.txt (revision 58429)
+++ CMakeLists.txt (working copy)
@@ -31,8 +31,13 @@
)
if(WIN32)
- set(LLVM_ON_WIN32 1)
- set(LLVM_ON_UNIX 0)
+ if(CYGWIN)
+
2007 Feb 18
2
[LLVMdev] LLVM Cygwin build RLIMIT_RSS configuration problem
On Sun, 2007-02-18 at 21:42 +0000, Aaron Gray wrote:
> Okay I have put a #ifdef HAVE_RLIMIT_RSS round the RSS code.
>
> There needs to be logic added to config system to complement this.
>
> Or shall I just use an #ifdef _CYGWIN_ ?
Please just use #ifdef _CYGWIN_
>
> Regarding the Bytecode writer stuff. I will try adding some inline
> dis-ambiguator functions.
Yeah,
2008 Oct 07
0
[LLVMdev] can't build LLVM under Cygwin | released MinGW llvm-2.3 image
On Mon, Oct 06, 2008 at 08:12:05PM -0400, Chuck Zhao wrote:
> I used to be able to build LLVM (from source) under Cygwin for llvm-2.2
> and previous releases, but can't continue the trend since the release of
> LLVM 2.3.
> I have tried a wide variety of gcc compilers (gcc 3.4.4, 4.1.2, 4.2.4
> and 4.3.2) on cygwin, they all fail at the same location:
>
>
2003 Feb 18
0
progressmeter.c fails to build on Cygwin
Hi,
I didn't had the time to build portable OpenSSH from CVS for some weeks
now. I was very surprised to see that it fails to build on Cygwin.
It only fails in the new progressmeter.c file which has two flaws:
First of all, libgen.h and basename() don't exist on Cygwin (and probably
on other systems). I already implemented this function in the
bsd-cygwin_util.c file but I'd think
2007 Feb 18
0
[LLVMdev] LLVM Cygwin build RLIMIT_RSS configuration problem
Hi Reid,
Cygwin 'sys/resource.h' has get/setrlimit() functions support for
RLIMIT_DATA and RLIMIT_AS but not RLIMIT_RSS.
Aaron
----- Original Message -----
From: "Reid Spencer" <rspencer at reidspencer.com>
To: "LLVM Developers Mailing List" <llvmdev at cs.uiuc.edu>
Sent: Sunday, February 18, 2007 8:32 PM
Subject: Re: [LLVMdev] LLVM Cygwin build
2009 Jan 19
2
[LLVMdev] cygwin build patch
LLVM doesn't build out of the box on Cygwin, because Cygwin defines
uint32_t as "unsigned long" rather than "unsigned int".
The attached patch allows me to build head of svn (rev 62510) on
Cygwin using GCC 4. Can this be committed please?
I realise that the DataTypes.h.in part might be controversial. Also,
there's probably a better place to put it, but I'm not
2007 Feb 18
0
[LLVMdev] LLVM Cygwin build RLIMIT_RSS configuration problem
In order to get Cygwin working there is a need to add a HAVE_RLIMIT_RSS and associated logic.
Aaron
----- Original Message -----
From: Aaron Gray
To: LLVM Developers Mailing List
Sent: Sunday, February 18, 2007 7:00 PM
Subject: [LLVMdev] LLVM Cygwin build RLIMIT_RSS configuration problem
There seems to be a problem with the LLVM Cygwin configuration. Cygwin does not support the
2001 Feb 28
2
[PATCH]: auth.c (pwcopy): Copy pw_gecos field when build for Cygwin
Hi,
the attached patch is very important for Cygwin. I don't know
how I could have missed that for months now :-( I hope this
can be included in 2.5.1p2.
The pw_gecos field in Cygwin's /etc/passwd contains Windows
specific authentication informations which let NT domain
users logon to a machine without the need to inform the
logon server (sshd in our case) about the name of the NT
2008 Feb 10
0
[LLVMdev] semicolon breaking builds on llvm-gcc4.2 cygwin build for arm target 2.2prerelease2
Since we are fast approaching the 10th, I thought it appropriate to report
this "bug" with the build despite not having worked around it.
Build environment is
*Summary:*
When building llvm-gcc with a arm-apple-darwin target on i686-pc-cygwin,
make fails because child calls to configure have an errant semicolon that
causes the --srcdir parameter to be ignored by the configure script.