search for: filetyp

Displaying 20 results from an estimated 677 matches for "filetyp".

Did you mean: filetype
2009 Jul 07
1
Ghost file.
...ve.h.tmp-31838-1822528541 It has a name, but stat fails (so no inode, I guess). Also I can create another file with the same name in the directory. I cannot remove the file, or containing directory. fsck output: root 5 inode 273 errors 0 unresolved ref dir 270 index 2 namelen 4 name attr filetype 0 error 3 root 5 inode 274 errors 0 unresolved ref dir 271 index 2 namelen 2 name cs filetype 0 error 3 root 5 inode 275 errors 0 unresolved ref dir 271 index 3 namelen 2 name de filetype 0 error 3 root 5 inode 276 errors 0 unresolved ref dir 271 index 4 namelen 2 name es f...
2009 Jul 27
3
[LLVMdev] llc - generation of native machine code
...or (xPEC-processor from NetX chip, http://hilscher.com/ ). I have done support of this target successfully! Assembler code can be emitted with debug information. LLVM - great!) But now I am looking for generation of machine code for my target. I have seen, that "llc" has option "-filetype". It has default value "-filetype=asm", but has more values, as "-filetype=obj" and "-filetype=dynlib". "obj" is very interesting, but it till not supported :-( My goal is generation of elf-file for my target, where can be placed machine instructi...
2010 Mar 27
3
[LLVMdev] Static code generation - is it gone from LLVM 2.7?
...t; > No docs, you can look at the macho emitter to see how it works. > >> If it's llvm-mc you are talking about what is the current implementation >> status? I mean on what target and/or input data is it known to work? > > Two different things here: > > 1) llc -filetype=obj > 2) llvm-mc: this provides a stand alone assembler (among other things) > > llc -filetype=obj does not support inline assembly yet, but other than that it is believed to be 100% correct on darwin-i386 and very nearly correct on darwin-x86_64. > > llvm-mc has parsers for X86 3...
2009 Jul 27
0
[LLVMdev] llc - generation of native machine code
On Mon, Jul 27, 2009 at 8:25 AM, Rudskyy<tema13tema at yahoo.de> wrote: > But now I am looking for generation of machine code for my target. I have > seen, that “llc” has option "-filetype". > > It has default value "-filetype=asm", but has more values, as > "-filetype=obj" and "-filetype=dynlib". > > “obj” is very interesting, but it till not supported L There's work in progress to make this work properly, but it's still a...
2005 Dec 15
3
Ezstream Program Call Patch
Alrighty, Got it patched and working (at least in my one setup). You can pull the patch from: http://denetron.com/~dballenger/ezstream-program.patch (I can post the pre-patched source too if people would like) You'll have to add a "<filetype></filetype>" line into your config files, just put "file" if you want it to work just by reading that file or playlist. Put "script" (no quotes) for it to use the filename path as the program to fetch the media file path from. If some people could give it a whirl...
2003 Mar 15
1
Recursive filetype include
...es) that I would like to include these .htm files. I tried using many variations of --include 'subdir/*.htm' but this does not seem to work. It includes the .htm's in the main subdirectory - but not any of its subdirectories. Is there anyway I can get rsync to recursively include this filetype for all the subdirectories of a subdirectory - yet exclude these types for all the other branches of the main directory tree? Any info would be most appreciated, -Mark
2008 Jul 08
1
smb_filetype_to_mode : filetype out of range
Hello, I have a problem with a NAS. I have mounted the NAS with : smbmount //ip_nas//folder_name /mnt/disque When i list the content of this folder (ls -l /mnt/disque), i have this message : smb_filetype_to_mode : filetype out of range : 12336 It lists the folder with strange names, for instance : 5?? cationd r ???? The biggest file in this folder is an image disc file of 2Gbytes. Thanks for your futures answers ____________________________________________________ En quelques secondes, cr?ez-v...
2010 Mar 27
0
[LLVMdev] Static code generation - is it gone from LLVM 2.7?
...Yes. > > Thank you for answers! > > Now there is a way to implement what I'd like to. But it would be MUCH > better if LLVMTargetMachine::addPassesToEmitFile could take arbitrary > MCStreamer as input. Without such a feature when compiling bytecode > (i.e. emulating llc -filetype=obj behaviour) I have to emit .s file > first, disassemble it and feed to custom MCStreamer. That'll hopely work > but it's ugly. What are you trying to do? I don't see why you'd have to do that. -Chris
2010 Mar 27
0
[LLVMdev] Static code generation - is it gone from LLVM 2.7?
...gt; That's great. Any samples, docs? No docs, you can look at the macho emitter to see how it works. > If it's llvm-mc you are talking about what is the current implementation > status? I mean on what target and/or input data is it known to work? Two different things here: 1) llc -filetype=obj 2) llvm-mc: this provides a stand alone assembler (among other things) llc -filetype=obj does not support inline assembly yet, but other than that it is believed to be 100% correct on darwin-i386 and very nearly correct on darwin-x86_64. llvm-mc has parsers for X86 32/64 that are reasonably...
2013 Mar 04
2
[LLVMdev] [MIPS] How can I add a constraint to LLVM/Clang for MIPS BE?
...lang and llc. Are the results what you expected? I so I will prepare the patches for commitment. > > Jack > > clang ../mips_R_JiaLiu.c -o mips_R_JiaLiu.ll -emit-llvm -O3 -S -target mipsel-unknown-linux -std=gnu89 > llc mips_R_JiaLiu.ll -o mips_R_JiaLiu.o -mcpu=mips32r2 -march=mipsel -filetype=obj > mips-linux-gnu-gcc -mips32r2 -O3 -EL -fPIC -o mips_R_JiaLiu.exe mips_R_JiaLiu.o > I use your way to compile test case: llvm-install/bin/clang constraints.c -o constraints.ll -emit-llvm -O3 -S -target mipsel-unknown-linux -std=gnu89 --sysroot /Users/jia/project/Cross-SDK/sdk/mipsel-gnu...
2016 Mar 23
2
Help with pass manager
...LibraryInfoWrapperPass *tliwp = new TargetLibraryInfoWrapperPass(TLII); passmanager.add(tliwp); module->setDataLayout(tmachine->createDataLayout()); setFunctionAttributes(cpuname, ftrlist, *module); if (RelaxAll.getNumOccurrences() > 0 && FileType != TargetMachine::CGFT_ObjectFile) errs() << "warning: ignoring -mc-relax-all because filetype != obj"; { raw_pwrite_stream *outstream = &objoutstream->os(); SmallVector<char, 0> filebuf; std::unique_ptr<raw_svector_...
2003 Sep 18
1
Save object R with tkgetSaveFile
...not save any file, for example the next script run OK but not save the file who i like to save, how i cant to save and object R with tkgetSaveFile, how i use the function save(objet, file="foo.R") with tkgetSaveFile ?What is the error?. I'm work with R 1.7.1 library(tcltk) x<-1 filetypes <- list("{Texto {.txt}} {Word {.doc}} {Pdf {.pdf}} {Postscript {.ps}} {fuente C{.C}} {Eps {.eps}} {Latex {.tex}} {Todos *}") fileD <- tkgetSaveFile (filetypes=filetypes,initialdir="c:\\temp",defaultextension=".txt") save(x,file="foo.R&qu...
2011 Apr 04
1
detect filetype (as in unix 'file')
...ng a shell? E.g to do this: > system("file density.plot") density.plot: PDF document, version 1.4 but without using system()? I tried file() and file.info(), but both do display the information I am looking for. -- View this message in context: http://r.789695.n4.nabble.com/detect-filetype-as-in-unix-file-tp3424562p3424562.html Sent from the R help mailing list archive at Nabble.com.
2011 Mar 17
1
Setting default program for a filetype
Hello, I use a windows program in Wine that opens images in another program. I know that in WIndows, it uses the default program associated with the filetype. However in Ubuntu, the process started when I click on an image is "C:\Program Files\Internet Explorer\iexplore.exe -nohome" So I see no image. I have tried launching manually iexplore with the image path as parameter, and it works. Is there a way to modify the program or the comman...
2011 Jun 17
2
[LLVMdev] Simple clang + llc crash on Windows 7
...n.c:      void mainCRTStartup()      {      } This is compiled to intermediate with debug symbols using:      clang -g -O0 -c main.c -emit-llvm -o main.bc This runs fine and outputs main.bc - disassembly is here: http://donw.org/main.bc.txt I then try to comple that as an .obj file:      llc -filetype=obj main.bc And I get a crash with the error message:      EmitRawText called on an MCStreamer that doesn't support it,  something must not be fully mc'ized I understand from the 2.9 release notes that filetype=obj is currently experimentalbut the above is lifted from the visual studio...
2011 Oct 28
2
[LLVMdev] instcombine does silly things with vector x+x
Consider the following function which doubles a <16 x i8> vector: define <16 x i8> @test(<16 x i8> %a) { %b = add <16 x i8> %a, %a ret <16 x i8> %b } If I compile it for x86 with llc like so: llc paddb.ll -filetype=asm -o=/dev/stdout I get a two-op function that just does paddb %xmm0 %xmm0 and then returns. llc does this regardless of the optimization level. Great! If I let the instcombine pass touch it like so: opt -instcombine paddb.ll | llc -filetype=asm -o=/dev/stdout or like so: opt -O3 paddb.ll |...
2010 Mar 27
2
[LLVMdev] Static code generation - is it gone from LLVM 2.7?
Chris Lattner wrote: > On Mar 27, 2010, at 3:41 AM, Peter Shugalev wrote: > >>>> Now LLVMTargetMachine::addPassesToEmitFile has changed. It adds its own >>>> code emitter and it's always MachOCodeEmitter which of course I don't need. >>>> >>>> Is there a new way to create non-JIT object code in LLVM 2.7? >>> Nope, sorry. This
2013 Apr 23
3
[LLVMdev] Is the llvm ARM support big endian elf/obj output?
The llvm ARM backend is little endian elf output as my examination as below. Is it support bid endian by other llc options as below? llc  -filetype=obj -march=arm // little endian llc  -filetype=obj -march=? or -otheroption=? // to output big endian Jonathan -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130423/cd183228/attachment.html>
2005 Sep 16
2
[LLVMdev] Problems Cross Compiling for x86 and ia64
...work fine when building for ppc. Here's what I tried: LLVM/cfe-src/install/bin/gcc -o loopUnroll loopUnroll.c LLVM/obj-llvm-darcslocal/Debug/bin/llvmc -O3 -o loopUnroll-llvm loopUnroll.bc llvm-ld: warning: Cannot find library 'c' LLVM/obj-llvm-darcslocal/Debug/bin/llc -march=x86 -f -filetype=obj -o loopUnroll-x86 loopUnroll.bc LLVM/obj-llvm-darcslocal/../llvm-darcslocal/llvm/lib/CodeGen/ELFWriter.cpp:63: failed assertion `0 && "unimp"' ^Cmake: *** [llvm-x86] Abort trap (core dumped) -- note that without -filetype=obj I get no problems and an apparently fine x86...
2019 Jan 07
2
[LLD] [WASM] wasm/function-index.test failing
...st. This is from 'ninja check-all'. -David FAIL: lld :: wasm/function-index.test (1941 of 1955) ******************** TEST 'lld :: wasm/function-index.test' FAILED ******************** Script: -- : 'RUN: at line 1'; /build/x86_64/bin/llc -filetype=obj /src/lld/test/wasm/Inputs/ret32.ll -o /build/x86_64/tools/lld/test/wasm/Output/function-index.test.tmp.ret32.o : 'RUN: at line 2'; /build/x86_64/bin/llc -filetype=obj /src/lld/test/wasm/Inputs/ret64.ll -o /build/x86_64/tools/lld/test/wasm/Output/function-index.test.tmp.ret64.o : '...