similar to: static linking

Displaying 20 results from an estimated 1000 matches similar to: "static linking"

2004 May 17
0
openbsd compilation fails for recent checkout of v1-0_stable
This has been mentioned before on this list, but in order for md5.c to compile successfully (OpenBSD 3.3), the following must change in md5.c: #if defined( __FreeBSD__ ) || defined( __OpenBSD__ ) # include <sys/endian.h> Change this to be: #if defined( __FreeBSD__ ) || defined( __OpenBSD__ ) # include <machine/types.h> # include <machine/endian.h> And -E is an invalid
2005 Oct 01
3
Adding Cepstral to Asterisk
I downloaded Cepstral to my Asterisk Box. I did the install and let it install to /opt/swift. I brought down a new CVS-HEAD as of today 10/1. I added APPS+=app_cepstral.so into the Makefile in /usr/src/asterisk/apps/Makefile Like: # Obsolete things... # #APPS+=app_sql_postgres.so #APPS+=app_sql_odbc.so APPS+=app_cepstral.so # I did this piece but wasn't sure exactly what part of the
2006 Jan 13
0
R: RE: RE: Spandsp
Patch it by hand. Follow this help http://www.asteriskguru.com/tutorials/spandsp.html Hi Giordano -----Messaggio originale----- Da: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] Per conto di Tomislav Parcina Inviato: venerd? 13 gennaio 2006 12.28 A: asterisk-users@lists.digium.com Oggetto: [Asterisk-Users] RE: RE: Spandsp In article
2006 Jun 04
1
Compiling VD_app_conference for x86_64
Do anybody could compile app_conference on x86_64??? I tryied with two versions of app_conference and got the same problem on compiling: relocation R_X86_64_32 against `a local symbol' can not be used when making a shared recompile with -fPIC app_conference.o: could not read symbols: Bad value" ENVIRONMENT:
2005 Sep 14
11
RxFax/TxFax - Compile Problem
Anyone know how to fix this? gcc -shared -Xlinker -x -o app_rxfax.so app_rxfax.c -lspandsp -ltiff In file included from app_rxfax.c:14: /usr/include/asterisk/lock.h: In function `ast_mutex_init': /usr/include/asterisk/lock.h:302: error: `PTHREAD_MUTEX_RECURSIVE' undeclared (first use in this function) /usr/include/asterisk/lock.h:302: error: (Each undeclared identifier is reported
2004 Jun 21
1
Problem compiling fax applications
I'm tring to compile fax applications on Debian system. the spandsp library compiles ok, and when i try to patch the make file in apps directory as is said in the instructions it returns errors. I'm using cvs version of asterisk . -------------------------- voipgw:/usr/src/asterisk/apps# patch < Makefile.patch patching file Makefile Hunk #1 FAILED at 35. Hunk #2 FAILED at 68. 2 out of
2005 Mar 28
1
Problem installing SpanDSP Makefile.patch
*************** *** 41,50 **** APPS+=$(shell if [ -f /usr/include/linux/zaptel.h ]; then echo "app_zapras.so app_meetme.so app_flash.so a pp_zapbarge.so app_zapscan.so" ; fi) APPS+=$(shell if [ -f /usr/local/include/zaptel.h ]; then echo "app_zapras.so app_meetme.so app_flash.so a pp_zapbarge.so app_zapscan.so" ; fi) APPS+=$(shell if [ -f /usr/include/osp/osp.h ]; then
2006 Jan 22
6
spandsp Error
I cannot see it!!!! make[1]: Leaving directory `/usr/local/src/svn-versions/asterisk/pbx' /bin/sh: curl-config: command not found make[1]: Entering directory `/usr/local/src/svn-versions/asterisk/apps' Makefile:103: *** missing separator. Stop. make[1]: Leaving directory `/usr/local/src/svn-versions/asterisk/apps' make: *** [depend] Error 1 Makefile: 93 install: all 94
2006 Jun 04
1
Help with compilation of app_conference in x86_64
Any C gurus out there that can tell me if this code compiled ok to be used in x86_64 (Pentium Dual Core). It's for the app_conference application. Im using Centos 4.3 x86_64 kernel: 2.6.9-34.ELsmp libgcc-3.4.5-2 gcc-3.4.5-2 after the compilation part is the makefile ************begin compilation******************* [root@centos app_conference]# make clean rm -f *.so *.o app_conference.o
2004 May 28
2
spandsp wont compile.
I can't get spandsp to compile. when I go to the */apps directory i continually fails. Makefile:80: warning: overriding commands for target `app_rxfax.so' Makefile:77: warning: ignoring old commands for target `app_rxfax.so' cc -fPIC -c -o app_rxfax.o app_rxfax.c app_rxfax.c:45: error: `PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP' undeclared here (not in a function) make: ***
2012 Aug 01
1
app_swift 3 and asterisk 1.8.13.0 fails with undefined symbol: swift_port_close
All, I am experiencing this same issue. it seems that you were able to resolve it offline. Could you by any chance post the solution. telephonics1*CLI> module load app_swift.so Unable to load module app_swift.so Command 'module load app_swift.so' failed. [Aug 1 05:01:01] WARNING[28635]: loader.c:458 load_dynamic_module: Error loading module 'app_swift.so':
2004 Dec 07
3
can't compile chan_capi 3.5 after patch applied :-(
Hi I use RH 9 + asterisk v1.0 stable + 2 PCI fritz cards + chan_capi 3.5 and it works fine, Since my users want fax fonctionnality and customers know 1 of the msm as fax number I wanted to try the chan_capi-0.3.5 patch if I patch chan_capi and run make, I get an error message , as you can read below, orginal chan_capi compile works, when patched I get an error, no CID ? Any idea ? anybody
2010 Oct 03
3
[LLVMdev] fPIC in llvm 2.6
Is fPIC broken on x86_64 in LLVM 2.6? I looked through the release notes but did not see anything mentioned. When I try: ------------------- > llvm-gcc -Iinclude -emit-llvm -fPIC -O3 -c -o file.opt.bc file.c > llvm-ld -native -Xlinker=-shared -Xlinker=-Wl,-soname,libtest.so -o file.so file.opt.bc ------------------- on an x86 machine it works fine. When I try it on x86_64, the
2010 Oct 03
0
[LLVMdev] fPIC in llvm 2.6
> Is fPIC broken on x86_64 in LLVM 2.6? No, it works w/o any problems > ------------------- >  > llvm-gcc -Iinclude -emit-llvm -fPIC -O3 -c -o file.opt.bc  file.c >  > llvm-ld -native -Xlinker=-shared -Xlinker=-Wl,-soname,libtest.so -o > file.so file.opt.bc > ------------------- PIC-ness is a backend option. So, passing -fPIC to llvm-gcc does not make any sense, it is not
2008 Jan 07
1
[LLVMdev] llvm-ld -Xlinker trivial patch
Hi, The -Xlinker command line option is currently broken. E.g. llvm-ld -native -lXXX -Xlinker=YYY will call the native linker with the otpions: -XXX -YYY -lXXX The attached patch removes the obviously wrong line. daniel -------------- next part -------------- A non-text attachment was scrubbed... Name: llvm-ld-xlinker.patch Type: text/x-diff Size: 385 bytes Desc: not available URL:
2010 Oct 04
2
[LLVMdev] fPIC in llvm 2.6
The reason I was linking via llvm-ld is because I didn't know how to pass bitcode files to llvm-gcc. How can I do that? Anton Korobeynikov wrote: >> Is fPIC broken on x86_64 in LLVM 2.6? > No, it works w/o any problems > >> ------------------- >> > llvm-gcc -Iinclude -emit-llvm -fPIC -O3 -c -o file.opt.bc file.c >> > llvm-ld -native -Xlinker=-shared
2006 Apr 19
1
Error installing asterisk
I am instaling asterisk on Fedora core 3. I have instaled zaptel-1.2.3, libpri-1.2.2, but when I am instaling (make install) asterisk I have the following error: .................... _GNU_SOURCE -O6 -march=i686 -DZAPTEL_OPTIMIZATIONS -fomit-frame-pointer -fPIC -c -o app_zapscan.o app_zapscan.c gcc -shared -Xlinker -x -o app_zapscan.so app_zapscan.o gcc -pipe -Wall
2004 Jan 16
7
CAPI not installed, after changed from i4l to CAPI
I had unexpected hangups from my asterix box using the i4l driver. (SIP <-> SIP calls worked execellent, but SIP<->ISDN didn't.) Then I changed the i4l driver in modem.conf with the chan_capi from jungham. (http://www.junghanns.net/asterisk) I followed his instructions in the INSTALL file, and first encountered some errors compiling it. It help by deinstalling several
2010 Nov 28
0
[LLVMdev] using bugpoint in a complex ruby code build case
> Due to the lack of bugpoint examples in the documentation, I have no > idea how to use bugpoint > in this complex case, where vm.o firstly needs to be linked with lots > of other compiled modules > and libraries, then the resulting program needs to be executed with > some parameters! It should be possible. I did something like that for debugging a clang bootstrap. What I did
2001 Jul 29
1
Compiling R (1.3.0) on AIX (4.3) fails (PR#1034)
Hi, This email reports bugs in acinclude.m4, src/library/tcltk/src/Makefile, and share/perl/Rd2contents.pl. It is based on R-patched.tgz from 07/27/2001 (R 1.3.0) and comes from trying to compile R on AIX 4.3. 1) acinclude.m4: A string on line 3096 starts with a single quote: ' but is terminated with a double quote: ". (This leads to the weird error message that configure can't