search for: clag

Displaying 11 results from an estimated 11 matches for "clag".

Did you mean: cla
2012 Jul 06
0
[LLVMdev] how to change a compiler from a host to a target in Clang's assembler and linker
...s-compile environment. My environment is as follows: > ------ > HOST: 32-bit Fedora 16 with Intel Core i7 > gcc/g++ compiler available > TARGET: 32-bit mips-typed linux > gnu gcc/g++ for 32-bit mips-typed linux available > ------ * What do you specify as -target? (eg. clag -c -target i686-pc-mingw32) * Which toolchain have you installed and what is the prefix of it? AFAIU, GNU binutils for the target would be essential. (eg. /usr/bin/i686-pc-mingw32-ld) > As Clang's option is "-c" in use, my programs are compiled and linked under a host machine'...
2019 Mar 08
2
Query about JIT
...ode to C, storing the C code in a char buffer, and passing it to TCC programmatically via the API provided. I get a function pointer in return, which I store and invoke as needed. Delving into the LLVM documentation, I found that one possible way to achieve the same functionality in LLVM is to use clag/libclang to convert the C source to LLVM IR, load this IR into the the JIT context and (skipping some steps I'm yet to figure out) get the desired function pointer. Is this approach the right one? One issue I foresee is that libclang's clang_parseTranslateUnit() function expects the C code...
2018 Apr 30
3
4.2.14 (or newer) support "Windows for Workgroups 3.1a"?
...ly, I think that you haven't got a PDC, you have an AD DC, the > 'windows 2008 PDC' bit gave that away ;-) Sorry, I am not a windows sysadm and I lack of correct terminology; I am not even sure if it was a 2008 or something else actually. > You then want to use something that is clagged on top of DOS 6.22 and > get that to talk to AD, something that really doesn't understand > domains (the hint is in what it is called) It cannot understand the domain and authenticate over it, but this is not a problem as the WfWg doesn't export any folder and nothing connects to...
2012 Jul 04
6
[LLVMdev] how to change a compiler from a host to a target in Clang's assembler and linker
Hi, I would like to ask you how to use Clang in cross-compile environment. My environment is as follows: ------ HOST: 32-bit Fedora 16 with Intel Core i7 gcc/g++ compiler available TARGET: 32-bit mips-typed linux gnu gcc/g++ for 32-bit mips-typed linux available ------ As Clang's option is "-c" in use, my programs are compiled and linked under a host
2019 Mar 12
2
Query about JIT
...char buffer, and passing it to TCC > programmatically via the API provided. I get a function pointer in return, > which I store and invoke as needed. > > > > Delving into the LLVM documentation, I found that one possible way to > achieve the same functionality in LLVM is to use clag/libclang to convert > the C source to LLVM IR, load this IR into the the JIT context and > (skipping some steps I'm yet to figure out) get the desired function > pointer. > > > > Is this approach the right one? One issue I foresee is that libclang's > clang_parseTran...
2005 Jun 05
5
A long digression on packages
...not that I don't like maintaining concord or think the functions are worthless, just that I am mildly embarrassed to be adding to the duplication of effort and unnecessary volume of packages. Feel free to comment upon this, although if you really want to rave, try it out on me first before clagging the list. Thanks for your attention. Jim
2005 Jun 05
5
A long digression on packages
...not that I don't like maintaining concord or think the functions are worthless, just that I am mildly embarrassed to be adding to the duplication of effort and unnecessary volume of packages. Feel free to comment upon this, although if you really want to rave, try it out on me first before clagging the list. Thanks for your attention. Jim
2018 Apr 30
0
4.2.14 (or newer) support "Windows for Workgroups 3.1a"?
...even sure if it was a 2008 or something else actually. Don't worry about it, your post was written in such a way that it made it obvious what you had, quite a lot posts aren't so obvious and a PDC is quite different from an AD DC ;-) > > > You then want to use something that is clagged on top of DOS 6.22 > > and get that to talk to AD, something that really doesn't understand > > domains (the hint is in what it is called) > > It cannot understand the domain and authenticate over it, but this is > not a problem as the WfWg doesn't export any folder...
2018 Apr 30
7
4.2.14 (or newer) support "Windows for Workgroups 3.1a"?
Hello. I need to let Windows for Workgroup 3.11 clients (industrial machinery) connect to shares in the PDC samba Version 4.2.14-Debian. I started to be able to connect to shares exported by domain members windows professional (7, 10) machines (share permissions include "domain users"), after I added "lanman auth = yes" to PDC and updated the user password, though it's
2015 Oct 26
2
How to pass march flag to GCC Assembler arch64-linux-gnu-as
I am trying to build chromium and at this moment, They see some issues with internal one so recommended to use the flag -fno-integrated-as. Here is my exact build command (with -v and --save-temps): $ clang -Igen -I../../include -target aarch64-linux-gnu -march=armv8-a+crypto -fno-integrated-as --sysroot=./debian_jessie_arm64-sysroot -O2 -c MyFile.S -o MyFile.o -v --save-temps clang version
2005 Aug 15
3
[-mm PATCH 2/32] fs: fix-up schedule_timeout() usage
...smbfs/proc.c 2005-03-01 23:37:49.000000000 -0800 +++ 2.6.13-rc5-mm1-dev/fs/smbfs/proc.c 2005-08-12 13:43:10.000000000 -0700 @@ -2397,8 +2397,7 @@ smb_proc_readdir_long(struct file *filp, if (req->rq_rcls == ERRSRV && req->rq_err == ERRerror) { /* a damn Win95 bug - sometimes it clags if you ask it too fast */ - current->state = TASK_INTERRUPTIBLE; - schedule_timeout(HZ/5); + schedule_timeout_interruptible(msecs_to_jiffies(200)); continue; } diff -urpN 2.6.13-rc5-mm1/fs/xfs/linux-2.6/time.h 2.6.13-rc5-mm1-dev/fs/xfs/linux-2.6/time.h --- 2...