Displaying 20 results from an estimated 21 matches for "lblocksruntime".
Did you mean:
blocksruntime
2009 Dec 14
2
[LLVMdev] clang error: multiple definition of `gnu_dev_*'
When trying to link more than one object files compiled with clang, I run into
errors of the following type:
$ clang -fblocks -g -I$HOME/opt/include -L$HOME/opt/lib/ -o helloworld
helloworld.c hello.o world.o -lBlocksRuntime
world.o: In function `gnu_dev_major':
/usr/include/sys/sysmacros.h:43: multiple definition of `gnu_dev_major'
hello.o:/usr/include/sys/sysmacros.h:43: first defined here
world.o: In function `gnu_dev_minor':
/usr/include/sys/sysmacros.h:49: multiple definition of `gnu_dev_minor'
hel...
2009 Sep 18
1
[LLVMdev] [PATCH] BlocksRuntime updates for Linux
...e cast to void * either.
5) Avoid a warning for apple_versioning.c that "ISO C does not allow
empty files"
Tested on Ubuntu Linux 9.04 with clang and llvm-gcc and -fblocks to
define and copy some blocks (and invoke them, obviously). Also tested
on Mac OS X 10.6 and linking against -lBlocksRuntime ahead of -lSystem.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: blocks-linux.diff
Type: application/octet-stream
Size: 10483 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090918/ebbb7903/attachment.obj>
---------...
2009 Dec 14
0
[LLVMdev] clang error: multiple definition of `gnu_dev_*'
On 14/12/09 13:57, Abhishek Kulkarni wrote:
> When trying to link more than one object files compiled with clang, I run into
> errors of the following type:
>
> $ clang -fblocks -g -I$HOME/opt/include -L$HOME/opt/lib/ -o helloworld
> helloworld.c hello.o world.o -lBlocksRuntime
> world.o: In function `gnu_dev_major':
> /usr/include/sys/sysmacros.h:43: multiple definition of `gnu_dev_major'
> hello.o:/usr/include/sys/sysmacros.h:43: first defined here
> world.o: In function `gnu_dev_minor':
> /usr/include/sys/sysmacros.h:49: multiple definition o...
2009 Sep 23
2
[LLVMdev] [llvm-commits] [PATCH] BlocksRuntime updates for Linux
....
> 5) Avoid a warning for apple_versioning.c that "ISO C does not allow empty
> files"
>
> Tested on Ubuntu Linux 9.04 with clang and llvm-gcc and -fblocks to define
> and copy some blocks (and invoke them, obviously). Also tested on Mac OS X
> 10.6 and linking against -lBlocksRuntime ahead of -lSystem.
>
> <blocks-linux.diff>
>
> Shantonu Sen
> ssen at apple.com
>
> Sent from my Mac Pro
>
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lis...
2009 Sep 23
0
[LLVMdev] [llvm-commits] [PATCH] BlocksRuntime updates for Linux
..."ISO C does not
>> allow empty
>> files"
>>
>> Tested on Ubuntu Linux 9.04 with clang and llvm-gcc and -fblocks to
>> define
>> and copy some blocks (and invoke them, obviously). Also tested on
>> Mac OS X
>> 10.6 and linking against -lBlocksRuntime ahead of -lSystem.
>>
>> <blocks-linux.diff>
>>
>> Shantonu Sen
>> ssen at apple.com
>>
>> Sent from my Mac Pro
>>
>> _______________________________________________
>> LLVM Developers mailing list
>> LLVMdev at cs.uiuc.edu...
2009 Sep 23
2
[LLVMdev] [llvm-commits] [PATCH] BlocksRuntime updates for Linux
...w
>>> empty
>>> files"
>>>
>>> Tested on Ubuntu Linux 9.04 with clang and llvm-gcc and -fblocks to
>>> define
>>> and copy some blocks (and invoke them, obviously). Also tested on Mac OS
>>> X
>>> 10.6 and linking against -lBlocksRuntime ahead of -lSystem.
>>>
>>> <blocks-linux.diff>
>>>
>>> Shantonu Sen
>>> ssen at apple.com
>>>
>>> Sent from my Mac Pro
>>>
>>> _______________________________________________
>>> LLVM Developers mailing...
2009 Sep 23
0
[LLVMdev] LLVM Build Difficulties
Curtis Jones <curtis.jones at gmail.com> writes:
> Thanks for the help. I think I'm closer now ... hopefully; although
> I'm still getting the same error. The "gcc -v" output looks very
> similar to yours now. Do you see any other obvious configuration
> issues? I don't know what to try next....
[snip]
> /tmp/cc.o:(.rodata+0x0): undefined reference to
2009 Sep 23
0
[LLVMdev] [llvm-commits] [PATCH] BlocksRuntime updates for Linux
...t;
>>>>
>>>> Tested on Ubuntu Linux 9.04 with clang and llvm-gcc and -fblocks to
>>>> define
>>>> and copy some blocks (and invoke them, obviously). Also tested on
>>>> Mac OS
>>>> X
>>>> 10.6 and linking against -lBlocksRuntime ahead of -lSystem.
>>>>
>>>> <blocks-linux.diff>
>>>>
>>>> Shantonu Sen
>>>> ssen at apple.com
>>>>
>>>> Sent from my Mac Pro
>>>>
>>>> _______________________________________________
&...
2009 Sep 22
0
[LLVMdev] Status of blocks runtime in compiler-rt?
...printf("%d %d\n", x, y);
};
void (^copyPrintXAndY)(int) = Block_copy(printXAndY);
copyPrintXAndY(456); // prints: 123 456
Block_release(copyPrintXAndY);
return 0;
}
$ clang -I$PREFIX/include -fblocks -c foo.c
$ clang -L$PREFIX/lib -Wl,-rpath,$PREFIX/lib -o foo foo.o -
lBlocksRuntime
$ ./foo
123 456
$
I've also tried similar steps on Ubuntu Linux, as well as with llvm-
gcc-4.2, which also worked.
Shantonu Sen
ssen at apple.com
Sent from my Mac Pro
On Sep 16, 2009, at 8:00 AM, Shantonu Sen wrote:
> The Blocks language and implementation specifications are checked in...
2009 Sep 23
2
[LLVMdev] [llvm-commits] [PATCH] BlocksRuntime updates for Linux
...t;>>>> Tested on Ubuntu Linux 9.04 with clang and llvm-gcc and -fblocks to
>>>>> define
>>>>> and copy some blocks (and invoke them, obviously). Also tested on Mac
>>>>> OS
>>>>> X
>>>>> 10.6 and linking against -lBlocksRuntime ahead of -lSystem.
>>>>>
>>>>> <blocks-linux.diff>
>>>>>
>>>>> Shantonu Sen
>>>>> ssen at apple.com
>>>>>
>>>>> Sent from my Mac Pro
>>>>>
>>>>> _____________...
2018 May 02
0
Asterisk 13.21.0 Now Available
...release:
New Features made in this release:
-----------------------------------
* ASTERISK-27704 - Add cache_pools debug option to
pjproject.conf
(Reported by Richard Mudgett)
Bugs fixed in this release:
-----------------------------------
* ASTERISK-27809 - [patch] utils/pval: Add -lBlocksRuntime for
compiler clang conditionally.
(Reported by Alexander
Traud)
* ASTERISK-27774 - res_musiconhold: Music on hold restarts
after every announcement
(Reported by lvl)
* ASTERISK-27782 - cdr_mysql: Missing MYSQL_PORT definition
(Reported by Evandro C??sar Arr...
2009 Sep 16
3
[LLVMdev] Status of blocks runtime in compiler-rt?
The Blocks language and implementation specifications are checked into
clang/docs.
More generally, on Mac OS X, the blocks runtime is linked into the C
library ("libSystem"), and available to the entire OS. Clients that
create blocks may implicitly get compiler-generated calls to some of
the runtime functions, and the developer may also make explicit calls
to, e.g.,
2018 May 02
0
Asterisk 15.4.0 Now Available
...to
pjproject.conf
(Reported by Richard Mudgett)
Bugs fixed in this release:
-----------------------------------
* ASTERISK-27804 - bridge_softmix / app_confbridge: Add support
for combining REMB reports
(Reported by Joshua Colp)
* ASTERISK-27809 - [patch] utils/pval: Add -lBlocksRuntime for
compiler clang conditionally.
(Reported by Alexander
Traud)
* ASTERISK-27806 - BASIC-RETRANS: Implement send
(Reported by Benjamin Keith Ford)
* ASTERISK-27774 - res_musiconhold: Music on hold restarts
after every announcement
(Reported by lvl)
* AST...
2009 Sep 23
2
[LLVMdev] LLVM Build Difficulties
Óscar,
Thanks for the help. I think I'm closer now ... hopefully; although
I'm still getting the same error. The "gcc -v" output looks very
similar to yours now. Do you see any other obvious configuration
issues? I don't know what to try next....
$ ~/Desktop/Build/JamCloud/JamCloudServer$ gcc -v
Using built-in specs.
Target: x86_64-unknown-linux-gnu
Configured with:
2009 Sep 23
0
[LLVMdev] [llvm-commits] [PATCH] BlocksRuntime updates for Linux
...-
>>>>>> fblocks to
>>>>>> define
>>>>>> and copy some blocks (and invoke them, obviously). Also tested
>>>>>> on Mac
>>>>>> OS
>>>>>> X
>>>>>> 10.6 and linking against -lBlocksRuntime ahead of -lSystem.
>>>>>>
>>>>>> <blocks-linux.diff>
>>>>>>
>>>>>> Shantonu Sen
>>>>>> ssen at apple.com
>>>>>>
>>>>>> Sent from my Mac Pro
>>>>>>
&g...
2009 Sep 22
0
[LLVMdev] LLVM Build Difficulties
Hi Curtis,
> I hope this is the right list for such questions.... I've been trying to
> get LLVM compiled under Linux (Ubuntu 9.04, 64 bit) for the last couple
> of days.
I can't reproduce this with ubuntu 9.10, 64 bit x86, gcc 4.4.1, using
your configure options. What version of gcc are you using?
> CXXFLAGS="-fPIC" ./configure --enable-optimized
2009 Sep 21
4
[LLVMdev] LLVM Build Difficulties
I hope this is the right list for such questions.... I've been trying
to get LLVM compiled under Linux (Ubuntu 9.04, 64 bit) for the last
couple of days.
It all ends with the error:
llvm[2]: Linking Release executable tblgen (without symbols)
/home/cjones/Desktop/Build/llvm/utils/TableGen/Release/
AsmMatcherEmitter.o: In function `(anonymous
2018 Jun 05
0
Certified Asterisk 13.21-cert1 Now Available
...nt_identifier_ip:
Unregister the module for headers.
(Reported by Alexander
Traud)
* ASTERISK-27860 - [patch] res_pjsip: Register
pjsip_transport_management not externally but internally.
(Reported by Alexander Traud)
* ASTERISK-27809 - [patch] utils/pval: Add -lBlocksRuntime for
compiler clang conditionally.
(Reported by Alexander
Traud)
* ASTERISK-27774 - res_musiconhold: Music on hold restarts
after every announcement
(Reported by lvl)
* ASTERISK-27782 - cdr_mysql: Missing MYSQL_PORT definition
(Reported by Evandro C��sar Arr...
2018 Oct 09
0
Asterisk 16.0.0 Now Available
...storage on
FreeBSD and DragonFly BSD.
(Reported by Alexander Traud)
* ASTERISK-27418 - app_confbridge: "core show profile bridge"
does not output "sfu" when video_mode is sfu
(Reported by
Carlos Chavez)
* ASTERISK-27809 - [patch] utils/pval: Add -lBlocksRuntime for
compiler clang conditionally.
(Reported by Alexander
Traud)
* ASTERISK-27808 - [patch] chan_vpb: Avoid GNU old-style field
designator extension.
(Reported by Alexander Traud)
* ASTERISK-27806 - BASIC-RETRANS: Implement send
(Reported by Benjamin Keith...
2018 Oct 09
2
Asterisk 16.0.0 Now Available
...storage on
FreeBSD and DragonFly BSD.
(Reported by Alexander Traud)
* ASTERISK-27418 - app_confbridge: "core show profile bridge"
does not output "sfu" when video_mode is sfu
(Reported by
Carlos Chavez)
* ASTERISK-27809 - [patch] utils/pval: Add -lBlocksRuntime for
compiler clang conditionally.
(Reported by Alexander
Traud)
* ASTERISK-27808 - [patch] chan_vpb: Avoid GNU old-style field
designator extension.
(Reported by Alexander Traud)
* ASTERISK-27806 - BASIC-RETRANS: Implement send
(Reported by Benjamin Keith...