gnu

How do I get GNU make to output the commands it executes to builds its targets

none of the --debug= flags seem to do it for me. ...

codeSourcery G++ Lite Edition is a freeware?

hi, codeSourcery G++ Lite Edition is a freeware or Sharware? any help please? please see the link "http://www.codesourcery.com/sgpp/lite_edition.html" ...

Installing x86_64 version of ddd, but missing .so libraries

I am trying to install ddd on my x86_64 GNU/Linux machine. I have tried installing a few different versions of ddd, but when I type "rpm -i ddd..." I get: ddd-> rpm -i ddd-3.3.11-14.el5.4.x86_64.rpm warning: ddd-3.3.11-14.el5.4.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 217521f6 error: Failed dependencies: ...

inconsistent sort behavior

I have a sample file containg "aA0_- " characters on each one on a single. Sorting it using GNU sort gives the following sort order: $ cat /tmp/sample | sort _ - 0 a A after appending some other character, we obtain a different order (non-alphanumeric characters seems to have lower priority): $ cat /tmp/sample | sed 's/$/x/' | sort ...

Bloated echo command

Look at the following implementations of the "echo" command: http://www.openbsd.org/cgi-bin/cvsweb/src/bin/echo/echo.c?rev=1.7;content-type=text%2Fx-cvsweb-markup (OpenBSD) http://cvsweb.netbsd.org/bsdweb.cgi/src/bin/echo/echo.c?rev=1.18&content-type=text/x-cvsweb-markup&only_with_tag=MAIN (NetBSD) http://www.freebsd.org/cgi/cv...

Will Brew MP Run without Sourcery G++ ARM Compiler?

can I compile & run Brew MP Applications without Sourcery G++ ARM Compiler? ...

What is the relation between PATH_MAX and NAME_MAX, and how do I obtain?

In limits.h, and in various places in the POSIX manpages, there are references to PATH_MAX and NAME_MAX. How do these relate to one another? Where is the official documentation for them? How can I obtain them at run time, and (where relevant) compile time for the C, Python, and GNU (shell) environments? ...

GNU sed - find or replacing spaces or new lines. Why is this not working? v3.02 vs v4.2

C:\crp\cnp>sed -V GNU sed version 3.02 Copyright (C) 1998 Free Software Foundation, Inc....... C:\crp\cnp>type f.f a a a a a a Trying to replace 'a' with spaces. C:\crp\cnp>type f.f | sed -e s/a/\d032/g d032 d032 d032 d032 d032 d032 why isn't it working? I don't mind whether i'm finding or replacing spaces or new lines.. I ...

How do I set GNU G++ compiler in Visual studio 2008

How do I set my Visual studio 2008 compiler to GNU GCC. Can I also make it specific to projects? I didn't find any conclusive answer. Thank you. ...

Using GNU Privacy Guard in .NET

Is there some way to use GNU Privacy Guard functionality directly? Yes, I know about redirecting input/output streams from gpg.exe utility, but maybe we can use some unmanaged libraries from distribution directly? ...

Is it legal to do this?

Someone created a program that was GNU GPL licensed. Then some other people took that source code and added features to it. They refuse to reveal the source code for the upgraded program. Edit: They are distributing the program from this website: http://pokerbot.proboards.com/ ...

Opensource legal question

Hey everyone, Is there any part of the GNU General Public License that would prevent someone from redistributing an open source project with new code added that is not open source. Such that the open source project except for minor structural changes will be released under GPL, but additional code that will add new functionality to the ...

objdump ELF and Windows

Hello, I am fairly new to this subject, that is ELF and any Linux related stuff. I am trying to write an ELF file and would prefer to do it on WinXP. My question is, can this be done with MS Visual Studio including the compilation? As far as my understanding goes, ELF files can not be compiled on Windows OSs. Well, at least that's wha...

How do you tell if the current terminal session is in GNU screen?

I have a command I want to execute in .bashrc only when the current terminal window is managed by GNU screen. How do I tell it? Is there an environment variable for it? I used to have if [ -n "$WINDOW" ]; then command fi but, from what I can tell, $WINDOW may or may not be defined across all screen managed sessions ...

Light C data structures and strings library?

I'm searching for something on the level of GNU extensions for C, but a little beyond (some basic data structure management). Best would be something BSD/MIT licensed. If there is something for just strings containing GNU extensions equivalents plus adding some more it would be great. I would prefer something that can be simply compile...

Sending commands to the active program in a screen session?

I've got a server running inside a screen session, and I want to send this program a command. I thought screen -X was my answer, but all that gives me access to is screen commands (title, exec, etc). I need to be able to send the command as if I was typing it into the program. Any ideas? ...

What is the difference between various implementations of dc?

dc is the Unix standard desktop calculator. AFAIK, there are different implementations (like Solaris or GNU for instance). What is the exact difference between these implementations and what is the minimal subset of operations you can be sure a dc implementation has? ...

GNU Source-highlight use same colours as vim

I'd like to have GNU Source-highlight [ http://www.gnu.org/software/src-highlite/ ] use the same colorings as my vim setup [ http://vimdoc.sourceforge.net/htmldoc/syntax.html ]. I'm using a recent Ubuntu and not done any customization over the default installs of vim of source-highlight other than to enable highlighting in vim. ...

white space free path to My Documents

Hello All, In building a C++ project with the GNU tool chain, make tells me ~ src/Adapter_FS5HyDE.d:1: * multiple target patterns. Stop. Search, search, search, and I found out that make thinks that it has multiple targets because the path to my included headers has spaces in it. If you've got your headers stored in some sane p...

How does Fortran return arrays?

The subroutine Rule_Tn in the Fortran library CUBPACK needs a parameter Integrand describing the integrated vector function. It's a INTERFACE FUNCTION Integrand(NF,X) RESULT(Value) USE Precision_Model INTEGER, INTENT(IN) :: NF REAL(KIND=STND), DIMENSION(:), INTENT(IN) :: X REAL(KIND=ST...