Displaying 5 results from an estimated 5 matches for "el_source".
Did you mean:
_source
2010 Jul 09
1
dash klibc DEBUG more compile trouble
...tedit.c:115: error: ?EL_PROMPT? undeclared (first use in this function)
usr/dash/histedit.c:123: warning: implicit declaration of function ?el_end?
usr/dash/histedit.c:129: error: ?EL_EDITOR? undeclared (first use in this function)
usr/dash/histedit.c:132: warning: implicit declaration of function ?el_source?
usr/dash/histedit.c:141: warning: implicit declaration of function ?history_end?
usr/dash/histedit.c: In function ?sethistsize?:
usr/dash/histedit.c:153: error: ?HistEvent? undeclared (first use in this function)
usr/dash/histedit.c:153: error: expected ?;? before ?he?
usr/dash/histedit.c:155: err...
2006 Apr 01
0
sftp tab completion patch (First release - NOT FOR INCLUDING YET)
...op(int fd_in, int fd_out, char *file1, char *file2)
{
char *pwd;
char *dir = NULL;
char cmd[2048];
- struct sftp_conn *conn;
int err, interactive;
EditLine *el = NULL;
History *hl = NULL;
@@ -1257,6 +1448,11 @@
el_set(el, EL_TERMINAL, NULL);
el_set(el, EL_SIGNAL, 1);
el_source(el, NULL);
+
+ /* Tab Completion */
+ el_set(el, EL_ADDFN, "ftp-complete",
+ "Context senstive argument completion", complete);
+ el_set(el, EL_BIND, "^I", "ftp-complete", NULL);
}
conn = do_init(fd_in, fd_out, copy_buffer_len, num_requests);
2007 Dec 12
0
Revisiting sftp tab completion patch
...op(int fd_in, int fd_out, char *file1, char *file2)
{
- char *pwd;
char *dir = NULL;
char cmd[2048];
- struct sftp_conn *conn;
int err, interactive;
EditLine *el = NULL;
History *hl = NULL;
@@ -1370,26 +1607,31 @@
el_set(el, EL_TERMINAL, NULL);
el_set(el, EL_SIGNAL, 1);
el_source(el, NULL);
+
+ /* Tab Completion */
+ el_set(el, EL_ADDFN, "ftp-complete",
+ "Context senstive argument completion", complete);
+ el_set(el, EL_BIND, "^I", "ftp-complete", NULL);
}
conn = do_init(fd_in, fd_out, copy_buffer_len, num_requests);...
2017 Jan 23
2
undefined symbols during linking LLDB 4.0 RC1
..._ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7replaceEmmPKc
0000000000000000 DF *UND* 00000000000000e0 Base compress2
0000000000000000 DF *UND* 000000000000000b GLIBC_2.2.5 posix_spawnattr_init
0000000000000000 DF *UND* 0000000000000132 Base el_source
0000000000000000 DF *UND* 000000000000002c Base _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev
0000000000000000 DF *UND* 0000000000000064 GLIBC_2.2.5 sendto
0000000000000000 DF *UND* 0000000000000090 GLIBC_2.2.5 sprintf
0000000000000000 DF *UND* 0000000000000027...
2017 Jan 19
2
undefined symbols during linking LLDB 4.0 RC1
Hello, I update my building scripts to build LLVM 4.0 RC1 (with clang, lldb, libc++, libc++abi, lld) on CentOS 6 and I got a lot of undefined symbols during linking LLDB.
I'm using clang-3.9 and this configuration:
-DLLVM_TARGETS_TO_BUILD="X86"
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_C_COMPILER=/usr/bin/clang
-DCMAKE_CXX_COMPILER=/usr/bin/clang++