General :: Installing Libraries For Cygwin?

Mar 19, 2010

I want to install these libraries in cygwin, how do I do it? are all of them available on cygwin environment or only on linux?

g++ - the version 4.4
graphviz
gnuplot
plotdrop

[Code].....

View 1 Replies


ADVERTISEMENT

General :: Required In Installing Anjuta & Pango In CYGWIN?

Oct 13, 2010

I am very new to Linux. I want to work on GTK. As I came from VB background, I want to use Anjuta IDE to start my design. I installed CYGWIN. When I am trying to install anjuta , I am getting error saying GLIB and Unique1.0 not found :

[Code]...

View 3 Replies View Related

Programming :: Get Rid Of Cygwin.dll/Cygwin1.dll In Program Compiled Under Cygwin ?

May 17, 2009

I have a program that is completed under Linux, it requires library tidy, PCRE and libcurl, which could be found in Cygwin too.

I could compile my linux program through Cygwin and produce an EXE file, however it do require 'cygwin.dll' installed by the users.

I am wondering if I could have someway to produce out a stand-alone EXE file that could run independently from Cygwin ? ( I don't mind to combine that cygwin.dll and the EXE together for a larger EXE file).

View 1 Replies View Related

General :: Skype And Installing Libraries / Packages - 'GLIBCXX_3.4.9' Not Found

Oct 15, 2010

I've got an Aspire one Linpus Linux Lite and I have a problem installing Skype. When I tried to run Skype after downloading I got the following:

skype: /usr/lib/libstdc++.so.6: version 'GLIBCXX_3.4.9' not found (Required by Skype)

In the terminal window I typed the following: rpm -q glibc And got glibc-2.9-2 How do I install the required packages/libraries?

View 2 Replies View Related

General :: Use Always The Latest Versions Of The Libraries And Don't Save The Old Libraries For Compatibility?

May 11, 2011

Why many Linux distros are trying to use always the latest versions of the libraries and don't save the old libraries for compatibility? I mean, I can see libtiff for example, i can found a libtiff.so.5 on my /usr/lib, but doesn't store a libtiff.so.4 or 3 just for binary applications or games. For this example, I need libtiff.so.4 for uplink.

That should happen too on the old version of sims for linux, some ID games or others.What's wrong with storing old libraries? PD: Yay, my first post on 3 years!

View 6 Replies View Related

General :: Using Dynamic Libraries As Static Libraries?

May 6, 2010

Is there any way to use a dynamic libraries as a static libraries instead when compiling, so that my resulting executable won't have them as dependencies?

View 3 Replies View Related

Red Hat / Fedora :: Installing Libraries And Packages From Cd Or Dvd?

Sep 7, 2009

i wanna install packages for my RHLE how can i do that ,i tried in the add/remove software menu ,but i didn't work
i tried rpm tools but the problem is how can i specify what i want from the cd like cmake library for example.

View 2 Replies View Related

Ubuntu :: Missing Libraries When Installing From Sources

Oct 24, 2010

Installing from sources was always complicated to me, but biggest problem is installing when some strange dependencies are "missing". Let's do it on example - I am sure it will benefit lots of users.I have a unmodified ubuntu 9.10 (Karmic) on 64 bir architecture. I download latest Grisbi sources from official web page.I didn't modify any paths to system variables...and it's usually problem with glib or gtk with all other sources I try to install.

1) Could someone help me in this particular case with missing dependencies please?
2) What every User should do when trying to install from source and some libraries are missing?How to find them? How to install them ?

View 4 Replies View Related

CentOS 5 :: Method For Installing Different Version Of GTK Libraries?

Apr 8, 2009

A much older version of the program compiled against GTK 1.2 works on CentOS 5.3

A current version of the program, compiled against GTK2, works in Slackware 12.1, 12.2 and 12.3. But I have a failure (see below) in CentOS 5.3.

The GTK library for each dist is
libgtk-x11-2.0.so.0.800.20 for Slackware 12.1
libgtk-x11-2.0.so.0.1200.9 for Slackware 12.2 and 12.3
and
libgtk-x11-2.0.so.0.1000.4 under CentOS 5.3

I have had the software working on different versions of GTK as well but no longer that that version information available.

