Displaying 20 results from an estimated 10000 matches similar to: "[RFC] One or many git repositories?"
2016 Sep 04
4
[RFC] One or many git repositories?
> On Sep 3, 2016, at 6:05 PM, Patrice Kouame <pkouame at mac.com> wrote:
>
> Someone mentioned llvm in a mono repository below…
Right, we actually have a proposal to take what is in the current SVN repo here: http://llvm.org/svn/llvm-project/ and migrate this to a single repository.
I was not sure if you were referring to this proposal (monorepo) or to the recent emails about
2016 Sep 03
2
[RFC] One or many git repositories?
> On Sep 3, 2016, at 3:04 PM, Patrice Kouame <pkouame at mac.com> wrote:
>
>
> +1 for keeping it separate.
Can you clarify what you referring to specifically?
This sub thread (the last 4 messages) started with a mention of GCC dependencies. It is not clear to me how to relate to llvm now.
Mehdi
>
> One can easily set up a git subproject structure if the need is
2016 Sep 03
3
[RFC] One or many git repositories?
> On Sep 2, 2016, at 12:33 PM, Dimitry Andric via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>
> On 16 Aug 2016, at 00:12, Lawrence, Peter via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>>
>> As someone that has worked with both gcc and llvm,
>>
>> One thing about gcc that drives me bat-guano-crazy is that
>> First you check out gcc, try to
2011 Mar 22
4
[LLVMdev] -emit-llvm on ubuntu is broken
Hi Eric,
here is my -emit-llvm -S -v output:
Using built-in specs.
COLLECT_GCC=gcc-4.5
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.5.1/lto-wrapper
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro
4.5.1-7ubuntu2' --with-bugurl=file:///usr/share/doc/gcc-4.5/README.Bugs
--enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr
2013 Feb 24
0
[LLVMdev] make error building llvm/clang 3.2 on Linux
I'm continuing this here in llvm-dev since the thread was started here,
but, in hindsight, it may have been better in cfe-dev, because the
problem seems to be related to clang.
I turned on "verbose" mode in make (VERBOSE=1 TOOL_VERBOSE=1) and found
that it is clang, not gcc, that is being used at this point in the make.
Based on the command issued (particularly with the --sysroot
2013 Feb 26
2
[LLVMdev] make error building llvm/clang 3.2 on Linux
Just in case someone is having similar problems and/or following this
thread, here's my final "solution" (at least, for now).
In my bash build script, prior to configure, I set the C_INCLUDE_PATH
and CPLUS_INCLUDE_PATH to empty strings, and then set some other
environment variables instead:
export C_INCLUDE_PATH=
export CPLUS_INCLUDE_PATH=
2011 Mar 22
0
[LLVMdev] -emit-llvm on ubuntu is broken
Looks like something wonky with DragonEgg.
Duncan?
-eric
On Mar 21, 2011, at 7:05 PM, stackunderflow wrote:
>
> Hi Eric,
>
> here is my -emit-llvm -S -v output:
>
> Using built-in specs.
> COLLECT_GCC=gcc-4.5
> COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.5.1/lto-wrapper
> Target: i686-linux-gnu
> Configured with: ../src/configure -v
2015 Mar 09
5
Notes on building a gcc toolchain for Rtools (but not multilib)
Hi,
[This is a follow-up to the "New version of Rtools for Windows" thread
in January, but I just subscribed and don't know how to reply to an
old thread -- my apologies.]
I was able to use the nuwen distro to build a gcc 4.9.2 toolchain and
use it to build the latest R-patched with it.
Below are some notes about what I did; I hope they will be useful for
keeping Rtools
2016 Feb 29
3
Possible soundness issue with available_externally (split from "RFC: Add guard intrinsics")
On Sat, Feb 27, 2016 at 1:41 PM, Sanjoy Das
<sanjoy at playingwithpointers.com> wrote:
> Just as a reality check, I wrote up a demonstration where one link
> order causes a SIGFPE and another doesn't (and the program is well
> defined, as far as I can tell). All TUs are compiled with -O3. This is also
> an instance where we don't actually speculate an inline function,
2011 Mar 22
0
[LLVMdev] -emit-llvm on ubuntu is broken
On Mar 21, 2011, at 6:36 PM, stackunderflow wrote:
>
> I try to generate a human readable .ll file on Linux. I installed llvm-gcc
> but as I see it can generate only assembly code (-S option). Is there any
> way to get something like what is generated by llvm online compiler?
>
> That's what I get with llvm-gcc -S -emit-llvm hello.c on Ubuntu 10.10:
llvm-gcc -v ?
-eric
2012 Jun 22
1
[LLVMdev] Compile error of latest Dragonegg on Ubuntu with GCC 4.5
Yest. thanks. I just resolved this error by installing MPFR, MPC and GMP(by
the way, these are not listed
as prerequisites in the website.). But other errors come:
/home/xxx/llvm/tools/dragonegg/src/TypeConversion.cpp: In function
> ‘llvm::FunctionType* ConvertArgListToFnType(tree_node*,
> llvm::ArrayRef<tree_node*>, tree_node*, bool, llvm::CallingConv::ID&,
>
2012 Oct 21
0
[LLVMdev] dragonegg polly support broken?
On 10/20/2012 05:38 PM, Jack Howarth wrote:
> Duncan,
> Is the documentation for using Polly support in dragonegg correct? I built llvm/polly/dragonegg
> using the documentation at http://polly.llvm.org/example_load_Polly_into_dragonegg.html
> with...
>
> GCC=/sw/lib/gcc4.7/bin/gcc-4 LLVM_CONFIG=/sw/opt/llvm-3.2/bin/llvm-config ENABLE_LLVM_PLUGINS=1 make
2012 Jun 22
0
[LLVMdev] Compile error of latest Dragonegg on Ubuntu with GCC 4.5
>> /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/plugin/include/real.h:27:18:
>> fatal error: mpfr.h: No such file or directory
>
> I did some search but found few relevant results.
> Any idea what's going on?
Do you have MPFR installed?
--
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg State University
2012 Jun 22
2
[LLVMdev] Compile error of latest Dragonegg on Ubuntu with GCC 4.5
Hi,
When I tried to compile Dragonegg using the SVN trunk code,
I encountered failure with error message:
In file included from
> /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/plugin/include/rtl.h:28:0,
> from /home/xxx/llvm/dragonegg/src/Convert.cpp:63:
> /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/plugin/include/real.h:27:18:
> fatal error: mpfr.h: No such
2016 Feb 27
0
Possible soundness issue with available_externally (split from "RFC: Add guard intrinsics")
Just as a reality check, I wrote up a demonstration where one link
order causes a SIGFPE and another doesn't (and the program is well
defined, as far as I can tell). All TUs are compiled with -O3. This is also
an instance where we don't actually speculate an inline function, but only
DSE across it (after deducing readnone).
Here's the link https://github.com/sanjoy/comdat-ipo
2012 Oct 21
2
[LLVMdev] dragonegg polly support broken?
Duncan,
Is the documentation for using Polly support in dragonegg correct? I built llvm/polly/dragonegg
using the documentation at http://polly.llvm.org/example_load_Polly_into_dragonegg.html
with...
GCC=/sw/lib/gcc4.7/bin/gcc-4 LLVM_CONFIG=/sw/opt/llvm-3.2/bin/llvm-config ENABLE_LLVM_PLUGINS=1 make CPPFLAGS="-DENABLE_LTO -I/sw/include"
The resulting dragonegg plugin works fine
2012 Apr 05
1
32/64-bit Library Sharing and Placement
Good evening...
I'm rebuilding much of the gnu toolchain for some development testing I'm working.? GMP, MPC, MPFR, PPL, as well as many others.? I need to be able to have both 32 and 64 bit versions of these libraries avilable on the system, in more or less the same path (/toolchain/lib, /toolchain/lib64).?
Generically speaking, is there an easy way to build both 32 and 64 bit versions
2011 Apr 19
2
[LLVMdev] dragonegg bootstrap gcc 4.5.2
The current dragonegg trunk svn used under FSF gcc 4.5.2 with llvm 2.9
is able to bootstrap FSF gcc 4.5.2 itself on x86_64-apple-darwin10...
Using built-in specs.
COLLECT_GCC=gcc-mp-4.5
COLLECT_LTO_WRAPPER=/opt/local/libexec/gcc/x86_64-apple-darwin10/4.5.2/lto-wrapper
Target: x86_64-apple-darwin10
Configured with: ../gcc-4.5.2/configure --prefix=/opt/local --build=x86_64-apple-darwin10
2011 Mar 22
2
[LLVMdev] -emit-llvm on ubuntu is broken
Hi Eric,
> Looks like something wonky with DragonEgg.
you need to use -fplugin-arg-dragonegg-emit-ir or -flto with dragonegg,
not -emit-llvm. Also, you currently have to use -S (getting human readable
IR) rather than -c because with -c gcc will run cc1 with -S (getting human
readable IR) then pass the result to the system assembler which of course
barfs. This is documented on the web-page
2011 Mar 22
2
[LLVMdev] -emit-llvm on ubuntu is broken
I try to generate a human readable .ll file on Linux. I installed llvm-gcc
but as I see it can generate only assembly code (-S option). Is there any
way to get something like what is generated by llvm online compiler?
That's what I get with llvm-gcc -S -emit-llvm hello.c on Ubuntu 10.10:
.file "hello.c"
.ident "GCC: (Ubuntu/Linaro 4.5.1-7ubuntu2) 4.5.1 LLVM: "