Displaying 5 results from an estimated 5 matches for "my_arch".
2013 Mar 14
4
exec resource not refreshed when subscribed resource changes
Hello,
I''ve created a little class which should unpack a 7z archive on Windows.
The class has a parameter for passing in the archive version, so that I can
trigger an update when a new version of the archive is available. A
simplyfied version looks like this (requires 7z):
class my_archive ($version = undef) {
file { ''version'':
path => ''C:/the_version'',
content => $version,
ensure => present,
mode => 0666,
}
# Extracting archive creates C:/some/dir
exec { ''unpack_archive'&...
2009 Dec 16
4
[LLVMdev] Compiler driver
...t into doesn't have a linker as such, so I want to use assembly as the default output. I've got to the point of emitting working custom assembly for very simple C programs (i.e. ones that don't rely on libraries). At the moment, I'm doing this through clang-cc and llc:
clang-cc -D=MY_ARCH -emit-llvm-bc -o - in.c \
| llc -filetype=asm -march=my_arch
I want to be able to package this compiler as a cross-compiler - a single binary to go from C to assembly for that target. It should define a macro (as shown above) to allow the target to be identified by source code. I was thinking of...
2009 Dec 16
0
[LLVMdev] Compiler driver
...sn't have a linker as such, so I want to use assembly as the default output. I've got to the point of emitting working custom assembly for very simple C programs (i.e. ones that don't rely on libraries). At the moment, I'm doing this through clang-cc and llc:
>
> clang-cc -D=MY_ARCH -emit-llvm-bc -o - in.c \
> | llc -filetype=asm -march=my_arch
>
> I want to be able to package this compiler as a cross-compiler - a single binary to go from C to assembly for that target. It should define a macro (as shown above) to allow the target to be identified by source code. I...
2006 May 13
0
[LLVMdev] Re: New llvmgcc4 snapshot
...ttner wrote:
>
> Hi All,
>
> There's a new snapshot of llvmgcc4 available here:
>
> http://nondot.org/sabre/2006-05-08-llvm-gcc-4.tar.gz
Chris,
is there any chance that the new frontend will support dynamic loading of
backends? I.e:
llvm-g++ -load my_backend.so -march=my_arch a.c
?
Thanks,
Volodya
2006 May 08
6
[LLVMdev] New llvmgcc4 snapshot
Hi All,
There's a new snapshot of llvmgcc4 available here:
http://nondot.org/sabre/2006-05-08-llvm-gcc-4.tar.gz
This release includes the various portability fixes contributed on
llvmdev, includes fixes to build with mainline CVS (and, thus, *requires*
mainline CVS), and includes various other bug fixes.
If you're interested, please try it out.
Thanks,
-Chris
--