(Below) -- I believe I've narrowed it down to the function gtk_entry_set_text in some (but certainly not all) instances.

I could provide details, but I doubt they really matter. My best guess is that libgtk-x11-2.0.so.0.1000.4 is broken. So, I'd like to replace it without learning how to compile gtk from scratch or causing problems with the rest of CentOS.

View 3 Replies View Related

Ubuntu :: Correctly Installing Libraries And (non-kernel) Header Files?

Jun 9, 2010

Not I recently installed a package (Vision Egg) that requires the Open GL libraries and headers, specifically, gl.lib and gl.h. I used Synaptic to install nvidia-current and nvidia-current-dev and it now looks as if the required libraries (under different names) are installed in /usr/lib/nvidia-current and as if the required headers are in /usr/include/nvidia-current. I am a bit confused because I also have /usr/lib/nvidia and /usr/lib/nvidia-173.

The installation of Vision Egg fails with "cannot find GL/gl.h" and "/usr/bin/ld: cannot find -lGL"There is a related post a few years ago under thread 200901 but it relates only to a single file problem that is fixed manually. I'd rather avoid that because it looks like it is easily breakable.Is there a standard way --- that is, a method that does not require error-prone manually changing or linking a multitude of file names --- of ensuring that programs which require GL/gl.h actually find the correct nvidia header file and also that the link loader finds the GL libraries.

View 2 Replies View Related

General :: How To Work On Cygwin

Jul 28, 2010

As one of our friends told, I have downloaded and installed the CYGWIN on my winows xp pc, to learn and practice linux commands.when the icon of it is double clicked, its screen as appearing as below:

System1@system ~
$
MY DOUBT IS :

I could make a directory with command like mkdir. But after that it is not allowing commands like touch, vi, vim etc.How i have to write data or a file in it. Still anything to do after installing CYGWIN.

View 3 Replies View Related

General :: Fpermissive Error Of Gcc In Cygwin?

Apr 15, 2011

I am using cygwinI am getting these errors when i compile sim_routing.cc program by this command../../bin/cxx sim_routing.ccg++ -Wall -o sim_routing sim_routing.cxxfollowing errors comes../../common/priority_q.h : In member function 'bool guardedQueue<ITEM>::Validate(Const char*);error : there are no argument to 'strcat' that depend on template parameter so a declaration of 'strcat' must be avaible.error : <if you use -fpermissive g++ will accept your code but allowing use of undeclared name is deprecated>error : there are no argument to strcat that depends on template parameter,so declaration to strcat must be avaible

View 1 Replies View Related

General :: Can't Copy And Paste Into Cygwin

May 7, 2010

I can't copy and paste into Cygwin... is there a good alternative to Cygwin that will let me do this?

View 7 Replies View Related

General :: All Commands Exist In Cygwin?

Jan 25, 2011

I want to use the command more to see the content of a text file; however, the command is not available. I wonder whether all linux commands exist in cygwin. I am running cygwin on windows xp.

View 4 Replies View Related

General :: Compiling Using Cygwin - Error Not ELF

Oct 14, 2010

New to this kernel stuff But not too new to C/C++. I'm trying to compile the linux kernel on a PC, that is running Windows XP 32 bit, using Cygwin. I keep getting the error saying:

Error: Not ELF
make[2]:*** [scripts/mod/elfconfig.h] Error 1
make[1]:*** [scripts/mod] Error 2
make:***[scripts] Error 2

Every time I try to compile it from the main directory of the source, which I hope is what I'm supposed to do, I always get this.

View 14 Replies View Related

General :: Make Not Working In Cygwin

Aug 16, 2010

I installed the CUnit framework which is a .tar.gz file from the bash shell in cygwin.

make gives me an error saying:

make install works
make clean works

I am not able to compile but install works I do not know if it is installed and as to where it is installed

when i checked it gives me a list of header files and also the lib files. I do not know as to why the make command is not working in cygwin. When i go to the bin directory it shows the make command.

View 5 Replies View Related

Fedora Installation :: Installing 32-bit Support Into 64-bit / Not Found' And 'error While Loading Shared Libraries?

Dec 1, 2009

Trying to launch Second Life gives the following error message:

You are running the Second Life Viewer on a x86_64 platform. The most common problems when launching the Viewer (particularly 'bin/do-not-directly-run-secondlife-bin: not found' and 'error while loading shared libraries') may be solved by installing your Linux

