msys

Posix, unix, paths, vim and other nightmares for a windows user

£可爱£侵袭症+ 提交于 2019-12-10 12:26:25
问题 It might seem to be a really open end question, but I'll do my best to translate this great confusion I have in my head to see if someone can resolve it and more people can learn from it: I started last year a university course midway between electronics and computer science, but more of the first, and was thrown blindly into programming, through a series of complabs using Eclipse under Unix. Until there, though I had no knowledge of unix, fine. Now I wanting to code at home as well decided

Error during making “xz-5.2.1” with MinGW/MSYS

会有一股神秘感。 提交于 2019-12-10 11:18:09
问题 I am trying to compile "xz-5.2.1" in MinGW/MSYS environment. I see the following errors: #error UINT32_C is not defined and unsigned int is not 32-bit. error: #error size_t is not 32-bit or 64-bit I am not familiar with MinGW, could anyone shed some light on this? It looks like some macro definition are missing. Some header file missing? ADD 1 The commands I used to compile the xz-5.2.1 are: ./configure ./make The error screenshot: Some background, I am following this link to compile the

MinGW MSYS, MSVCRT, and the TZ environment variable

一曲冷凌霜 提交于 2019-12-10 09:28:22
问题 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 date command of MSYS displaying correct local time, and because MSYS itself uses its own C runtime instead of MSVCRT, I have set TZ environment variable according to GNU C library documentation: export TZ="BRT+3BRST,M10.3.0/0,M2.3.0/0" Unfortunately, this conflicts with Microsoft C runtime specs,

Installing Pip on Msys

泪湿孤枕 提交于 2019-12-09 15:51:59
问题 I have built a simple PyGTK app using Python 3.5.2 and Msys but I need some modules not in the default installation, and although I could use setup.py install to get them I would much rather use pip . I looked around and found this but it relates to Python 2 and gave an error when attempting to follow the instructions given: $ python3 getpip.py Collecting pip Downloading pip-9.0.1-py2.py3-none-any.whl (1.3MB) Collecting setuptools Using cached setuptools-38.2.5-py2.py3-none-any.whl Collecting

Install xgboost under python with 32-bit msys failing

自作多情 提交于 2019-12-08 17:38:20
问题 Trying to install xgboost is failing..? The version is Anaconda 2.1.0 (64-bit) on Windows & enterprise. How do I proceed? I have been using R it seems its quite easy to install new package in R from RStudio, but not so in spyder as I need to go to a command-window to do it and then in this case it fails.. import sys print (sys.version) 2.7.8 |Anaconda 2.1.0 (64-bit)| (default, Jul 2 2014, 15:12:11) [MSC v.1500 64 bit (AMD64)] C:\anaconda\Lib\site-packages>pip install -U xgboost Downloading

c++ Using PortAudio in Windows with Qt

我的未来我决定 提交于 2019-12-08 13:48:37
问题 I have managed to compile PortAudio on windows using MSYS. this process has created 2 files: libportaudio-2.dll and libportaudio.dll.a Now i want to link the libraries in QtCreator, but i can not since it requires a .lib file. If anybody have experience of compiling and using libraries with MSYS under windows, your input is appreciated. (Note: they are compiled using MindGW compiler. I dont want to compile it with Microsoft Visual Studio, since then i will have to compile QT) 回答1: to solve

Installing C/C++ libraries on Windows

*爱你&永不变心* 提交于 2019-12-08 06:49:22
问题 I'm studying (well, trying to) C right now, but I'm limited to working in Windows XP. I've managed to set up and learn how to use Emacs and can compile simple C programs with gcc (from Emacs no less!), but I'm getting to the point where I'd like to install something like SDL to play around with it. The thing is that the installation instructions for SDL indicate that, on a Win32 environment using MingW, I would need to use MSYS to run ./configure and make/make install to install SDL, like one

Wrong path with Git Bash for Windows when using remote add?

那年仲夏 提交于 2019-12-08 04:18:40
问题 I have some bash code like this: repo="/mnt/shared/my/repo path sometimes with spaces.git" echo "\$repo = $repo" git remote add origin "${repo}" git remote -v where /mnt/shared is a mountpoint to a network drive created in the git cygwin fstab file that works fine. I can interact with it through the Git bash shell using ls and pushing and pulling repos from it no problem. I use the above code in a loop to maintain a large set of repos, and if my repo variable is like above without any special

SqlCipher Mingw/msys problem

好久不见. 提交于 2019-12-08 03:54:53
问题 I have a problem - i can't compile SqlCipher. I'm using this http://groups.google.com/group/sqlcipher/browse_thread/thread/55c6296b56bf4533/c792bbec6df7d4f4?tvc=2#c792bbec6df7d4f4 instructions (thx to Sam) but still can't compile it. I do the following: $ ./configure --disable-tcl CFLAGS="-DSQLITE_HAS_CODEC -I/usr/usr/src/openssl/i nclude" LDFLAGS="-leay32" checking build system type... i686-pc-mingw32 checking host system type... i686-pc-mingw32 checking for gcc... gcc checking for C

How to install Python Development tools on MSYS2

◇◆丶佛笑我妖孽 提交于 2019-12-07 09:21:23
问题 I need to install the Python development tools on MSYS2. My Python installation works (by either calling python3.6 or python3 : $ python3.6 Python 3.6.5 (default, Apr 16 2018, 10:17:38) [GCC 7.3.0 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> Setuptools is installed: $ pip3 install setuptools Requirement already satisfied: setuptools in /usr/lib/python3.6/site-packages (36.4.0) I have tried to install as it suggested in How to install