This tag is for programming questions related to software and tools provided by the GNU ("GNU's Not Unix") project.

learn more… | top users | synonyms

1
vote
0answers
13 views

A company created a WordPress site for us using a GNU GPL theme - Are they required to provide us the source code?

I'll try to keep this TL;DR: A 3rd-party company was hired to create a WordPress blog for a client of mine. The WordPress installation & theme are hosted on their servers. (Might be irrelevant ...
0
votes
3answers
13 views

Use GNU GPL on webserver‏

I'm building a commercial (paid) web application, i'm using some libraries and software that are under lgpl, gplv2, gplv3, mit and bsd. I will not change the source code of this libraries/software, ...
0
votes
0answers
14 views

Can I separate my project GPL licensed and not, if I use GPL licensed codes

In a commercial project I will use GPLv2 and GPLv3 licensed codes. As far as I know, I have to give source code to costomer if use those codes in my project directly. By the way I changed a bit GPLv2 ...
0
votes
1answer
38 views

Enumerating supplementary groups in a C Program

I'm wanting to get a list of supplementary groups for the user by sending a request through NSS. To my reckoning, the following program should let me enumerate all the groups (so I can then compare ...
0
votes
0answers
9 views

GNU ld: What is the difference between these two linker scripts?

It looks like a game of "spot the difference" for software engineers at first, but the tiny difference in syntax apparently makes a huge difference in linking behaviour. ldscript1: ...
3
votes
1answer
95 views

C++ Find and remove references to little-used library

I'm modifying a large collection of legacy C++ code which has a few dependencies on the old commoncpp library. We want to replace commoncpp with something more modern (e.g. Boost). First I need to ...
1
vote
1answer
36 views

Is it legal to statically link libstdc++ and libgcc in a binary-only application?

Is it legal to distribuite a binary-only application which has been built by statically linking unmodified versions of both libstdc++ and libgcc from the GCC suite version 4.7 or greater?
-1
votes
1answer
14 views

Do I have to file a copyright for one of my open source application or will it be granted automatically? [closed]

I just finished developing an enterprise application which uses two open source libraries. My plan is to launch the application under an open source license but hold the copyright. Also, if I do ...
1
vote
1answer
156 views

GAS, MOVQ Throws operand mismatch, when trying to copy rax to mmx register

I'm using gnu assembly and gcc compiler. I have to make some operations using mmx registers. I've got a memory buffer of bytes, I'm reading 1 byte from memory to %al, making logical and operation and ...
0
votes
1answer
13 views

Resque with God uses IO.popen

I am under rvm. I have god. It starts resque. Resque job opens an IO.popen to the local system program, sends it some text, gets some text back from the stream, analyses it a bit, closes the IO. So: ...
0
votes
1answer
46 views

Rename all files in a directory to that of another directory

I have two directories, foo and bar. Both contain the same number of files. I wish to rename all the files in foo to the same as the files in bar. Meaning the first file in foo would be renamed to ...
1
vote
1answer
42 views

Cross compiling with automake

I'm trying to cross compile a project and a library it depends on for use on an embedded system. Both the application and the dependency use automake. I was able to compile the library without much ...
0
votes
1answer
24 views

GNU Make: sed doesn't work when piped inside of $(shell)

Here is my experimental Makefile. .SECONDEXPANSION: ~/hello.txt: $(shell echo '$$(@D)/')$(shell echo '$$(@F)' | sed -e 's/hello/bye/') echo "$^" Somehow the sed command doesn't work, and Make ...
0
votes
0answers
71 views

In GNU Emacs Calc embedded mode, unable to simplify unit N/m^2 to Pa

In GNU Emacs (v24.3.1) Calc embedded mode, I'd like to perform unit simplification such that (5 N / 2 m^2) gives the result 2.5 Pa (where 1 Pa = 1 N/m^2). But I am unable to get the unit N/m^2 ...
1
vote
2answers
39 views

GNU sort - What is the default algorithm used for comparison?

I need help understanding the default algorithm for GNU's sort. I assumed it did a lexicographic sort, however I found out some behavior that does not correspond to that, as an example take the ...
2
votes
1answer
59 views

GNU parallel not working at all

I have been trying to use GNU parallel for some time, but I have never been able to get it to function at all! For example, running (in a non-empty directory!): ls | parallel echo # ...
3
votes
1answer
84 views

