search for: gnuc

Displaying 14 results from an estimated 14 matches for "gnuc".

Did you mean: gnu
2018 Apr 10
3
Invoice numbering for customers
Just wanted to ask a quick question here. I am running GNUC 2.6.12 and when I create a invoice for a customer I have to enter an invoice number. I was thinking perhaps there is setting somewhere that I missed to get it to automatically fill in a invoice number? Id hate to have invoices with the same invoice number since I have to manually type them in...
2011 Nov 29
2
[LLVMdev] anchoring explicit template instantiations
...ate<class DataType> class basic_parser { virtual ~basic_parser() {} }; __extension__ extern template class basic_parser<bool>; implementation: template class basic_parser<bool>; (both lines are wrapped in a macro (Compiler.h:77-88) & are no-ops in non-GNUC compilers (where the __extension__ extern is not available)) Adding in a virtual anchor function with an out-of-line (but still template) definition (either in the header or the cpp file) does not remove the warning. So the question is - is there any way to anchor these explicit instantiations? S...
2014 Feb 01
1
PATCH for bitmath.h
FLAC__bitmath_ilog2_wide() function is still problematic: 1) it cannot be compiled with MSVS 2) it returns correct results only when compiles with GNUC 3) it mentions LGPL which isn't good for a BSD-licensed library Here's the patch that should fix these issues. (about LGPL -> CC0 change: http://lists.xiph.org/pipermail/flac-dev/2013-September/004356.html ) -------------- next part -------------- A non-text attachment was scrubbed......
2000 Dec 20
1
Installing R
I am trying to install R on a suse 7.0 linux system. When I attempt to use the source, I receive an error message that says no fortran compiler was found. I do have gnuc which is supposed to have g77 as part of the installation, but I don't know how to use this information. I also tried the binary installation and received an error message: bash-2.04# rpm -ivh R-base-1.1.1-2.i386.rpm..rpm error: failed dependencies: libblas.so.2 is needed by R-base-1....
2004 Apr 28
1
Bug in rsync 2.6.1
It fails to compile on Irix (compiler 7.2.1). Whereas rsync.h has a #define for __attribute__(x) to remove it for non GNUC and APPLE, this isn't used when compiling popt/popt.c, so it produces an error as it doesn't like __attribute__((__unused__)) showing up in the parameter list for poptAddAlias. popthelp.c also uses UNUSED. A workaround was to copy the #define setting of __attribute__ from the ../rs...
2011 Dec 01
0
[LLVMdev] anchoring explicit template instantiations
...> virtual ~basic_parser() {} > }; > > __extension__ extern template class basic_parser<bool>; > > implementation: > > template class basic_parser<bool>; > > (both lines are wrapped in a macro (Compiler.h:77-88) & are no-ops in > non-GNUC compilers (where the __extension__ extern is not available)) > > Adding in a virtual anchor function with an out-of-line (but still > template) definition (either in the header or the cpp file) does not > remove the warning. > > So the question is - is there any way to anchor th...
2016 Oct 14
2
emflac
...iced some general issues. I'll discuss them here, but if you want me to, I can easily turn them into pull requests on GitHub. I'd rather avoid creating an account anywhere else if possible. 1. Version checks in macros.h There is something strange about the libFLAC macros.h. It checks for GNUC 4.3+, but emcc is apparently based on a clang 3.9.0 which identifies itself as GNUC 4.2.1. It does support the statement expression used for flac_max. So perhaps you could add a different condition; something like (…) || (defined(__clang__) && (__clang_major__ > 3 || \...
2015 Dec 20
10
[Bug 93454] New: Can't build with LLVM/clang 3.7.0
https://bugs.freedesktop.org/show_bug.cgi?id=93454 Bug ID: 93454 Summary: Can't build with LLVM/clang 3.7.0 Product: Mesa Version: 11.0 Hardware: Other OS: All Status: NEW Severity: normal Priority: medium Component: Drivers/DRI/nouveau Assignee: nouveau at
2013 May 15
2
FLAC currently won't compile for Android [bisected]
...s.o] Error I have bisected the bug. 03a9e6064d406e3656afacdbe50e8e47ebfa0de3 is the first bad commit commit 03a9e6064d406e3656afacdbe50e8e47ebfa0de3 Author: Erik de Castro Lopo <erikd at mega-nerd.com> Date: Sun Apr 7 20:15:09 2013 +1000 src/libFLAC/include/private/macros.h : Check GNUC version for MIN macro. :040000 040000 b280a8ffb3737f3e50d2f9862bf93b1b925b27a7 327ba77b0b795650b24b254104d4639f427a7a5a M src See http://showlabor.blogspot.de on how to set up a build environment for Android. Regards, Felix -------------- next part -------------- An HTML attachment was sc...
2001 Jun 27
1
Patch to get libvorbis 1.0b4 to build on Solaris 2.7
Apps building against libvorbis 1.0b4 will fail to link on Solaris 2.7 because libvorbis uses atanf, sqrtf, etc., which aren't available on that platform. In lib/os.h, there are a couple of workarounds (ifdef DARWIN, ifndef GNUC), but I'm building on Solaris with gcc, so this doesn't help me any. :) Attached is a patch to configure.in which checks for sqrtf in libm, and if it finds it, it uses them in os.h; otherwise, it doesn't use them. This way configure can do the work instead of #ifdeffing os.h for each p...
2012 May 09
1
[PATCH 2/2] bitmath: Finish up optimizations
...og2( 3) = 1 - * ilog2( 4) = 2 - * ilog2( 5) = 2 - * ilog2( 6) = 2 - * ilog2( 7) = 2 - * ilog2( 8) = 3 - * ilog2( 9) = 3 - * ilog2(10) = 3 - * ilog2(11) = 3 - * ilog2(12) = 3 - * ilog2(13) = 3 - * ilog2(14) = 3 - * ilog2(15) = 3 - * ilog2(16) = 4 - * ilog2(17) = 4 - * ilog2(18) = 4 - */ - -#ifndef __GNUC__ - -/* For GNUC, use static inline version in include/private/bitmath.h. */ - -unsigned FLAC__bitmath_ilog2(FLAC__uint32 v) -{ - unsigned l = 0; - if (v == 0) - return 0; - while(v >>= 1) - l++; - return l; -} - -unsigned FLAC__bitmath_ilog2_wide(FLAC__uint64 v) -{ - unsigned l = 0; -...
2009 Mar 05
0
[PATCH 5/5] COM32/rosh: Improvements
...CONFIG - -# CFLAGS = $(GCCOPT) -W -Wall -march=i386 \ -# -fomit-frame-pointer -D__COM32__ \ -# -nostdinc -iwithprefix include \ -# -I$(com32)/libutil/include -I$(com32)/include -# -g3 -dD - -# LNXCFLAGS = -I$(com32)/libutil/include -W -Wall -O -g3 -D_GNU_SOURCE -dD -# -U__GNUC__ diff --git a/com32/rosh/rosh.c b/com32/rosh/rosh.c index 5eaa47d..d78e73a 100644 --- a/com32/rosh/rosh.c +++ b/com32/rosh/rosh.c @@ -1,6 +1,6 @@ /* ----------------------------------------------------------------------- * * - * Copyright 2008 Gene Cumm - All Rights Reserved + * Copyright 2...
2009 Feb 15
2
COM32 module: Read-Only shell
...CONFIG + +# CFLAGS = $(GCCOPT) -W -Wall -march=i386 \ +# -fomit-frame-pointer -D__COM32__ \ +# -nostdinc -iwithprefix include \ +# -I$(com32)/libutil/include -I$(com32)/include +# -g3 -dD + +# LNXCFLAGS = -I$(com32)/libutil/include -W -Wall -O -g3 -D_GNU_SOURCE -dD +# -U__GNUC__ diff --git a/com32/rosh/Makefile b/com32/rosh/Makefile new file mode 100644 index 0000000..f92fe67 --- /dev/null +++ b/com32/rosh/Makefile @@ -0,0 +1,38 @@ +## ----------------------------------------------------------------------- +## +## Copyright 2001-2008 H. Peter Anvin - All Rights Reserve...
2010 Jun 27
1
[PATCH] ROSH: Upgraded
...this file. @@ -37,28 +38,23 @@ #include <unistd.h> /* getcwd() */ #include <errno.h> /* errno; error macros */ #include <netinet/in.h> /* For htonl/ntohl/htons/ntohs */ +#include <ctype.h> /* isspace() */ #include <getkey.h> #include <consoles.h> -/* A GNUC extension to void out unused functions are used */ -/* Plus, there seem to be other references for SYSLINUX to __GNUC__ */ -#ifndef __GNUC__ -#error SYSLINUX (I believe) requires __GNUC__ -#endif /* __GNUC__ */ - -#define DO_DEBUG 1 - #ifdef DO_DEBUG -#define ROSH_DEBUG(f, ...) printf (f, ## __VA_...