search for: _debug

Displaying 20 results from an estimated 69 matches for "_debug".

Did you mean: debug
2009 May 27
2
[LLVMdev] CMake build maturity
...elis/llvm > --enable-optimized > melis at juggle2:~/c/llvm-svn> make install > melis at juggle2:~/c/llvm-svn> which llvm-config > /home/melis/llvm/bin/llvm-config > melis at juggle2:~/c/llvm-svn> llvm-config --cxxflags --ldflags --libs core > -I/home/melis/llvm/include -D_DEBUG -D_GNU_SOURCE > -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -O3 -fomit-frame-pointer > -fPIC -Woverloaded-virtual > -L/home/melis/llvm/lib -lpthread -ldl -lm -lelf > -lLLVMCore -lLLVMSupport -lLLVMSystem > > melis at juggle2:~/c/llvm-svn-build> cmake /home/melis/c/llvm-sv...
2009 Jun 01
0
[LLVMdev] CMake build maturity
...ble-optimized >> melis at juggle2:~/c/llvm-svn> make install >> melis at juggle2:~/c/llvm-svn> which llvm-config >> /home/melis/llvm/bin/llvm-config >> melis at juggle2:~/c/llvm-svn> llvm-config --cxxflags --ldflags --libs core >> -I/home/melis/llvm/include -D_DEBUG -D_GNU_SOURCE >> -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -O3 -fomit-frame-pointer >> -fPIC -Woverloaded-virtual >> -L/home/melis/llvm/lib -lpthread -ldl -lm -lelf >> -lLLVMCore -lLLVMSupport -lLLVMSystem >> >> melis at juggle2:~/c/llvm-svn-build> cma...
2013 Jul 20
2
[PATCH][git-pull] UNDIIF packet header debug
...it 89794a3d0b8659e2a143faeffc77877b45754c52: Matt Fleming (1): Merge branch 'dynamic-debug' into elflink are available in the git repository at: git://github.com/geneC/syslinux.git elflink-undi-debug-for-mfleming Gene Cumm (5): lwip: undiif: Fix debug options to unique *_DEBUG macros lwip: Allow LWIP_PLATFORM_* output to use dprintf lwip/undiif: split arphdr._hwlen_protolen core/lwip/undiif: dprint MAC/ARP/IP/ICMP/TCP/UDP headers; poll debug Allow for UNDIIF_ID_DEBUG in 1 mk line core/kaboom.c | 2 +- core/lwip/src/include/...
2007 Oct 09
1
VC6 Patch
...uot; /D "NDEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D "TH_REALLY_NO_ASSEMBLY" /YX /FD /c # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe @@ -64,7 +64,7 @@ # PROP Intermediate_Dir "Static_Debug" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "..\..\ogg\include" /I "..\..\theora\include" /D "W...
2009 May 27
0
[LLVMdev] CMake build maturity
...; ./configure --prefix=/home/melis/llvm --enable-optimized melis at juggle2:~/c/llvm-svn> make install melis at juggle2:~/c/llvm-svn> which llvm-config /home/melis/llvm/bin/llvm-config melis at juggle2:~/c/llvm-svn> llvm-config --cxxflags --ldflags --libs core -I/home/melis/llvm/include -D_DEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -O3 -fomit-frame-pointer -fPIC -Woverloaded-virtual -L/home/melis/llvm/lib -lpthread -ldl -lm -lelf -lLLVMCore -lLLVMSupport -lLLVMSystem melis at juggle2:~/c/llvm-svn-build> cmake /home/melis/c/llvm-svn -DCMAKE_BUILD_TYPE=Release...
2009 May 22
2
[LLVMdev] CMake build maturity
Paul Melis <llvm at assumetheposition.nl> writes: > Hi, just chiming in here... > > Óscar Fuentes wrote: >> [...] >> >> This is a simple guide for using cmake with LLVM: >> >> http://www.llvm.org/docs/CMake.html >> >> The makefiles distributed with LLVM have nothing to do with cmake. >>From the few times I tried building LLVM with
2008 May 21
3
[LLVMdev] 2.3 Pre-release available for testing
Razvan Aciu wrote: > As I saw from the mailing list the MSVC 2005 patches were made to take into > account the new files from the development branch, files which are not in > the 2.3 release. So for now the below patch is the only one functional for > the release. If I am wrong, please someone correct me. > > If someone can make a 2005 patch for the release branch, it is ok.
2011 Feb 14
1
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...-bit. > Maybe its just something messed up on my system (had 2.9.1 in > /usr/local/). Willtry removing that and reinstalling 2.8. OK, I figured, I have to set CMAKE_BUILD_TYPE to Release and then everything works. With an empty CMAKE_BUILD_TYPE it doesn't work, maybe because LLVM defines _DEBUG and that confuses wxwidgets into a debug mode, and fails because wxwidgets is really built in release mode? Don't know... Best regards, --Edwin
2020 Oct 03
0
[PATCH nbdkit v2 3/3] ocaml: Add bindings for nbdkit_peer_{pid, uid, gid}.
..._peer_uid]. *) +val peer_uid : unit -> int +(** Binding for [nbdkit_peer_gid]. *) +val peer_gid : unit -> int diff --git a/plugins/ocaml/NBDKit.ml b/plugins/ocaml/NBDKit.ml index 739210fa..76fa3a77 100644 --- a/plugins/ocaml/NBDKit.ml +++ b/plugins/ocaml/NBDKit.ml @@ -257,3 +257,7 @@ external _debug : string -> unit = "ocaml_nbdkit_debug" "noalloc" let debug fs = ksprintf _debug fs + +external peer_pid : unit -> int = "ocaml_nbdkit_peer_pid" +external peer_uid : unit -> int = "ocaml_nbdkit_peer_uid" +external peer_gid : unit -> int = &q...
2000 Mar 29
0
Something about Upper/Lower-case
...ibute The attribute byte of the file. char m_szFullName[_MAX_PATH] The absolute filename in the Windows character set. lpszFileName Example //example for CFile::GetStatus CFileStatus status; extern CFile cfile; if( cfile.GetStatus( status ) ) // virtual member function { #ifdef _DEBUG afxDump << "File size = " << status.m_size << "\n"; #endif } char* pFileName = "test.dat"; if( CFile::GetStatus( pFileName, status ) ) // static function { #ifdef _DEBUG afxDump << "Full file name = &qu...
2012 Aug 04
1
disable auth-worker logging
Hello all, Can someone please give me a hint about how can I disable such messages to be inserted into log file(maillog this case as syslog_facility = mail)? >> dovecot: auth-worker(13377): mysql(localhost): Connected to database postfix All the '_debug' and '_verbose' statements bear the 'no' value. Thank you. -- Best regards, Gmail-teopro mailto:teopro at gmail.com
2013 Jul 22
1
[PATCH][git-pull] UNDIIF packet header debug
...> Merge branch 'dynamic-debug' into elflink >> >> are available in the git repository at: >> >> git://github.com/geneC/syslinux.git elflink-undi-debug-for-mfleming >> >> Gene Cumm (5): >> lwip: undiif: Fix debug options to unique *_DEBUG macros >> lwip: Allow LWIP_PLATFORM_* output to use dprintf >> lwip/undiif: split arphdr._hwlen_protolen >> core/lwip/undiif: dprint MAC/ARP/IP/ICMP/TCP/UDP headers; poll debug >> Allow for UNDIIF_ID_DEBUG in 1 mk line > > Presumably this only p...
2009 Jun 01
2
[LLVMdev] CMake build maturity
...t;> melis at juggle2:~/c/llvm-svn> make install >>> melis at juggle2:~/c/llvm-svn> which llvm-config >>> /home/melis/llvm/bin/llvm-config >>> melis at juggle2:~/c/llvm-svn> llvm-config --cxxflags --ldflags --libs core >>> -I/home/melis/llvm/include -D_DEBUG -D_GNU_SOURCE >>> -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -O3 -fomit-frame-pointer >>> -fPIC -Woverloaded-virtual >>> -L/home/melis/llvm/lib -lpthread -ldl -lm -lelf >>> -lLLVMCore -lLLVMSupport -lLLVMSystem >>> >>> melis at juggle2:~/...
2014 Oct 02
2
[LLVMdev] Header File Not Found?
...-dir]\[source-dir]\[sub-dir-1] /IC:\[top-level-dir]\[source-dir]\[sub-dir-2] /IC:\[top-level-dir]\[dest-dir]\[dest-sub-dir]\include /IC:\[SDK-dir]\[SDK-source-dir]\[SDK-sub-dir]\include /IC:\[SDK-dir]\[SDK-source-dir]\[SDK-sub-dir]\include\[include-sub-dir] /Zi /nologo /W3 /WX- /Od /D WIN32 /D _DEBUG /D _WINDOWS /D _USRDLL /D [elided] /D _t_env_os_WIN32 /D [also-elided] /D _SCL_SECURE_NO_WARNINGS /D _CRT_SECURE_NO_WARNINGS /D OBJC_OLD_DISPATCH_PROTOTYPES=1 /D _WIN64 /D "__x86_64__= 1" /D _WINDLL /D _UNICODE /D UNICODE /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope...
2004 Dec 03
2
[LLVMdev] [Fwd: Updated LLVM Visual Studio project files]
...figurationType="4" > CharacterSet="2"> > <Tool > Name="VCCLCompilerTool" > Optimization="0" > AdditionalIncludeDirectories="..\..\tablegen_includes;..\..\include;.." > PreprocessorDefinitions="WIN32;_DEBUG;_LIB;__STDC_LIMIT_MACROS" > MinimalRebuild="TRUE" > BasicRuntimeChecks="3" > RuntimeLibrary="3" > ForceConformanceInForLoopScope="TRUE" > RuntimeTypeInfo="TRUE" > UsePrecompiledHeader="0" >...
2009 Jan 13
28
Warning and BUG with btrfs and corrupted image
Hi, when mounting an intentionally corrupted btrfs filesystem i get the following warning and bug message. The image can be found here www.cccmz.de/~snakebyte/btrfs.2.img.bck.bz2 [ 297.406152] device fsid e14cf01de423381a-4bd40b603870018a <6>devid 2147483649 transid 9 /dev/loop0 [ 297.411937] ------------[ cut here ]------------ [ 297.412207] WARNING: at fs/btrfs/disk-io.c:805
2009 Mar 18
1
Can't compile rtmpdump source
...ny system by defining the correct byte order and float word order. You also need to make sure the swap macros are compiled as well (they are in the Windows setion so far). I will add FreeBSD support in the next release, but it shouldn't be to hard to compile v1.4 on your own. Btw, uncomment _DEBUG in log.h to compile in release mode (I forgot to do that). I have no idea how to do the changes. Here is the source code: http://www.mirrorservice.org/sites/download.sourceforge.net/pub/sourceforge/r /rt/rtmpdump/rtmpdump-v1.4.tar.gz Regards, Josep Pujadas
2007 Dec 06
2
Some question about speexcodex 1.2 beta2 on linux
...); if (m_preProcesser) speex_preprocess(m_preProcesser, in, NULL); speex_encode_int(state, in, &bits); nbBytes = speex_bits_write(&bits, cbits, 200); fwrite(&nbBytes, sizeof(int), 1, fout); #ifdef _DEBUG printf("Encode nbBytes: %d\n", nbBytes); #endif fwrite(cbits, 1, nbBytes, fout); //fflush(fout); } speex_encoder_destroy(state); speex_bits_destroy(&bits); fclose(fin); fclose(fout); retur...
2004 Dec 03
0
[LLVMdev] [Fwd: Updated LLVM Visual Studio project files]
...tionType="4" > > CharacterSet="2"> > > <Tool > > Name="VCCLCompilerTool" > > Optimization="0" > > AdditionalIncludeDirectories="..\..\include;.." > > PreprocessorDefinitions="WIN32;_DEBUG;_LIB;__STDC_LIMIT_MACROS" > > MinimalRebuild="TRUE" > > BasicRuntimeChecks="3" > > RuntimeLibrary="3" > > ForceConformanceInForLoopScope="TRUE" > > RuntimeTypeInfo="TRUE" > > UsePrecom...
2015 Oct 14
2
Compiling SAFECode poolalloc in cygwin create different libraries compared to linux.
...LLVM_SRC/llvm/projects/safecode/tools/clang/lib/Parse/Release+Asserts/Parser.d.tmp -MP -MT /home/kpawar/SAFECode/LLVM_SRC/llvm/projects/safecode/tools/clang/lib/Parse/Release+Asserts/Parser.o -MT /home/kpawar/SAFECode/LLVM_SRC/llvm/projects/safecode/tools/clang/lib/Parse/Release+Asserts/Parser.d -D _DEBUG -D _GNU_SOURCE -D __STDC_CONSTANT_MACROS -D __STDC_FORMAT_MACROS -D __STDC_LIMIT_MACROS -D SAFECODE -D SAFECODE -I /home/kpawar/SAFECode/LLVM_SRC/llvm/include -I /home/kpawar/SAFECode/LLVM_SRC/llvm/projects/safecode/include -I /home/kpawar/SAFECode/LLVM_SRC/llvm/projects/safecode/tools/clang/lib/Pa...