This problem was easily found using search with solutions for Fedora 11.

The following information has been found for adding the 32 bit support to Fedora 11 but it does not work in Fedora 12.

The file created in the instructions below is a list of the 32 bit libraries. It is then called as input to yum to simply install them.

"Add the Libraries Next, add the 32-bit libraries by copying the following list, and pasting it into a text file. Save it as �Fedora-ia32.txt�."

Another post says that was all unnecessary as the following commands would do the same thing.

Could have simply been achieved by calling:$ yum install SDL.i586...(Or by selecting SDL.i586 in add/remove programs.)

The problem I have with Fedora 12 are neither of these will install anything in Fedora 12. Looking at add/remove programs does not yield anthing that looks like it is 32 bit support when searching with the argument "SDL".

Does anyone know how to install 32 bit support into Fedora 12 64 bit version ? I like the simple yum expression rather than long lists like the first example uses, but I'll try anything if it works.

A side question to this entire experiment is what chance would you give to Second Life being able to be run remotely using VNC? I would think if it runes on the Linux machine, using a remote terminal would have little impact. Using VNC isn't the usual way this will be run, I just wonder if it would work at all.

View 3 Replies View Related

General :: Manual Install Perl-5.10.1-3.tar.bz2 On Cygwin?

Jun 6, 2010

I have the binaries: perl-5.10.1-3.tar.bz2 and I don't have access (admin privileges) to run setup.exe for cygwin, my question is how can I install manually inside cygwin the module for perl: perl-5.10.1-3.tar.bz2?(or maybe can I get the sources and compile? can someone tell me please how?)

View 1 Replies View Related

General :: Console Hex Editor Under Windows/cygwin?

Oct 18, 2010

ould recommend for a console hex editor under windows/cygwin/linux?

View 3 Replies View Related

General :: Cygwin - Myscript Command Not Found

Nov 8, 2009

But I just downloaded cygwin to my xp machine. Tried my first experimental script and created it one level directly below where cygwin put me by default. The script, named show two says:

#!/bin/bash
echo $1
echo $2

But bash apparently can't find it. The name of the script is showtwo, but I also tried naming it showtwo.sh; no dice.

View 8 Replies View Related

General :: Compiling Library In Cygwin To Be Linked With VC++

May 21, 2010

I'm interested in modding an open-source turn based game called Advanced Strategic Command or ASC, but to do that I need bunch of libraries. Installing those libraries is very easy in linux, I know but the thing is I'm working with windows in which the building of the libraries is a bit more complex, as you probably know. One of those libraries is the ligsigc++, I'm using VC++ but haven't been successful in building the libsigc++ in VC++. I considered making my life easier with Cygwin (a unix shell for windows) and simply executing ./Configure, Make. I's worked like a charm and the library dll it produced is named cygsigc-2.0-0.dll which made me wonder is compiling a library in cygwin to be linked with VC++ perfectly ok? That is is there any difference in compiling in cygwin and VC++?

View 2 Replies View Related

General :: Make Command Is Not Found In Cygwin

May 13, 2009

I have installed cygwin to my windows xp machine. I typed the commmand in cygwin shell it shows "command not found". How can i install make command in cygwin

View 2 Replies View Related

General :: Make - Command Still Not Working On Cygwin

Jan 21, 2010

Based on previous forum discussions, I tried to install cygwin with 'make' installed from develop during installation. I can even see 'make.exe' in bin folder, but still while running the make command, it still shows error.

I was confused in one other part. Should I put the bin folder in some specific location or just wherever it is placed during cygwin installation? I was running VIC model, do I need to place the bin folder inside VIC source code folder.

View 2 Replies View Related

General :: Unable To Declare A Variable In Cygwin?

Jan 21, 2010

I recently installed Cygwin on my windows vista to practice on Linuxunix commands.I am unable to do a simple task of declaring variables on the command prompt I am trying:

$ vech=Bus
$ echo $vech
bash: vech : command not found

What am I missing? Do i need to add something to .bashrc? Also, I remember right click on the shell command gives the ability to copy or paste text from the shell. I am using Bash, how do I copy n paste text on shell window?

View 4 Replies View Related