why initstate_r crashes when using variables on the stack

Sorry this question not end yet. I'm trying to write a thread-safe random generator, but it crashes at initstate_r(time(NULL), m_state_buff, sizeof(m_state_buff), &m_data); My gcc version: ...
0
votes
3answers
53 views

How can I match a range between a line and the last occurrence of a pattern in `sed`?

Is there a simple way to set up pattern range matching in sed to have the second pattern look for the last occurence in a file? sed -r '1,/\[notice\]/d' /var/log/apache2/error.log will spit out ...
0
votes
1answer
53 views

In solaris vsnprintf core dump in strlen function is any method to resolve this?

I am calling vsnprintf , as below If Vargs is NULL then vsnprintf coredump in strlen function,but same core work fine in other OS like linux , AIX .... Is there any solution for this ? I can't avoid ...
0
votes
1answer
26 views

Adding a Service to Name Service Switch

So I am trying to add a service to NSS (Name Service Switch). Please note the GNU guide on how to do it here. I have been following that guide. I need to implement a service that works with the passwd ...
0
votes
0answers
43 views

CMake GUI always uses Clang compiler despite setting env variables, deleting cache, selecting compiler, etc

I am helping a friend use the CMake GUI to make a project we are both working on. When I run the configure on my machine, with Xcode and default compilers selected, it detects that the GNU compilers ...
3
votes
1answer
40 views

how to correctly use prune? -type d and -type f have a different effect on prune?

When I use find . -type f -path ./source/script -prune -o -print; I get files in the "pruned" ./source/script directory. ... ./source/script ./source/script/myapp02.4372d2ea3388.js ...
0
votes
2answers
63 views

Why is the fgets function deprecated?

From The GNU C Programming Tutorial: The fgets ("file get string") function is similar to the gets function. This function is deprecated -- that means it is obsolete and it is strongly ...
0
votes
1answer
66 views

How can I get my makefile to compile/link older and newer GCC/GNU libraries? C++

I have GNU 4.7.1 as the default on my MacBook. I keep getting tons of segfaults when I run my program on my school's server. I downloaded the current state of my program from my schools server so that ...
-1
votes
2answers
65 views

Can I edit and then make money from a free WordPress plugin? [closed]

I've found a free WordPress plugin, which I'd like to edit considerably and then sell. Is this allowed or not? Who owns the copyright, and does the license permit the reselling of plugins? Thanks.
0
votes
3answers
79 views

Why do I have to double run make to fully compile my program? GNU c++

Im terrible with understanding what goes on behind the scenes when running programs. On my schools server, I just use gcc and pretty much the same code every time I need to make a makefile lol. I ...
0
votes
1answer
44 views

How do I get my IDE to provide the C++ libraries?

I figured out how to get the correct and current version of GNU to be the target when compiling. Now whenever I try to compile.. I get tons of errors that I'm assuming are related to the C++ ...
2
votes
2answers
59 views

Assembly instructions for a function having pointer as local variable

I am trying to understand how assembly is generated for c. I wrote a sample program and disassembled it for the same. int main() { int a = 100; } Assembly generated: pushq %rbp # movq ...
0
votes
1answer
20 views

Add legend in GNU Plot

I have a plot with six different colorline in the same graph in GNU. Now my problem is to give description of the each line in the right side of the graph i.e. I have to add legend. What command ...
0
votes
1answer
50 views

Checking for a C++ compiler's presence

