Displaying 4 results from an estimated 4 matches for "some_file_name".
2017 Oct 26
2
LLVM v6.0 Internalize and GlobalDCE PASS can not work together?
...ize, you need to provide it with a list of
> symbols to preserve as external (otherwise everything will be
> internalized, including main, and then DCE will remove everything).
> You can use -internalize-public-api-list=main (a comma-separated list)
> or -internalize-public-api-file=some_file_name where some_file_name
> has the list of symbols. See the comments in
> lib/Transforms/IPO/Internalize.cpp.
>
> -Hal
>
> On 10/24/2017 11:22 PM, Leslie Zhai via llvm-dev wrote:
>> Hi LLVM developers,
>>
>> $ cat hello.c
>> #include <stdio.h>
>>...
2014 Feb 13
0
Error 0x80070032: request not supported on file copy
Hello everyone,
I'm experiencing a strange problem with Samba Version 4.1.4-SerNet-RedHat-7.el6
I have setup a share where users can put stuff (permissions are set to 777 just to be sure for now), but sometimes when I try to copy entire directories an error pops up:
?
Unable to copy some_file_name.ext: Request not supported (0x80070032)
?
This usually happens mostly when directories contains a Thumbs.db files and Windows XP suffers more about this since it stops on error.
Windows 7 seems to be ok, since errors can be ignored.?Not tried with 8.
?
What is the cause?? I have no idea...
?
?...
2017 Oct 25
3
LLVM v6.0 Internalize and GlobalDCE PASS can not work together?
Hi LLVM developers,
$ cat hello.c
#include <stdio.h>
void foo() {
}
int main(int argc, char *argv[]) {
for (int i = 0; i < 10; i++) {
printf("%d\n", i);
}
return 0;
}
$ /opt/llvm-svn/bin/clang --version
Fedora clang version 6.0.0 (trunk 316308) (based on LLVM 6.0.0svn)
Target: x86_64-redhat-linux
Thread model: posix
InstalledDir: /opt/llvm-svn/bin
$
2006 Jul 05
13
interactive web app
I have an arbitrary program written in any language, and it is a binary
(ie foo.exe), that will print out output to stdout constantly every 3-5
seconds.
Is there a way that I can have a web application designed in rails that
will print the output of this program to the browser every 3-5 seconds
in realtime, preferably even in an ajax manner.
thanks
--
Posted via http://www.ruby-forum.com/.