Displaying 20 results from an estimated 92115 matches for "hellos".
Did you mean:
hello
2007 Aug 26
0
3 commits - libswfdec/swfdec_as_context.c player/swfplay.c test/trace
libswfdec/swfdec_as_context.c | 3
player/swfplay.c | 2
test/trace/ASSetPropFlags-extended-5.swf |binary
test/trace/ASSetPropFlags-extended-5.swf.trace | 8213 +++++++++++++++++++++++++
test/trace/ASSetPropFlags-extended-6.swf |binary
test/trace/ASSetPropFlags-extended-6.swf.trace | 8213 +++++++++++++++++++++++++
2006 Nov 30
3
escape character to get " printed in output
I want to use R to run dos commands (either by create batch files or
using shell())and I need to write double quotes on the file (or shell
command). As an easier example, lets take:
> print("hello 'hello' hello")
[1] "hello 'hello' hello"
Lets say instead of the above, I wanted:
"hello "hello" hello"
If possible, how would I do that?
I
2008 Jan 24
2
Problems when compiling MFC application
<table cellspacing='0' cellpadding='0' border='0' ><tr><td style="font: inherit;"><font size="2">Dear All,</font><br>
<br>
<font size="2"> This is my first post on the wine organisation mailing lists, i would like to inform all of you i am using
2019 Feb 01
2
Set the number of threads using openmp with .Fortran?
Hi everybody,
I'm trying to develop an R package with Fortran and OpenMP. I wrote a
simple hello world but I'm not able to set the number of threads. I found this
old email chain
<http://r.789695.n4.nabble.com/Set-the-number-of-threads-using-openmp-with-C-td2284685.html>
and
I tried to set my compile instructions accordingly but i had no luck.
*This is my makevars:*
2010 Jun 03
2
[LLVMdev] Getting rid of the dangling names of functions
Hi all,
I am a beginner in llvm trying to write some basic passes like printing the
name of all the functions in "Hello.cpp" file attached underneath. Also find
attached "hello.cpp" on which i am testing the pass .When i run the command:
"opt -load $HOME/llvm/src/Debug/lib/TEMP.so -hello < hello.bc > /dev/null"
.The output shown is
Hello: _GLOBAL__I_x
Hello:
2005 Jul 08
1
[LLVMdev] Getting started with LLVM Passes
I am attempting to get started with LLVM passes by running the Hello
pass. On my FreeBSD 5.x box, I've written and compiled (with
llvm-gcc) a Hello program, and also compiled the Hello pass in the
lib/Transforms/Hello directory.
I know that this results in a number of files, as follows:
> ls -l LLVM/llvm/lib/Transforms/Hello/Debug/
total 128
-rw-r--r-- 1 sean staff 11004 Jul 8 16:25
2019 Feb 02
1
Set the number of threads using openmp with .Fortran?
I got this to work on Linux but it is not working on Windows. *My
understanding is that this should also work on windows, is that correct?*
If so, what should I do? differently?
To get it to work on Linux, I modified my R script as follows:
#' OpenMP Hello World
#'
#' @param nthreads The number of threads that you want to use
#' @example
#' hello(nthreads=2)
#' @export
2009 Jul 17
2
[LLVMdev] LLVM Hello Pass load error when using opt -load Hello.so
While learning to write LLVM passes and following the precise
instructions under http://llvm.org/docs/WritingAnLLVMPass.html,
<http://llvm.org/docs/WritingAnLLVMPass.html>
I got this error when loading the hello pass to run the test program:
opt -load ./Release/lib/Hello.so -hello < test/test.bc > /dev/null
Error opening './Release/lib/Hello.so': ./Release/lib/Hello.so:
2015 Feb 10
1
Missing make dependencies?
I'm seeing some sporadic build failures with 'make -j4'. The failures are:
make[4]: *** No rule to make target 'hello.c32', needed by 'all'. Stop.
I've only seen the failures with com32/samples/hello.c32 and com32/rosh/rosh.c32.
I'm not a make expert, but I think it's due to missing dependencies. This patch
seems to fix my failures, but I'm
2008 Feb 15
2
[LLVMdev] Question on link error
So I’ve built llvm-2.2 using Cygwin, and I think I’ve got all the right bits
in the right places, but I’m getting a strange error when running through
the hello.c examples from the Web site:
Ted at XPLanguages /cygdrive/c/Projects/Exploration/llvm
$ gcc hello.s -o hello.native
Ted at XPLanguages /cygdrive/c/Projects/Exploration/llvm
$ ls
hello.bc hello.c* hello.exe*
2012 Feb 24
2
[LLVMdev] Generate Executable to Mips
You will need to install a cross compiler.
I think you can find one somewhere in this link:
https://sourcery.mentor.com/GNUToolchain/
Once you have a cross compiler, this should do what you want (if you
want little-endian code):
clang -target mipsel-unknown-linux -ccc-clang-archs mipsel -O3
hello.c -o hello.bc -emit-llvm
llc -march=mipsel hello.bc -o hello.s
mips-linux-gnu-gcc hello.s -o hello
2012 Sep 26
0
[LLVMdev] [Questions] clang cross compilation and SimpleScalar simulation
Dear all
I use arm-linux-gcc 2.95.2, because the code generated by version 3.X and
4.X can not run on SimpleScalar.
So I use the arm-linux-gcc 2.95.2 *only*, the version is recommended by
SimpleScalar.
The code generated by arm-linux-gcc 2.95.2 can run on SimpleScalar.
Now I want to use llvm/clang to generate ARM assembly code and
arm-linux-gcc 2.95.2 to be assembler.
Unfortunately, I got some
2017 Apr 15
2
Why does an LLVM pass based on FunctionPass not get triggered for certain functions?
I am learning to write LLVM pass by trying to reproduce [hello world][1]
example. The pass `hello.cpp` looks like:
#include "llvm/Pass.h"
#include "llvm/IR/Function.h"
#include "llvm/Support/raw_ostream.h"
using namespace llvm;
namespace {
struct Hello : public FunctionPass {
static char ID;
Hello() : FunctionPass(ID) {}
2012 Sep 26
1
[LLVMdev] [Questions] clang cross compilation and SimpleScalar simulation
Simplescalar is not compatible with llvm because the binutils simplescalar is based on is ancient.
Jim
On Sep 26, 2012, at 12:21 AM, 陳奕梅 <ymchen at sslab.cs.nctu.edu.tw> wrote:
> Dear all
>
> I use arm-linux-gcc 2.95.2, because the code generated by version 3.X and 4.X can not run on SimpleScalar.
> So I use the arm-linux-gcc 2.95.2 *only*, the version is recommended by
2024 Oct 24
3
readLines() and unz() and non-empty final line
But note:
> zip("hello.zip", "hello.txt")
updating: hello.txt (stored 0%)
> readChar(unz("hello.zip","hello.txt"),100)
[1] "hello"
I leave it to you and other wiser heads to figure out.
Cheers,
Bert
On Thu, Oct 24, 2024 at 8:57?AM Iris Simmons <ikwsimmo at gmail.com> wrote:
> Hi Mikko,
>
>
> I tried running a few
2012 Sep 26
3
[LLVMdev] [Questions] clang cross compilation and SimpleScalar simulation
Hi Jim,
On Tue, Sep 25, 2012 at 10:52:58AM -0700, Jim Grosbach wrote:
> These errors are from the assembler, not LLVM. Specifically, your binutils is
> too old. Given that it doesn't even recognize the ".syntax" directive, they're
> *very* much too old. You need to upgrade.
> -Jim
She said in her previous mail,
P.S. Because I got error when I use
2006 Feb 08
1
[LLVMdev] LLVM Hello Project generating .lo file in place of .so file.
Hello,
I am trying to compile the Hello Project of the lib/Transforms/Hello
subdirectory according to the instructions given on
http://llvm.cs.uiuc.edu/docs/WritingAnLLVMPass.html document. I am
using 1.6cvs source to compile LLVM. The problem is that after running
the Make file on the project, the Debug subdirectory contains .lo file
in place of .so file. I need the .so file to use with opt
2012 Jun 21
1
[LLVMdev] Error: unsupported GC: vmkit
Hi,I have recently installed llvm-3.1 , gnu classpath-0.97.2 and vmkit I compiled a simple java file "hello.java" to hello.class Then converted hello.class to llvm bytecode(hello.bc) using vmjc from vmkitwhen i tried to run "hello.bc" using lli
I am getting the following error
shyam at shyam:~$ cat hello.javaimport java.io.*;
class hello {
public static void main(String[]
2010 Jun 02
3
[LLVMdev] can't run the Hello Pass: either not registered or registered multiple times, what is the problem?
I am trying to run the HELLO LLVM Pass under WinXP/MinGW, by following
the precise steps available at
http://www.llvm.org/docs/WritingAnLLVMPass.html.
The pass failed to run, giving me the following error:
opt -load Release/lib/Hello.dll -hello < ./hello.bc > /dev/null
opt.exe: Unknown command line argument '-hello'. Try:
'C:\MSYS\opt\llvm-2.7\bin\opt.exe -help'
make:
2009 Jul 19
0
[LLVMdev] LLVM Hello Pass load error when using opt -load Hello.so
Hey Chuck,
I'm afraid I can't reproduce your error but...a problem you may run
into later is that opt will complain with
opt: llvm/lib/VMCore/Pass.cpp:149:
void<unnamed>::PassRegistrar::RegisterPass(const llvm::PassInfo&):
Assertion `Inserted && "Pass registered multiple times!"' failed.
Aborted
I "fixed" this by replacing the LLVMLIBS line in