The GNU documentation for AC_PROG_CXX states that: Otherwise, if the macro is invoked without an argument, then search for a C++ compiler under the likely names (first g++ and c++ then other ...
1
vote
1answer
18 views

GNU Screen inside GNU Screen, who is in command mode? [closed]

Has anyone found a workable way to give clues as to which window is in command mode now. Eg you have a screen within a screen, each has a hardstatus bar at the bottom. You hit ^A and the outer screen ...
0
votes
2answers
41 views

How to condense relative filenames in C++

I'm building my own scripting language, just for fun (yes, I am aware of the difficulties of doing this), in C++ on Linux. This scripting language is going to have an import mechanism for including ...
0
votes
3answers
53 views

BASH - Most efficient method of setting this script as a timed/routine event?

I've recently started a simple project, just to help me learn the BASH scripting language a little better. Anyway, this script is set to alternate/rotate the user's desktop background/wallpaper at a ...
2
votes
3answers
53 views

Bash arrays and negative subscripts, yes or no?

The GNU bash manual tells me An indexed array is created automatically if any variable is assigned to using the syntax name[subscript]=value The subscript is treated as an arithmetic ...
0
votes
0answers
94 views

GNU Assembler for Windows (MinGW). DLL Import functions

I try to use GNU assembler in windows, because I like AT&T syntax more than Intel. But I have problem with using DLL in my program. I created simple MessageBox program with GAS (MinGW) but with ...
1
vote
1answer
63 views

How do I enable bracketed paste mode with Vim in gnome-terminal?

After reading this answer I'd really like to try bracketed paste mode on my Ubuntu desktop. Anyone know if this is possible, and if so, how to make it work?
0
votes
0answers
15 views

GNU screen auto re-size with screen -x

Is there a way to auto re-size screen windows, along with screen -x option? I know we can do this by using the screen fit command, once the shared screen session is open, but is there a way to do this ...
0
votes
1answer
23 views

GNU Guile SCM to char*

I am relative new to FFI and GNU Guile, and I am writing bindings to a library that heavily uses char* variables. Here is code from function, that wraps C function: static inline char* ...
0
votes
0answers
38 views

How should I change Font Size

Hi im using octave i need to mark some special points (i want mark these points using solid circles) on the curve that i had drawn. can any help me?? I'm having a another question. how can i ...
1
vote
1answer
41 views

Have error output include last couple lines of code

Is it possible, and if so, how would you make error output include the last couple lines of code? I know about GNU g++'s support for __LINE__ and __FUNC__ but those only give the line number as an int ...
0
votes
0answers
13 views

what's the usage of function alignment?

I read Function Attributes chapter in GNU manual. There is aligned (alignment), I know variable aligned, but what's the meaning and usage of alignment of function? Could someone give me some help or ...
0
votes
1answer
25 views

how to specify attribute of GNU C?

In GUN C manual, 6.30 Declaring Attributes of Functions, it states: You may also specify attributes with __ preceding and following each keyword. This allows you to use them in header files ...
0
votes
0answers
100 views

How to compile glibc for x86 soft-float or without floating point unit (fpu)

I have a x86 core which does not support floating point unit (FPU), and i am writing a micro kernel for floating point calculations such as add, div, mul, pow, log etc. As per need i must use static ...
1
vote
1answer
30 views

Terms of conditions for soapui-4.5.1.jar and xmlbeans-2.4.0

I'm going to use java libraries soapui.jar and xmlbeans.jar from maven repository http://www.soapui.org/repository/maven2/eviware What licence they are under? Can I add them to my web application if ...
0
votes
0answers
15 views

Where is a function declared in c/c++? (Scanning unfamiliar libraries)

I am looking at the dd.c file from coreutils. There is a function _( char* ), which is used with fprint & friends to sanitize (I guess), that I can not obviously connect with any of the includes. ...
0
votes
0answers
19 views

how to use gnu trove in eclipse

I downloaded the gnu trove 3.03 and extract it to a local directory. then I add the trove-3.03-src.jar to my project in eclipse, but there is still import error like The import ...
0
votes
1answer
41 views

Create a new Screen Window over SSH?

I have a function I found online to add to my .bashrc which spawns a new SSH session with the hostname: # Opens SSH on a new screen window with the appropriate name. screen_ssh() { numargs=$# ...
0
votes
1answer
120 views

ARM GCC Compiling errors (Windows 7)

Here is my entered command and what it spits out: Unfortunately, google has not been of much help, but I have tried several things (from my extremely beginner knowledge) and I have not been able to ...
0
votes
0answers
89 views

Brew install not working - Configures but make install fails to execute

I have tried using both brew and rvm install to install ruby 1.9.2 Both result in the same error: ==> Installing ruby-build dependency: autoconf ==> Downloading ...
1
vote
1answer
28 views

linking executable with a full path to the static library

i'm linking and building executable against the library in the following way mpic++ -Wall -o example example.o /path/to/my/lib/libmy.a otool -L example shows me that it's linked against example: ...

1 2 3 4 5 18