MSYS is a collection of GNU utilities such as bash, make, gawk and grep to allow building of applications and programs which depend on traditionally UNIX tools to be present. It is intended to supplement MinGW and the deficiencies of the cmd shell.
2
votes
2answers
51 views
Running gvim from MSYS — how to avoid/change MSYS enviroment variables?
When I run gvim from MSYS, things go wrong during initialization. Namely, gvim can't find the initialization files that are in 'C:\Documents and Settings\username\vimfiles.
[Specifically, gvim ...
0
votes
2answers
37 views
Ruby 1.9.3 unexpected File behavior under msys
I'm trying to copy a file to "/usr/bin" using Ruby 1.9.3 with msys on Windows 7. Msys will happily do it from it's bash-like shell - $cp testscript.rb /usr/bin does the trick.
But from within Ruby ...
0
votes
0answers
25 views
msys not opening programs interactively
msys is not opening programs interactively. For example, if I enter python, the program hangs. Even mysql hangs after I enter my password (entering the password is interactive, though). When I ...
3
votes
1answer
64 views
MinGW annoying behavior, sometimes compiles, sometimes not?
I am compiling and debugging my little project with msys and MinGW. Sometimes, it compiles just fine but about 2/3 of time instead prints this error message:
include/player.h:1:0: fatal error: can't ...
0
votes
0answers
24 views
wxwidget compiling on windows command prompt
Can someone please guide me on the method,as to how I would compile wxwidget using windows command prompt or MSYS. [I can't seem to find anything on the wxwiki/wxwidget official book/anywhere else]
I ...
0
votes
0answers
44 views
How do I pass an absolute path to the adb command via git bash for windows?
I'm trying to pass a unix style path to the Android adb command using a git bash (msysgit) but the shell is interpreting my path incorrectly. This is what I've tried so far:
$ adb push myfile ...
0
votes
0answers
52 views
Building Portaudio with mingw gives no .dll
beeing new to c/c++ make etc. I ran into some compiling issues that I couldn't solve with google or (my bounded) logic. This whole (./configure, make, make install) gave me a hard time already as a ...
0
votes
2answers
43 views
How should I handle an “incorrectly” named dll?
I am trying to compiling an autodiff python library, pyadolc, on Windows with Mingw. It requires boost python to call the underlying c++ library, adol-c.
I first compiled boost_python library (dll) ...
0
votes
0answers
48 views
Errors making cairo-gl
I'm building Cairo 1.12.14 with MSYS on Windows.
Successfully configured with --enable-gl=yes, however, when I run make, I get the following error:
make all-recursive
make[1]: Entering directory ...
0
votes
1answer
74 views
Build cairo with librsvg on MSYS
Warning: I know very little about unix commands!
Background: I'm working on modifying an existing Java application that uses lwjgl. The application currently loads a png image file and binds it as a ...
0
votes
2answers
82 views
Can only get first line of stderr
allocating I want to launch a process and retrieve the stdout and stderr.
I don t really care about getting this in real time.
I wanted to use subprocess.check_ouput(), but the process might fail.
...
0
votes
1answer
61 views
How to make MSysGit work with non-default key file names?
In order to use multiple keys for multiple GitHub accounts (after this how-to) I want first to get my local system working with key files that are named other than the default id_rsa.
I created a key ...
1
vote
0answers
42 views
msys git compilation error
I was trying to compile git under msys. But the compilation throws error saying it is unable to find zlib.h. The problem is the zlib.h is actually there in the msys\include directory.
Searching for ...
0
votes
1answer
78 views
Configuring mingw32 and MSYS (Error executing binaries from /mingw/bin)
I have installed MSYS, and have configured the path to /mingw/bin directory.
But when i execute the gcc, g++ or any command in /mingw/bin folder is gives me the following error..
$ ...
1
vote
1answer
112 views
Redirect bash output called from batch file to console
I have a batch file (build.bat) which calls a bash script (makelibs.sh). The bash script contains several commands which build 20 libraries from source.
If I run makelibs.sh from MSYS, I get ...
0
votes
1answer
86 views
using external libraries with msys - minGW
I want to write and compile C++ code that requires the FLTK 1.3.2 GUI libraries.
I would like to use minGW with MSYS.
I have installed minGW and MSYS properly and have been able to build FLTK with ...
1
vote
1answer
36 views
Escape Windows-style /arg in Cygwin/MSYS
I need to execute Visual Studio's lib.exe from a MSYS environment, but arguments like "/WX /NOLOGO" are automatically replaced with "C:/dev/MinGW/msys/1.0/WX", for example.
How do I deactivate that ...
0
votes
1answer
124 views
Building RecastNavigation under mingw
I'm trying to build RecastNavigation via MinGW, everything seems builds just fine except RecastDemo application.
I've done:
cmake -G"MSYS Makefiles" ...
1
vote
0answers
119 views
How to run emacs in CLI mode under mintty in windows?
I'm using mintty + msys. And I want to use emacs with it. But without GUI.
I saw such behavior in cygwin. But I can not understand how they did that.
$ emacs -nw
emacs: standard input is not a tty
...
1
vote
1answer
90 views
Run bash -c without exit
I'm trying to run MinGW's MSYS bash from Windows with a command in its arguments, and it's achievable with the -c switch.
For example:
C:\MinGW\msys\1.0> bin\bash -c "times"
0m0.000s 0m0.046s
...
1
vote
0answers
95 views
Cannot install SDL using mingw/msys
I don't know whether this is actually an SDL issue or just me not knowing how to build packages from msys/mingw. What I have done thus far:
1) downloaded latest mingw-get-inst.exe from sourceforge ...
1
vote
1answer
117 views
Line-buffering of stdout fails on MINGW/MSYS Python 2.7.3
The problem is illustrated by this simple script:
import time, os, sys
sys.stdout = os.fdopen( sys.stdout.fileno(), 'w', 1 ) # line-buffer stdout
print 'before sleep'
time.sleep( 10 )
print 'after ...
1
vote
1answer
56 views
Remove symlink on Msys
I used msys to create a symlink. Now I wish to remove it, but here's what I get:
$ ln -s /mypath mylink
$ rm mylink
rm: cannot remove directory `mylink': Is a directory
What's the proper way to ...
0
votes
0answers
318 views
Want to port existing rsync on windows
I know currently there is rsync for windows available as G-Rsync.
That is this :- http://sourceforge.net/projects/grsync-win/
But, what I want to do is just make existing rsync code available from ...
2
votes
0answers
39 views
Generate .dll from .sym files?
I have a .a archive compiled with MinGW from C/C++ code. I also have symbols exported in many .sym files. Now I need to generate a .dll file from their combination. I've installed MSYS/MinGW w64
0
votes
1answer
38 views
MSYS prints strange characters strings
MSYS is printing some strange characters (whitespaces, nulls, etc.) to the terminal. Makes the results of my unit tests a bit cryptic. Any idea on how to fix this? I'm looking into possibly piping ...
0
votes
1answer
244 views
Building nginx in Windows 7 with MSYS
I have Windows 7 Pro x86 with Visual Studio 2010 Pro. Also I have MinGW in c:\MinGW.
I want to build nginx under windows using Visual C++. I follow this guide.
I run cmd under Administrator, then I ...
1
vote
1answer
162 views
Running MinGW/MSYS tools inside msysgit
I've been using msysgit for quite a while for Git on Windows, but I'm now trying to set up MinGW for the first time. I installed MSYS with mingw-get since it has some utils not packaged with msysgit ...
4
votes
1answer
130 views
Git bash tab completion for .sh files
I'm using msysgit on windows 7 and I found bash scripting very useful. I wrote some .sh scripts, but I'd like git bash to autocomplete their names. For now I can see, that after initial prompt git ...
1
vote
1answer
165 views
MSYS error “rem: command not found”
I am getting this error "rem:command not found" in my batch file. Other dos commands (e.g. echo) are also not found.
My makefile is calling this batch file. This works previously when I am using ...
0
votes
1answer
253 views
`msbuild` command not found, but `msbuild.exe` works fine
I run MSys/Bash as distributed in Git for Windows. I added the folder C:\Windows\Microsoft.NET\Framework\v4.0.30319 to my path, so I could run msbuild but it doesn't work
$ msbuild
C:\Program Files ...
0
votes
2answers
229 views
Windows PATH to posix path conversion in bash
How can I convert a (meaning exists, if not lost generality) Windows dir path (say c:/libs/Qt-static) to the correct POSIX dir path (/c/libs/Qt-static) by means of standard msys features? And vice ...
3
votes
1answer
168 views
How do I statically link iconv on windows using msys?
I am using mingw gcc and msys to build a number of Gnu utilities. In the past, I have had a lot of problems caused by different executables requiring different versions of libiconv, so to avoid the ...
0
votes
1answer
78 views
wget in msys failed to download target file behind HTTP redirect
I am using wget in msys to download a target file behind a HTTP redirect, but it always saved a file named by the HTTP redirect directly instead of the target file behind the redirect. After Google, ...
1
vote
0answers
70 views
MSYS shell keeping script file open, preventing modifications
Usually when running a shell script, the shell keeps the script file open throughout the execution. On Unix systems this is not a problem.
However, Windows prevents modifications to a file that is ...
2
votes
1answer
174 views
Msys compile of C code
I'm not very familiar with compiling C code, especially on Windows using MinGW/Msys. Here is my problem. I am attempting to compile an open-source M3u8-segmenter C code for Windows. The open-source ...
1
vote
0answers
265 views
MinGW g .exe: Bad file number
NetBeans 7.2.1, MinGW 0.5beta 20120426, msys 1.10.11
After building it throws:
make[2]: execvp: g++.exe: Bad file number
Any idea? I set the path: Whe I changed c++ compiler column to
...
2
votes
0answers
108 views
Why might _initterm miss a function pointer when compiled within visual studio 2003, but not when using msys config/build?
I'm currently working on a very old code base, attempting to resolve a build issue. Presently we build the projects using the msys commandline instruction config/build, and this works fine. However if ...
1
vote
3answers
519 views
MinGW MSYS, MSVCRT, and the TZ environment variable
In short, how to make both MSVCRT and MinGW MSYS share the TZ environment variable without conflicts? Or, how to make both support timezones without conflicts?
Further information
In order to have ...
0
votes
0answers
40 views
is there a MSYS (MinGW) tool for connecting via serial line (RS-232), using rxvt
I am using MSYS (MinGW) shell and RXVT terminal on Windows and I would like to log into a device via my serial port (COM1). Is there a tool for that ? (there is a Linux shell served on the device)
I ...
0
votes
1answer
69 views
xerces-3.1.1 cannot create dll on MSYS?
I build xeces-3.1.1 with mingw-gcc on MSYS. I configured with --prefix=/c/open-source/install/xerces-3.1.1 --enable-shared but no dll is found in the installation directory. Anything wrong?
BR, ...
0
votes
1answer
134 views
Unpredictable behavior in sed interpreters output from multiple expressions
Why does GNU sed sometimes handle substitution with piped output into another sed instance differently than when multiple expressions are used with the same one?
Specifically, for msys/mingw ...
0
votes
0answers
69 views
All MSYS apps hang at startup
I have MinGW (gcc 4.6.1 and stuff) and Msys installed. When I try to start 'sh' or 'cp' or any other command (even msys.bat from msys' installation folder) command line (both cmd.exe and Far Manager, ...
0
votes
0answers
31 views
I cannot find required folders after installation of openssl
I am not advanced at stuff like installing binaries from sources. However, I need to build Qt due to problem with missing driver QMYSQL. I though I could also add openssl into it but I read I would ...
1
vote
1answer
308 views
Compiling and installing openssl On windows 64 bit
I wanted to install openssl on windows 7 Home Premium 64 bit , i have downloaded the openssl package and extracted it as well in the c directory however i am not able to find something that shows how ...
4
votes
3answers
983 views
msys path conversion (or cygpath for msys?)
I need to pass /DEF:c:\filepath\myLib.def" command line option from a bash script to MS compiler/linker. The path is generated as part of build process by a bash script. Basically, the argument that ...
0
votes
2answers
117 views
Why mkdir error in installing bash-it under Windows7 MSYS
I clone the repo https://github.com/revans/bash-it.git and installed it successfully under linux, but met trouble when I tried to install it under Windows7 MSYS.
In the install.sh:
function ...
0
votes
0answers
74 views
Playframework 2.0.2 run under msys
Are there any patches, or scripts that can help me run paly 2.0.2 under msys
Greatly appreciate you help
0
votes
1answer
303 views
mingw32 showing undefined reference to all gtk functions
I am trying to compile the following code, base.c
#include <glib/gerror.h>
#include <gtk/gtk.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
int main( int argc,
char *argv[] )
{
...
0
votes
1answer
436 views
MSYS SDL-2.0 “C compiler cannot create executables”
I'm trying to use MSYS to create the MinGW SDL libraries from the latest SDL 2.0 Mercurial repository. (As of this posting.) I'm following this tutorial, and when I need to configure using MSYS I ...