General :: Remove Spaces From Many File Names Under Cygwin?

Nov 22, 2010

I'm hoping that someone can help me, I need to remove spaces (not replace with underscores) from several thousand files on a system with cygwin.
Can I do this from the shell using rename or mv somehow?

View 4 Replies View Related

General :: Using Cygwin/X To Run Programs Remotely And It's Real Slow

Jul 13, 2011

I am running programs remotely but they are terribly slow. I'm on a windows machine which may be my first problem. I have killer ping and download speed so they should run fine. What can I do to resolve this.

View 2 Replies View Related

General :: Rsync - Cygwin On XP - Delete Flag Not Working

Aug 4, 2009

I installed cygwin with rsync on a Win XP Machine. My goal is to backup a folder from one hard drive to another (both on XP machine).

I run the following command from a batch file:

Works fine except the --delete flag is not working. Copies everything in source to destination, but doesn't delete some extra files that are present on the destination, but aren't on the source, which it's supposed to. I looked at the rsync man page, and I'm doing everything right... such as not using wildcard.

The same command works perfect on another computer (XP machine; source and dest both on XP machine).

View 1 Replies View Related

General :: Viminfo - Get Cygwin Vim To Act Like CentOS Vim And Prior Cursor Position

Oct 27, 2010

In my CentOS configuration, when I use vim6.3 to edit a file, then close it, and re-open it, my cursor starts out at the line where I last left off. In my cygwin (on Windows) configuration, when I use vim7.3, I don't get this behavior. The viminfo does exist and does seem to get read (because if I type '0 it will go to my last cursor location - but that is globally and could change the file being edited). I've also looked at the .viminfo file and see it getting updated as expected. In my .vimrc file, I have this:

Quote: set viminfo='100,<50,f1,"500,/100,:100

Note that on the CentOS side if I open foo, then I open bar, then I open foo again, my cursor is in the right place for foo, whereas on cygwin if I do this, my cursor would be at the 1st line of foo.. If I were to type '0, it would actually switch to editing bar and put the cursor where I last left off. Anyhow, this all boils down to asking how I get my cygwin vim to act like my CentOS vim.

View 3 Replies View Related

General :: Unable To Install SendIP On Cygwin Due To Failed Dependencies

Feb 23, 2011

I installed C ygwin (full installation) on my PC with WinXP on it.
Then I downloaded "SendIP" at: [URL].

/flin@JKPZV2X /cygdrive/d/software/sendip
$ rpm -ivh sendip-2.5-1.i386.rpm
error: Failed dependencies:
libc.so.6 is needed by sendip-2.5-1
libc.so.6(GLIBC_2.0) is needed by sendip-2.5-1
libc.so.6(GLIBC_2.1) is needed by sendip-2.5-1
libc.so.6(GLIBC_2.1.3) is needed by sendip-2.5-1
libc.so.6(GLIBC_2.3) is needed by sendip-2.5-1
libdl.so.2 is needed by sendip-2.5-1
libdl.so.2(GLIBC_2.0) is needed by sendip-2.5-1
libdl.so.2(GLIBC_2.1) is needed by sendip-2.5-1
libm.so.6 is needed by sendip-2.5-1
flin@JKPZV2X /cygdrive/d/software/send/

View 2 Replies View Related

General :: Cygwin Script Compilation (f77) - Compiler Does Not Recognize As Fortran Source Files

Apr 5, 2011

compiler problem (f77) which arises when I try to execute a bash script ("compile" see [1] below) running under Cygwin on WinXP. The script finds the correct file(s) but the compiler does not recognize them as fortran source files. If the script is executed sequentially from the command line then there is no problem.

The directory structure of flh971da contains two subdirectories flh971da/scripts and flh971da/source. The compile script [1] is shown (in part) below. The script changes directory to flh971da/source, and compiles source from subdirectories flh971da/source/n where n=a,b,c etc and places the object files in flh971da/source/nobj n=a,b,c... etc. The response to flh971da/scripts/compile script is given below [2]. It is clear that the compiler (f77) locates the correct source file [4] (flh971da/source/a/a00aaft.f) but does not recognize it as a fortran source file. All relevant files have been processed with d2u. I suspect the problem is with the script, but I have no idea how to fix it.

[Code]....

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved