Displaying 20 results from an estimated 85 matches for "ltinfo".
Did you mean:
linfo
2013 Dec 11
2
[LLVMdev] -ltinfo and -lz causing problems
On a particular system I am trying to link my application to the LLVM
library
and it can't find -ltinfo and -lz. The former is part of ncurses (build
with term-
info). Building ncurses for this system in user space turns out to be not
straight-forward (haven't succeeded so far).
In LLVM, is there a way to turn the need for -ltinfo and -lz off?
Frank
2014 Nov 05
2
[PATCH] Use -ltinfo instead of -lncurses.
...(+), 15 deletions(-)
diff --git a/builder/Makefile.am b/builder/Makefile.am
index f747fc3..7b66afb 100644
--- a/builder/Makefile.am
+++ b/builder/Makefile.am
@@ -172,7 +172,7 @@ OCAMLCLIBS = \
-L../src/.libs -lutils \
-L../gnulib/lib/.libs -lgnu \
-pthread -lpthread \
- -lncurses -lcrypt
+ -ltinfo -lcrypt
if HAVE_OCAMLOPT
virt-builder: $(OBJECTS)
diff --git a/configure.ac b/configure.ac
index 3165e96..8916ebd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -355,14 +355,14 @@ struct sockaddr_un myaddr;
dnl tgetent, tputs and UP [sic] are all required. They come from libtinfo
dnl which...
2014 Nov 11
1
[PATCH] use pkg-config to look up ncurses
Hardcoding -ltinfo breaks on distros that do not build the sep library
(which is the default ncurses behavior). Use pkg-config to look up the
right libraries regardless of how the distro built things.
---
builder/Makefile.am | 5 +++--
configure.ac | 18 ++++++------------
customize/Makefile.am | 2 +-...
2014 Dec 05
4
Build On CentOS
Tried to Build Tinc. Linker was confused, Makefile lacking reference to
-ltinfo I guess.
FYI.
root at rpzcentos tinc-1.1pre10]# make
make all-recursive
make[1]: Entering directory `/adev/tinc-1.1pre10'
Making all in m4
make[2]: Entering directory `/adev/tinc-1.1pre10/m4'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/adev/tinc-1.1pre10/m4&...
2014 Nov 06
0
Re: [PATCH] Use -ltinfo instead of -lncurses.
On Wednesday 05 November 2014 21:37:14 Richard W.M. Jones wrote:
> In tools except guestfish, we don't use ncurses, or even curses, just
> 2 termcap functions and a global variable. These are provided by
> libtinfo, so just link to that.
Sounds good.
> In guestfish we use readline which needs ncurses. Leave that alone.
Given that three AC_CHECK_LIB checking for ncurses are now
2014 Nov 06
1
Re: [PATCH] Use -ltinfo instead of -lncurses.
On Thu, Nov 06, 2014 at 01:34:24PM +0100, Pino Toscano wrote:
> Given that three AC_CHECK_LIB checking for ncurses are now gone,
> wouldn't it better to explicitly search for it prior to searching for
> readline?
According to https://bugzilla.redhat.com/show_bug.cgi?id=499837
readline can be linked against either ncurses or termcap.
No modern system would prefer termcap, and
2000 Nov 09
2
SCO Openserver Patch
...- configure Sun Nov 5 21:25:18 2000
+++ /configure Thu Nov 9 14:18:21 2000
@@ -1685,7 +1685,7 @@
LDFLAGS="$LDFLAGS -L/usr/local/lib"
MANTYPE='$(CATMAN)'
mansubdir=cat
- LIBS="$LIBS -lgen -lsocket -los -lprot -lx"
+ LIBS="$LIBS -lgen -lsocket -los -lprot -lx -ltinfo -lm"
no_dev_ptmx=1
RANLIB=true
cat >> confdefs.h <<\EOF
@@ -1703,11 +1703,12 @@
LDFLAGS="$LDFLAGS -L/usr/local/lib"
MANTYPE='$(CATMAN)'
mansubdir=cat
- LIBS="$LIBS -lgen -lsocket -lprot -lx"
+ LIBS="$LIBS -lgen -lsocket -lprot -lx -ltinf...
2014 Feb 27
2
[LLVMdev] llvm-config --system-libs has newlines in output
...from trunk I understand I should now use llvm-config
--system-libs to get the system libraries to link against when linking
against llvm (as of r197664). If run this then llvm-config outputs a
blank line before the system libraries, for example on Linux I get:
$ llvm-config --system-libs
-lz -ltinfo -lrt -ldl -lm
If I use --system-libs together with --libs the LLVM libraries and the
system libraries are separated by a newline:
$ ../../tools_llvm_new/obj/Debug+Asserts/bin/llvm-config --libs
--system-libs
-lLLVMLTO -lLLVMObjCARCOpts -lLLVMLinker -lLLVMipo -lLLVMVectorize
-lLLVMBitWriter ......
2003 Jul 17
7
Speex support
What is the state of speex support in asterisk? I saw the codec seems to
be there.
Can speex be used on IAX2 links? Is there much work still to be done?
many thanks,
--J.
2003 Apr 14
7
Trouble installing
I am trying to run the make command to install Asterisk, but I get the
following error:
make
...
...
checking for tgetent in -ltermcap ... no
checking for tgetent in -ltinfo ... no
checking for tgetent in -lcurses ... no
checking for tgetent in -lncurses ... no
configure: error: termcap support not found
I am running Mandrake 9.1 on a Pentium II 200MHz.
Could this be a hardware issue? I have Mandrake 9.1 running on my laptop
and I was
able to install the program wi...
2005 Mar 10
4
Compiling Asterisk On SUSE 9.2
...ried to compile * 1.0.6 (downloaded from the digium site, in the
right sequence - zaptel, libpri, asterisk) on two different machines
running SUSE 9.2.
The problem comes during some preliminary checks:
checking for ar... /usr/bin/ar
checking for tgetent in -ltermcap... no
checking for tgetent in -ltinfo... no
checking for tgetent in -lcurses... no
checking for tgetent in -lncurses... no
configure: error: termcap support not found
make: *** [editline/libedit.a] Error 1
Now I got the termcap rpm and afaik it's installed (now). Is there
anything obvious I should try?
Thanks in advance,
Aldo
2002 Jun 24
1
remove --with-rsh
...8
diff -u -r1.68 configure.ac
--- configure.ac 22 Jun 2002 18:51:48 -0000 1.68
+++ configure.ac 24 Jun 2002 00:50:32 -0000
@@ -247,7 +247,6 @@
CPPFLAGS="$CPPFLAGS -Dftruncate=chsize -I/usr/local/include"
LDFLAGS="$LDFLAGS -L/usr/local/lib"
LIBS="$LIBS -los -lprot -lx -ltinfo -lm"
- rsh_path="/usr/bin/rcmd"
RANLIB=true
no_dev_ptmx=1
AC_DEFINE(BROKEN_SYS_TERMIO_H)
@@ -264,7 +263,6 @@
LDFLAGS="$LDFLAGS -L/usr/local/lib"
LIBS="$LIBS -lprot -lx -ltinfo -lm"
no_dev_ptmx=1
- rsh_path="/usr/bin/rcmd"
AC_DEFINE(USE_PIPE...
2013 Sep 07
3
[LLVMdev] llvm-config curses-related failures
.../home/eliben/llvm/llvm_svn_rw/lib/Support/Unix/Process.inc:278: undefined
reference to `set_curterm'
/home/eliben/llvm/llvm_svn_rw/lib/Support/Unix/Process.inc:279: undefined
reference to `del_curterm'
collect2: ld returned 1 exit status
This seems to be related to llvm-config not passing -ltinfo in its
--ldflags. This bug also seems to be related:
http://llvm.org/bugs/show_bug.cgi?id=16902
Is there a workaround for this?
Eli
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130906/fd930aeb/attachment...
2014 Dec 07
2
Build On CentOS
On Sun, Dec 07, 2014 at 04:33:49PM +0100, Guus Sliepen wrote:
> Hm, on Debian it works fine, OTOH the command "libncurses5-config
> --libs" does tell me to link with -ltinfo. I'll see if I can add that
> to the autoconf script.
On CentOS 7 tinc 1.1 compiles without problems. Also, both on Debian and
CentOS "pkg-config --libs ncurses" only prints "-lncurses". Can you tell
us which version of CentOS you are running on exactly, and the output o...
2013 Nov 21
2
[LLVMdev] Building LLVM with asan
...calarOpts
> -lLLVMSelectionDAG -lLLVMSupport -lLLVMTarget -lLLVMTransformUtils
> -lLLVMVectorize -lLLVMX86AsmParser -lLLVMX86AsmPrinter -lLLVMX86CodeGen
> -lLLVMX86Desc -lLLVMX86Disassembler -lLLVMX86Info -lLLVMX86Utils
> --no-whole-archive --soname libLLVM-3.5svn.so --no-undefined -lz -ltinfo
> -lm -lstdc++ -lm -lgcc_s -lc -lgcc_s
> /usr/lib/gcc/x86_64-linux-gnu/4.8/crtendS.o
> /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crtn.o
>
> It doesn't seem to be linking the asan runtime which seems weird since I'm
> passing -faddress=sanitize.
>
>...
2020 Feb 02
3
lld out of memory
...ib/libLLVMMCParser.a lib/libLLVMMC.a lib/libLLVMDebugI
nfoCodeView.a lib/libLLVMDebugInfoMSF.a lib/libLLVMBitReader.a
lib/libLLVMCore.a lib/libLLVMRemarks.a lib/li
bLLVMBitstreamReader.a lib/libLLVMTextAPI.a lib/libLLVMBinaryFormat.a
lib/libLLVMSupport.a /usr/lib64/libz.so
-lrt -ldl -ltinfo -lpthread -lm lib/libLLVMDemangle.a && :
LLVM ERROR: out of memory
Stack dump:
0. Program arguments: /home/usr4/c74014i/opt/clang/stable/bin/ld.lld
@/tmp/response-5051e9.txt
LLVM ERROR: out of memory
clang-11: error: unable to execute command: Aborted
clang-11: error: linker command...
2013 Nov 21
0
[LLVMdev] Building LLVM with asan
...her/julia/deps/llvm-svn/autoconf/ExportMap.map
-fsanitize=address -o
/home/kfischer/julia/deps/llvm-svn/build_Release+Asserts+Sanitize/Release+Asserts/bin/llvm-lto
/home/kfischer/julia/deps/llvm-svn/build_Release+Asserts+Sanitize/tools/llvm-lto/Release+Asserts/llvm-lto.o
\
-lLLVM-3.5svn -lz -ltinfo -lm
/usr/bin/ld:
/home/kfischer/julia/deps/llvm-svn/build_Release+Asserts+Sanitize/Release+Asserts/bin/llvm-lto:
local symbol `__asan_report_store4' in
/home/kfischer/julia/deps/llvm-svn/build_Release+Asserts/Release+Asserts/bin/../lib/clang/3.5/lib/linux/libclang_rt.asan-x86_64.a(asan_rtl.o)
i...
2013 Sep 07
0
[LLVMdev] llvm-config curses-related failures
...vm_svn_rw/lib/Support/Unix/Process.inc:278: undefined reference to `set_curterm'
> /home/eliben/llvm/llvm_svn_rw/lib/Support/Unix/Process.inc:279: undefined reference to `del_curterm'
> collect2: ld returned 1 exit status
>
> This seems to be related to llvm-config not passing -ltinfo in its --ldflags. This bug also seems to be related: http://llvm.org/bugs/show_bug.cgi?id=16902
>
> Is there a workaround for this?
>
> Eli
>
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.u...
2013 Nov 21
2
[LLVMdev] Building LLVM with asan
...MRuntimeDyld -lLLVMScalarOpts
-lLLVMSelectionDAG -lLLVMSupport -lLLVMTarget -lLLVMTransformUtils
-lLLVMVectorize -lLLVMX86AsmParser -lLLVMX86AsmPrinter -lLLVMX86CodeGen
-lLLVMX86Desc -lLLVMX86Disassembler -lLLVMX86Info -lLLVMX86Utils
--no-whole-archive --soname libLLVM-3.5svn.so --no-undefined -lz -ltinfo
-lm -lstdc++ -lm -lgcc_s -lc -lgcc_s
/usr/lib/gcc/x86_64-linux-gnu/4.8/crtendS.o
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crtn.o
It doesn't seem to be linking the asan runtime which seems weird since I'm
passing -faddress=sanitize.
On Thu, Nov 21, 2013 at 5:24 AM, Alex...
2013 Nov 21
2
[LLVMdev] Building LLVM with asan
...-lLLVMScalarOpts -lLLVMSelectionDAG -lLLVMSupport
-lLLVMTarget -lLLVMTransformUtils -lLLVMVectorize -lLLVMX86AsmParser
-lLLVMX86AsmPrinter -lLLVMX86CodeGen -lLLVMX86Desc -lLLVMX86Disassembler
-lLLVMX86Info -lLLVMX86Utils -Wl,--no-whole-archive -Wl,--soname,
libLLVM-3.5svn.so -Wl,--no-undefined -lz -ltinfo -lm
Am I doing something stupid?
Thanks,
Keno
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131120/e71db1bd/attachment.html>