search for: hello

Displaying 20 results from an estimated 91640 matches for "hello".

2007 Aug 26
0
3 commits - libswfdec/swfdec_as_context.c player/swfplay.c test/trace
...index 0000000..b0746d9 --- /dev/null +++ b/test/trace/ASSetPropFlags-extended-5.swf.trace @@ -0,0 +1,8213 @@ +>>>> /ASSetPropFlags-extended-5.swf () +init +>>>> /ASSetPropFlags-extended-5.swf (1) +>>>> /ASSetPropFlags-extended-8.swf (1) +[object Object] +0 => Hello World +8 => Hello World +16 => Hello World +24 => Hello World +32 => Hello World +40 => Hello World +48 => Hello World +56 => Hello World +64 => Hello World +72 => Hello World +80 => Hello World +88 => Hello World +96 => Hello World +104 => Hello World +112 =&...
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 understand that \ is an escape character, so I tried: > print("hello \"hello\" hello&q...
2008 Jan 24
2
Problems when compiling MFC application
...m all of you i am using the wine-0.9.53 latest version. Now i&nbsp;am in a need to compile MFC applications with wine. when i tried to compile my sample application i am getting errors like</font><br> &nbsp;<br> <font size="2">[nagarjunab@ibi212 mfc_general_hello]$ make</font><br> <font size="2">wineg++ -c&nbsp; -mno-cygwin -I.&nbsp;&nbsp;&nbsp; -o hello.o hello.cpp</font><br> <font size="2">In file included from hello.cpp:17:</font><br> <font size="2">stdafx...
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:* PKG_FCFLAGS=&qu...
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: main Hello: _Z4rajuif Hell...
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 s...
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 #' @useDynLib helloOpenMP, .registration = TRUE hello <- function(nthreads=4) { (OpenMPController::omp_set_num_threads(nthreads)) .Fortran("hello&...
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: undefined symbol: _ZSt16__ostream_insertIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_PKS3_i -load request ignored....
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 wondering (if my analysis is correct) if th...
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* hello.native* hello.s Ted at XPLanguages /cygdrive/c/Projects/Expl...
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 -mips32 -EL You can also generate object code with this command: llc -march=mipsel hello.bc -o hello.o -filetype=obj Then run the linker: mips-linux-gnu-gcc hello.o -o hello -mips32 -EL On Thu,...
2012 Sep 26
0
[LLVMdev] [Questions] clang cross compilation and SimpleScalar simulation
...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 error messages below : hello.s: Assembler messages: hello.s:1: Error: Unknown pseudo-op: `.syntax' hello.s:2: Error: Unknown pseudo-op: `.eabi_attribute' hello.s:3: Error: Unknown pseudo-op: `.eabi_attribute' hello.s:4: Error: Unknown pseudo-op: `.eabi_attribute' hello.s:5: Error: Unknown pseudo-op: `.eabi...
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;...
2012 Sep 26
1
[LLVMdev] [Questions] clang cross compilation and SimpleScalar simulation
...5.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 error messages below : > > hello.s: Assembler messages: > hello.s:1: Error: Unknown pseudo-op: `.syntax' > hello.s:2: Error: Unknown pseudo-op: `.eabi_attribute' > hello.s:3: Error: Unknown pseudo-op: `.eabi_attribute' > hello.s:4: Error: Unknown pseudo-op: `.eabi_attribute' > hello.s:5: Error: U...
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 De...
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[] args) {...
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 '-hell...
2009 Jul 19
0
[LLVMdev] LLVM Hello Pass load error when using opt -load Hello.so
...ul 17, 11:48 am, Chuck Zhao <cz... at eecg.toronto.edu> wrote: > While learning to write LLVM passes and following the precise > instructions underhttp://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: > undefined symbol: > _ZSt16__ostream_insertIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_PKS3_i &gt...
2008 May 11
4
Latest rb_win32_select patch
Hi Park, I tried your latest patch and ran the sample code: readPipe, writePipe = IO.pipe t = Thread.new{ sleep 5 while true sleep 0.1 puts "got #{readPipe.readline.length} bytes" end } i = 1 while true i += 1 sleep 1 puts "hello from main" if i > 3 writePipe.puts "a"*2048 end end t.join At the console I typed the word "world", let it run for a bit, then hit Ctrl-C. It mostly seems to work. Here was the difference between Ruby with your patch and JRuby 1.1.1. # Ruby 1.8.6-114 with...