Displaying 20 results from an estimated 179 matches for "lineno".
2009 Sep 24
3
[LLVMdev] Is line number in DbgStopPointInst in LLVM accurate?
...ubbed...
Name: sql_insert.cc
Type: text/x-c
Size: 42076 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090924/2b151f08/attachment.bin>
-------------- next part --------------
File Name: sql_insert.cc
[14447] File Name: [14 x i8] c"sql_insert.cc\00, LineNo: 1313, Inst: call void @llvm.dbg.stoppoint(i32 1313, i32 0, { }* bitcast (%llvm.dbg.compile_unit.type* @llvm.dbg.compile_unit134216 to { }*))
[14448] File Name: [14 x i8] c"sql_insert.cc\00, LineNo: 1316, Inst: call void @llvm.dbg.stoppoint(i32 1316, i32 0, { }* bitcast (%llvm.dbg.compile_un...
2013 Mar 15
22
[PATCH 00/09] arm: tools: build for arm64 and enable cross-compiling for both arm32 and arm64
The following patches shave some rough edges off the tools build system
to allow cross compiling for at least arm32 and arm64 based on the
Debian/Ubuntu multiarch infrastructure. They also add the necessary
fixes to build for arm64 (which I have only tried cross, not native).
I have posted some instructions on how to compile with these patches on
the wiki:
2004 Dec 13
2
compile samba v3.0.9 vfs-errors
Hello NG,
found a thread with almost my current problem. There wasn't any solution
out there.
Maybe anything has changed?
I want install samba v3.0.9 on an old rh linux v7.1. Currently there's no
chance to
update the core system. But while compiling it breaks with many
"vfs"-errors as shown
below:
..SNIP..
modules/vfs_shadow_copy.po(.text+0x6e2): undefined reference to
2004 Nov 19
2
Samba 3.0.9 Available for Download
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
This is the latest stable release of Samba. This is the version
that production Samba servers should be running for all
current bug-fixes. There have been several important issues
fixes since the 3.0.8 release.
Common bugs fixed in 3.0.9 include:
~ o Problem updating roaming user profiles.
~ o Crash in smbd when printing from a Windows 9x client.
2009 Nov 15
3
bash variable expansion moment
...function
execute in another. In itself, that's not the problem. Rather, there's
one built-in variable which is evaluated in the function definition and
it's value is then set (too early).
Here's the one file (func-file):
-------------------------
Line()
{
echo This is line "$LINENO" $@
}
-------------------------
That one is called by this one:
-------------------------
#!/bin/bash
. ./func-file
Line ... it should be $LINENO
------------------------
I want the function Line to show the line number in the second file
where it's executed, not the line number from t...
2015 Oct 28
4
RFC: Supporting macros in LLVM debug info
...DWARF
=========================================================
Command line: llvm-dwarfdump.exe -debug-dump=macro mainfile.o
--------------------------------------------------------------------------------------
mainfile3.o: file format ELF64-x86-64
.debug_macinfo contents:
DW_MACINFO_define - lineno: 0 macro: __llvm__ 1
DW_MACINFO_define - lineno: 0 macro: __clang__ 1
... <More compiler macros> ...
DW_MACINFO_define - lineno: 0 macro: M3 Value3
DW_MACINFO_start_file - lineno: 0 filenum: 1
DW_MACINFO_start_file - lineno: 0 filenum: 2
DW_MACINFO_define - lineno: 0 macro: M4 Value4...
2010 Sep 03
1
[PATCH] New '-o' option to configure server or hosts from command line
...able;
- cfg.file = "";
+ cfg.file = NULL;
cfg.line = 0;
found = avl_search_closest_greater(config_tree, &cfg);
@@ -233,6 +240,45 @@ static char *readline(FILE * fp, char *buf, size_t
buflen) {
return buf;
}
+config_t *parse_config_line(char *line, const char *fname, int lineno) {
+ config_t *cfg;
+ int len;
+ char *variable, *value, *eol;
+ variable = value = line;
+
+ eol = line + strlen(line);
+ while(strchr("\t ", *--eol))
+ *eol = '\0';
+
+ len = strcspn(value, "\t =");
+ value += len;
+ value += strspn(value, "\t ");
+ if(*valu...
2014 Sep 11
3
[LLVMdev] patch for DragonEgg 3.3
Hi - attached is a patch to enable building DragonEgg (x86_64) for LLVM3.3 and LLVM3.4. That is, add these changes to the 3.3 release, and it becomes possible to build DragonEgg against a llvm3.4 compiler.
Regards,
Richard Gorton
Cognitive Electronics
rcgorton at cog-e.com
----------
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name:
2015 Nov 03
3
RFC: Supporting macros in LLVM debug info
...DWARF
=========================================================
Command line: llvm-dwarfdump.exe -debug-dump=macro mainfile.o
--------------------------------------------------------------------------------------
mainfile3.o: file format ELF64-x86-64
.debug_macinfo contents:
DW_MACINFO_define - lineno: 0 macro: __llvm__ 1
DW_MACINFO_define - lineno: 0 macro: __clang__ 1
… <More compiler macros> …
DW_MACINFO_define - lineno: 0 macro: M3 Value3
DW_MACINFO_start_file - lineno: 0 filenum: 1
DW_MACINFO_start_file - lineno: 0 filenum: 2
DW_MACINFO_define - lineno: 0 macro: M4 Value4
DW...
2004 Oct 27
0
[LLVMdev] Re: Patch for missing rand48 on win32
Morten Ofstad wrote:
>> Hi,
>>
>> There's no HAVE_RAND48 symbol provided by autoconf. You'll have to
>> add the appropriate check to autoconf/configure.ac before we can take
>> this patch.
I installed autoconf with cygwin now and I think I've managed to do this
right now -- there are some strange problems with running the
AutoRegen.sh script, so I
2013 Jan 06
1
[PATCH] menugen: Make it compatible with Py3k
...f):
self.entry = self.entry_init.copy()
@@ -100,27 +100,27 @@ class Menusystem:
if not self.entry["info"]:
self.entry["info"] = self.entry["data"]
if not self.menus:
- print "Error before line %d" % self.lineno
- print "REASON: menu must be declared before a menu item is declared"
+ print("Error before line %d" % self.lineno)
+ print("REASON: menu must be declared before a menu item is declared")
sys.exit(1)
self.me...
2004 Oct 26
2
[LLVMdev] Re: Patch for missing rand48 on win32
> Hi,
>
> There's no HAVE_RAND48 symbol provided by autoconf. You'll have to add
> the appropriate check to autoconf/configure.ac before we can take this
> patch.
Sorry I forgot to mention I didn't make any changes to the configure
script. The problem is that I can't test these things since I'm not on a
Unix platform, and I'm not even using the
2006 May 13
0
Here's a recipe for Samba+Active Directory on Solaris 9
...de CPPFLAGS=-I/opt/local/include \
LDFLAGS=-L/opt/local/lib
make
make install
Patch to Heimdal 0.7 configure
------------------------------
---cut---cut---cut---
--- backup.configure Wed May 10 09:32:05 2006
+++ configure Wed May 10 09:57:51 2006
@@ -29163,13 +29163,11 @@
echo "$as_me:$LINENO: result: $ac_cv_func_snprintf_working" >&5
echo "${ECHO_T}$ac_cv_func_snprintf_working" >&6
-if test "$ac_cv_func_snprintf_working" = yes; then
cat >>confdefs.h <<_ACEOF
#define HAVE_SNPRINTF 1
_ACEOF
-fi
if test "$ac_cv_func_snprin...
2016 Jan 04
2
OPenssl and dependencies such as openssh
...his might be a croosmail, but necessary.
I did us openssl-SNAP-20160104 minorss erros and installed.
I tried openssh-SNAP-20160105 and the OpenSSL libraries cannot be found
In the openssh configuration file I see
# Determine OpenSSL library version
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking OpenSSL library versi
on" >&5
$as_echo_n "checking OpenSSL library version... " >&6; }
if test "$cross_compiling" = yes; then :
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cross
compiling: not che...
2015 Nov 03
2
RFC: Supporting macros in LLVM debug info
...DWARF
=========================================================
Command line: llvm-dwarfdump.exe -debug-dump=macro mainfile.o
--------------------------------------------------------------------------------------
mainfile3.o: file format ELF64-x86-64
.debug_macinfo contents:
DW_MACINFO_define - lineno: 0 macro: __llvm__ 1
DW_MACINFO_define - lineno: 0 macro: __clang__ 1
… <More compiler macros> …
DW_MACINFO_define - lineno: 0 macro: M3 Value3
DW_MACINFO_start_file - lineno: 0 filenum: 1
DW_MACINFO_start_file - lineno: 0 filenum: 2
DW_MACINFO_define - lineno: 0 macro: M4 Value4
DW...
2015 Nov 05
2
RFC: Supporting macros in LLVM debug info
...DWARF
=========================================================
Command line: llvm-dwarfdump.exe -debug-dump=macro mainfile.o
--------------------------------------------------------------------------------------
mainfile3.o: file format ELF64-x86-64
.debug_macinfo contents:
DW_MACINFO_define - lineno: 0 macro: __llvm__ 1
DW_MACINFO_define - lineno: 0 macro: __clang__ 1
… <More compiler macros> …
DW_MACINFO_define - lineno: 0 macro: M3 Value3
DW_MACINFO_start_file - lineno: 0 filenum: 1
DW_MACINFO_start_file - lineno: 0 filenum: 2
DW_MACINFO_define - lineno: 0 macro: M4 Value4
DW...
2015 Nov 13
2
RFC: Supporting macros in LLVM debug info
...=
>
> Command line: llvm-dwarfdump.exe -debug-dump=macro mainfile.o
>
>
> --------------------------------------------------------------------------------------
>
> mainfile3.o: file format ELF64-x86-64
>
>
>
> .debug_macinfo contents:
>
> DW_MACINFO_define - lineno: 0 macro: __llvm__ 1
>
> DW_MACINFO_define - lineno: 0 macro: __clang__ 1
>
>
>
> … <More compiler macros> …
>
>
>
> DW_MACINFO_define - lineno: 0 macro: M3 Value3
>
> DW_MACINFO_start_file - lineno: 0 filenum: 1
>
> DW_MACINFO_start_file - lineno:...
2015 Nov 04
2
RFC: Supporting macros in LLVM debug info
...-debug-dump=macro mainfile.o
>>
>>
>> --------------------------------------------------------------------------------------
>>
>> mainfile3.o: file format ELF64-x86-64
>>
>>
>>
>> .debug_macinfo contents:
>>
>> DW_MACINFO_define - lineno: 0 macro: __llvm__ 1
>>
>> DW_MACINFO_define - lineno: 0 macro: __clang__ 1
>>
>>
>>
>> … <More compiler macros> …
>>
>>
>>
>> DW_MACINFO_define - lineno: 0 macro: M3 Value3
>>
>> DW_MACINFO_start_file - lineno: 0 filenum...
2019 Aug 23
2
[nbdkit PATCH 3/3] plugins: Add .can_fast_zero hook
...re set on writable
+# connections even when can_zero returns false, because nbdkit reckons it
# can emulate zeroing using pwrite.
do_nbdkit <<'EOF'
@@ -145,8 +146,8 @@ case "$1" in
esac
EOF
-[ $eflags -eq $(( HAS_FLAGS|SEND_WRITE_ZEROES|SEND_DF )) ] ||
- fail "$LINENO: expected HAS_FLAGS|SEND_WRITE_ZEROES|SEND_DF"
+[ $eflags -eq $(( HAS_FLAGS|SEND_WRITE_ZEROES|SEND_DF|SEND_FAST_ZERO )) ] ||
+ fail "$LINENO: expected HAS_FLAGS|SEND_WRITE_ZEROES|SEND_DF|SEND_FAST_ZERO"
#----------------------------------------------------------------------
# -...
2015 Nov 13
2
[cfe-dev] RFC: Supporting macros in LLVM debug info
...gt;>>
>>> --------------------------------------------------------------------------------------
>>>
>>> mainfile3.o: file format ELF64-x86-64
>>>
>>>
>>>
>>> .debug_macinfo contents:
>>>
>>> DW_MACINFO_define - lineno: 0 macro: __llvm__ 1
>>>
>>> DW_MACINFO_define - lineno: 0 macro: __clang__ 1
>>>
>>>
>>>
>>> … <More compiler macros> …
>>>
>>>
>>>
>>> DW_MACINFO_define - lineno: 0 macro: M3 Value3
>>>
>&g...