Re: Errors in handling of boost::asio errors ('boost' was compiled with wrong std::string representation?)

2015-11-23 Thread Роман
If I use 'gcc-core', 'gcc-g++', 'libgcc1' and 'libstdc++6' all of version 4.9.2-3, all works OK. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/

Re: [ANNOUNCEMENT] TEST RELEASE: Cygwin 2.4.0-0.4

2015-11-23 Thread Andrey Repin
Greetings, Kacper Michajlow! >> I released a new TEST version of Cygwin, 2.4.0-0.4. >> > With this version I get permissions denied when trying to chmod a > folder created in a created folder... > Basically this doesn't work for me: > mkdir test > mkdir test/test > chmod 755 test/test > Additio

Re: Cygwin multithreading performance

2015-11-23 Thread Mark Geisert
John Hein wrote: Mark Geisert wrote at 23:45 -0800 on Nov 22, 2015: > Corinna Vinschen wrote: > > On Nov 21 01:21, Mark Geisert wrote: > [...] so I wonder if there's > >> some unintentional serialization going on somewhere, but I don't know yet > >> how I could verify that theory. > >

[ANNOUNCEMENT] Updated: git v2.6.2

2015-11-23 Thread Adam Dinwoodie
Version 2.6.2-1 of Git has been uploaded and should be coming soon to a mirror near you. This update includes the following packages: - git - git-completion - git-cvs - git-debuginfo - git-email - git-gui - gitk - git-svn This is an update to the latest upstream release. For a f

Re: cygwin 64bit on Win7 gcc internal compiler error: Segmentation fault on floating point literal 10.0

2015-11-23 Thread David Standish
Thanks Achim, Downgrading to libgmp10-6.0.0a-2 fixes the problem. Does that imply a problem with to libgmp10-6.0.0a-2 p? On 11/22/15, Achim Gratz wrote: > David Standish writes: >> gcc is broken on fresh install of 64 bit cygwin on 64 bit Win7 >> Enterprise on new laptop. >> version 4.9.3-

Re: [ANNOUNCEMENT] Updated: fzf v0.11.0

2015-11-23 Thread Adam Dinwoodie
On Mon, Nov 23, 2015 at 03:51:13PM -0700, Keith Christian wrote: > On Mon, Nov 23, 2015 at 3:39 PM, Adam Dinwoodie wrote: > > fzf 0.11.0 has been uploaded and should be coming soon to a mirror near > > you. > > Thanks, Adam. Should we see this "$(__fzf_history__)" string at the > end of the comm

Re: [ANNOUNCEMENT] Updated: fzf v0.11.0

2015-11-23 Thread Keith Christian
On Mon, Nov 23, 2015 at 3:39 PM, Adam Dinwoodie wrote: > fzf 0.11.0 has been uploaded and should be coming soon to a mirror near > you. This update includes the following packages: > > - fzf > - fzf-bash > - fzf-bash-completion > - fzf-zsh > - fzf-zsh-completion > - fzf-fish > - fzf

[ANNOUNCEMENT] Updated: fzf v0.11.0

2015-11-23 Thread Adam Dinwoodie
fzf 0.11.0 has been uploaded and should be coming soon to a mirror near you. This update includes the following packages: - fzf - fzf-bash - fzf-bash-completion - fzf-zsh - fzf-zsh-completion - fzf-fish - fzf-vim This is an update to the latest upstream release; the upstream change

Re: No support for ACLs on network shares?

2015-11-23 Thread Linda Walsh
Matt D. wrote: My samba server is configured to use winbind and when inspecting the file using explorer properties, the SIDs resolve correctly as: "NAME (HOSTNAME\username)" where "NAME" is my name on the unix account and "username" is my login. The problem is that Cygwin isn't aware of this

Re: Https proxy auth issue with git in cygwin 2.2.1

2015-11-23 Thread Adam Dinwoodie
On Fri, Oct 16, 2015 at 12:26:14PM +, Johan Laenen wrote: > Adam Dinwoodie dinwoodie.org> writes: > > > I think I've found the problem, and you're right -- Git has changed the > > way it makes the curl call. The culprit is commit 5841520b in the > > upstream Git repository, which has the fol

Re: Calling cygpath from find exec?

2015-11-23 Thread Eric Blake
On 11/23/2015 01:45 PM, Matt D. wrote: > Is there a reason why these produce different results? > > find . -exec cygpath -wa {} \; > find . -exec echo $(cygpath -wa {}) \; Incorrect quoting. You are invoking: find . -exec echo c:\cygwin\home\you\{} \; (or whatever ./{} resolves to), instead of

Re: startx doesn't seem to work

2015-11-23 Thread Peter Van Epp
> On my Win7 machine with a newly installed cygwin-64 installed via > setup-x86_64.exe with everything default except xinit and xorg-server > selected running startx from a terminal window opens a full screen window > and then dies. A search of startx fails in the mail archives didn't t

RE: Calling cygpath from find exec?

2015-11-23 Thread Nellis, Kenneth
From: Matt D. > > Is there a reason why these produce different results? > > find . -exec cygpath -wa {} \; > find . -exec echo $(cygpath -wa {}) \; > > I have to do this which is much slower: > find . -exec bash -c 'echo $(cygpath -wa {})' \; > > Or this: > find . | while read a; do echo $(cyg

Calling cygpath from find exec?

2015-11-23 Thread Matt D.
Is there a reason why these produce different results? find . -exec cygpath -wa {} \; find . -exec echo $(cygpath -wa {}) \; I have to do this which is much slower: find . -exec bash -c 'echo $(cygpath -wa {})' \; Or this: find . | while read a; do echo $(cygpath -wa $a); done Matt D. -- Pro

Re: Cygwin gjar core dumps whereas Oracle jar does not

2015-11-23 Thread Matt D.
I'm not sure if this got lost, ignored, or wasn't forwarded appropriately, but I'm still getting this core dump: https://sourceware.org/ml/cygwin/2015-10/msg00257.html Matt D. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation

Re: Awk not ouputting results via echo

2015-11-23 Thread Lee
On 11/23/15, Lester Anderson wrote: > Hello, > > Having sorted how to access a separate drive location, I have expanded > the script to include an awk section which processes new coordinate > limits which should pass to img2grd to extract the data grids. > However, the awk scripting does not seem

Re: cygwin 64bit on Win7 gcc internal compiler error: Segmentation fault on floating point literal 10.0

2015-11-23 Thread Achim Gratz
David Standish writes: > gcc is broken on fresh install of 64 bit cygwin on 64 bit Win7 > Enterprise on new laptop. > version 4.9.3-1 , but other versions broken as well (4.9.2-3, 5.2.0-1) Does the problem go away if you downgrade to libgmp10-6.0.0a-2 perhaps? Regards, Achim. -- +<[Q+ Matrix-12

Re: [ANNOUNCEMENT] TEST RELEASE: Cygwin 2.4.0-0.4

2015-11-23 Thread Kacper Michajlow
2015-11-21 17:24 GMT+01:00 Corinna Vinschen : > Hi Cygwin friends and users, > > > I released a new TEST version of Cygwin, 2.4.0-0.4. > With this version I get permissions denied when trying to chmod a folder created in a created folder... Basically this doesn't work for me: mkdir test mkdir tes

Re: Awk not ouputting results via echo

2015-11-23 Thread Eliot Moss
On 11/23/2015 11:24 AM, Lester Anderson wrote: Hi Eliot, I can see the logic of the function, but not sure how it is implemented from the section I have: This has to do with bash and shells in general, and is not specific to awk or to the cygwin Unix-like environment. But what I meant was som

Re: Awk not ouputting results via echo

2015-11-23 Thread Lester Anderson
As a test I did a simple function to read the inputs: #!/bin/sh lon_min=-12 lon_max=0 lat_min=28 lat_max=39 R_d=167 R_i=20 function Test() { echo Test function: $lon_min $lon_max $lat_min $lat_max $R_d $R_i } # Test > test.txt # test.txt -> -12 0 28 39 167 20 Still needs awk to do those

Re: Errors in handling of boost::asio errors ('boost' was compiled with wrong std::string representation?)

2015-11-23 Thread Роман
John Hein wrote at 10:22 -0700 on Nov 22, 2015: Use 'size=%zu'. And get into the habit of compiling with -Wall 1) My apology for inaccuracy. 2) Usually, I use -Wall, but omits it for brevity. 3) GCC cannot warn for "%zu" - "%lu" mismatch. But it can warn if I confuse "%u" with "%s". 4) The p

Re: Awk not ouputting results via echo

2015-11-23 Thread Lester Anderson
Hi Eliot, I can see the logic of the function, but not sure how it is implemented from the section I have: lon_min=-12 lon_max=0 lat_min=28 lat_max=39 R_d=167 R_i=20 echo $lon_min $lon_max $lat_min $lat_max $R_d $R_i | awk "{R_t=6370; pi=3.14159; lat_av=(($lat_max+$lat_min)/2)*(pi/18

Re: Awk not ouputting results via echo

2015-11-23 Thread Eliot Moss
Ok, I think I have a sense of an underlying problem here. When you do: ... | read v1 v2 ... The read executes in an inferior process, setting variables there. The process then exits and you have no bindings in the parent shell, which is where you want them. Maybe something like this would suit

Re: Awk not ouputting results via echo

2015-11-23 Thread Lester Anderson
Hello, The img2grd program is a Windows code. The script is using the GMT software that is freely available, and accessed via Cygwin; can also work via standard windows batch files to a more restricted degree. The Windows path definition worked fine, thanks for that The issue seems to be getting

Re: gdb 7.8 consistently fails to run executable - error is

2015-11-23 Thread Tim Chick
> Am 08.10.2014 um 14:12 schrieb Corinna Vinschen: >> On Sep 29 14:13, Dominik Straßer wrote: >>> Hi all, > Hi Corinna, > >>> I've dug into the gdb sources. The problem is in the cygwin-only >>> part and is not about the PATH variable but about one single DLL >>> file name. >>> >>> This pat

Re: Data file access on different path (drive)

2015-11-23 Thread cyg Simple
On 11/23/2015 6:12 AM, Lester Anderson wrote: > > Using the path as Q:/... worked but the Cygrdrive/q/... did not. > Because as Marco already pointed out it is /cygdrive/q/ and not cygdrive/q/. Q:/ works just because it is a Windows supported method but the preferred method is /cygdrive/q/. No

Re: gdb 7.8 consistently fails to run executable - error is

2015-11-23 Thread Tim Chick
Hi Dominik, In my case, it was not down to the string size being too small. I seemed to suffer exactly the same problem. You get the same error if Windows can't access the dll. This seems to happen for some "special" dlls. The size of any PATH variable won't matter - the path it refers to here i

Re: Awk not ouputting results via echo

2015-11-23 Thread cyg Simple
On 11/23/2015 8:17 AM, Lester Anderson wrote: > > #!/bin/bash > ruta_elev="Q:/geophys/Potential-field datasets/Topography/topo_17.1.img" > ruta_grav="Q:/geophys/Potential-field datasets/Gravity/grav.img.23.1" This response is based on your subsequent email but what if you change Q: to be /cygdriv

Re: Octave 4.0.0-3 x86_64 segfault (suspect openblas)

2015-11-23 Thread Marco Atzeri
On 23/11/2015 10:58, Tony Kelman wrote: I can submit upstream, unless you'd like to. Reported at https://github.com/xianyi/OpenBLAS/issues/697 if you'd like to follow along (or post anything you may have learned from fixing the debuginfo?). -Tony unfortunately debuginfo is incomplete likel

Re: Awk not ouputting results via echo

2015-11-23 Thread Lester Anderson
The error when run is: ERROR 4: `///' does not exist in the file system, and is not recognised as a supported dataset name. img2grd (GMTAPI_Import_Grid): Not a supported grid format [///] Error returned from GMT API: GMT_GRID_READ_ERROR (18) img2grd: Syntax error -R option. Correct syntax:

Re: No support for ACLs on network shares?

2015-11-23 Thread Andrey Repin
Greetings, Matt D.! Please don't top-post. Thank you. > On 11/23/2015 3:08 AM, Andrey Repin wrote: >> Greetings, Matt D.! >> >>> I noticed today that when accessing a network share, the permissions for >>> the current user are not resolving. >> >>> For example, I'm connected to a network share //

Awk not ouputting results via echo

2015-11-23 Thread Lester Anderson
Hello, Having sorted how to access a separate drive location, I have expanded the script to include an awk section which processes new coordinate limits which should pass to img2grd to extract the data grids. However, the awk scripting does not seem to generate any data - is there something I am m

Re: Request for update of mutt

2015-11-23 Thread Marco Atzeri
On 23/11/2015 12:26, thomas.gil...@gmx.de wrote: Hello, Mutt 1.5.24 is released now (see http://www.mutt.org), is it possible to update the cygwin package? Kind regards, axd Noted. I will prepare it in the coming days Regards Marco -- Problem reports: http://cygwin.com/problems.htm

Re: No support for ACLs on network shares?

2015-11-23 Thread Matt D.
Andrey, My samba server is configured to use winbind and when inspecting the file using explorer properties, the SIDs resolve correctly as: "NAME (HOSTNAME\username)" where "NAME" is my name on the unix account and "username" is my login. The problem is that Cygwin isn't aware of this SID si

Re: Windows locks up when pressing Ctrl+S while native process writes to terminal

2015-11-23 Thread Aaron Digulla
Am Sonntag, 22. November 2015 20:17 CET, Thomas Wolff schrieb: > > I found a consistent bug that happens every time: > > ... > > - Press Ctrl+S to stop the output in the terminal > > > > Bug #1: It's not possible to unfreeze the output in the terminal with > > Ctrl+Q. It just stays "stuck" > I

Request for update of mutt

2015-11-23 Thread Thomas . Gilgin
Hello, Mutt 1.5.24 is released now (see http://www.mutt.org), is it possible to update the cygwin package? Kind regards, axd -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe inf

Re: No support for ACLs on network shares?

2015-11-23 Thread Andrey Repin
Greetings, Matt D.! > I noticed today that when accessing a network share, the permissions for > the current user are not resolving. > For example, I'm connected to a network share //server/share which is a > CentOS share with a unix login/password. The share is already logged in > by Windows

Re: Data file access on different path (drive)

2015-11-23 Thread Lester Anderson
Thanks Peter! Finally got the test script to run : #!/bin/bash ruta_elev="Q:/geophys/Potential-field datasets/Topography/topo_17.1.img" ruta_grav="Q:/geophys/Potential-field datasets/Gravity/grav.img.23.1" lon_min=-12 lon_max=0 lat_min=28 lat_max=39 echo $lon_min $lon_max $lat_min $lat_max img2grd

[ANNOUNCEMENT] Updated: SuiteSparse-4.4.5-1

2015-11-23 Thread Marco Atzeri
New versions 4.4.5 of SuiteSparse has been deployed split in its own components: amd-2.4.1-1 libamd-devel libamd1 (API bump) btf-1.2.1-1 libbtf-devel libbtf0 camd-2.4.1-1 libcamd-devel libcamd1 (API bump) ccolamd-2.9.1-1 libccolamd-devel libccol

Re: Cygwin multithreading performance

2015-11-23 Thread John Hein
Mark Geisert wrote at 23:45 -0800 on Nov 22, 2015: > Corinna Vinschen wrote: > > On Nov 21 01:21, Mark Geisert wrote: > [...] so I wonder if there's > >> some unintentional serialization going on somewhere, but I don't know yet > >> how I could verify that theory. > > > > If I'm allowed to m

Re: Data file access on different path (drive)

2015-11-23 Thread Peter Rosin
On 2015-11-23 10:51, Lester Anderson wrote: > Hello, > > I tried a very basic script to test this: > > #!/bin/bash > ruta_elev="cygdrive/q/geophys/Potential-field > datasets/Topography/topo_17.1.img" > ruta_grav="cygdrive/q/geophys/Potential-field datasets/Gravity/grav.img.23.1" > # Also tried >

Re: Data file access on different path (drive)

2015-11-23 Thread Marco Atzeri
On 23/11/2015 11:11, Lester Anderson wrote: Tested the change: ruta_elev="/cygdrive/q/geophys/Potential-field datasets/Topography/topo_17.1.img" ruta_grav="/cygdrive/q/geophys/Potential-field datasets/Gravity/grav.img.23.1" No errors reported for the path but.. $ bash test4.sh -12 0 28 39 img2gr

Re: Data file access on different path (drive)

2015-11-23 Thread Lester Anderson
Tested the change: ruta_elev="/cygdrive/q/geophys/Potential-field datasets/Topography/topo_17.1.img" ruta_grav="/cygdrive/q/geophys/Potential-field datasets/Gravity/grav.img.23.1" No errors reported for the path but.. $ bash test4.sh -12 0 28 39 img2grd: Syntax error: More than one world image fil

No support for ACLs on network shares?

2015-11-23 Thread Matt D.
I noticed today that when accessing a network share, the permissions for the current user are not resolving. For example, I'm connected to a network share //server/share which is a CentOS share with a unix login/password. The share is already logged in by Windows and on the keychain so I don't

Re: Octave 4.0.0-3 x86_64 segfault (suspect openblas)

2015-11-23 Thread Tony Kelman
I can submit upstream, unless you'd like to. Reported at https://github.com/xianyi/OpenBLAS/issues/697 if you'd like to follow along (or post anything you may have learned from fixing the debuginfo?). -Tony -- Problem reports: http://cygwin.com/problems.html FAQ: http:

Re: Data file access on different path (drive)

2015-11-23 Thread Marco Atzeri
On 23/11/2015 10:51, Lester Anderson wrote: Hello, I tried a very basic script to test this: #!/bin/bash ruta_elev="cygdrive/q/geophys/Potential-field datasets/Topography/topo_17.1.img" ruta_grav="cygdrive/q/geophys/Potential-field datasets/Gravity/grav.img.23.1" sorry typo "/cygdrive/q.."

Re: Data file access on different path (drive)

2015-11-23 Thread Lester Anderson
Hello, I tried a very basic script to test this: #!/bin/bash ruta_elev="cygdrive/q/geophys/Potential-field datasets/Topography/topo_17.1.img" ruta_grav="cygdrive/q/geophys/Potential-field datasets/Gravity/grav.img.23.1" # Also tried # ruta_elev="Q:/geophys/Potential-field datasets/Topography/topo

[ANNOUNCEMENT] Updated: hdf5-1.8.16-1

2015-11-23 Thread Marco Atzeri
Version 1.8.16-1 of libhdf5_10 libhdf5cpp_11 (C++ api bumped) libhdf5-devel hdf5 for cygwin 32bit and 64bit have been uploaded. CHANGES This is a new upstream release. For the full list of changes: http://www.hdfgroup.org/HDF5/doc/ADGuide/Changes.html DESCRIPTION HDF5 is a suite/libra

[ANNOUNCEMENT] Updated: qrupdate-1.1.2-2

2015-11-23 Thread Marco Atzeri
The version 1.1.2-2 of qrupdate(source), libqrupdate-devel, libqrupdate0 have been uploaded. CYGWIN CHANGES rebuilt removing /usr/lib/libqrupdate.la from libqrupdate-devel to solve lapack depency inconsisteny https://cygwin.com/ml/cygwin/2015-11/msg00176.html DESCRIPTION QRUPDATE is a

[ANNOUNCEMENT] Updated: octave-4.0.0-2

2015-11-23 Thread Marco Atzeri
New versions 4.0.0-2 of octave, octave-devel, octave-doc are available in the Cygwin distribution: CYGWIN CHANGES Rebuilt for updated dependency including libsndfile https://cygwin.com/ml/cygwin/2015-11/msg00176.html Added debuginfo package CHANGES This is the first mainstream of 4.0

[ANNOUNCEMENT] Updated: openblas-0.2.15-2

2015-11-23 Thread Marco Atzeri
New releases of openblas (source) libopenblas (dinamic library) are available in the Cygwin distribution, 32 and 64 bit : CYGWIN CHANGES rebuilt with debuginfo enabled CHANGES New upstream release http://www.openblas.net/Changelog.txt * Various bux fixes and optimizations * Suppo

[ANNOUNCEMENT] Updated : udunits-2.2.20-1

2015-11-23 Thread Marco Atzeri
Versions udunits-2.2.20-1 udunits libudunits-devel libudunits0 are available in the Cygwin distribution: CHANGES This is a upstream release. Full change log http://www.unidata.ucar.edu/software/udunits/udunits-current/doc/udunits/CHANGE_LOG DESCRIPTION The UDUNITS-2 package provides supp

Re: Octave 4.0.0-3 x86_64 segfault (suspect openblas)

2015-11-23 Thread Tony Kelman
To test without openblas , you can renable netlib blas $ mv /usr/bin/cygblas-0.dll /usr/bin/cygblas-0.dll_bk Yep, works fine with netlib blas. Pure C repro case is attached, gcc -g 5728.c -o 5728 -llapack && gdb ./5728 I can submit upstream, unless you'd like to. -Tony #include #include #i

Re: Data file access on different path (drive)

2015-11-23 Thread Marco Atzeri
On 23/11/2015 09:54, Lester Anderson wrote: Hello, I am fairly new to using Cygwin, so hope that this query is not too simplistic. I have a bash script that integrates a lot of GMT commands and also calls a Fortran program to generate a map output. Now the problem is how to get the script/Cyg

Data file access on different path (drive)

2015-11-23 Thread Lester Anderson
Hello, I am fairly new to using Cygwin, so hope that this query is not too simplistic. I have a bash script that integrates a lot of GMT commands and also calls a Fortran program to generate a map output. Now the problem is how to get the script/Cygwin to access two data files on a different driv

RE: ssh ControlMaster re-broken

2015-11-23 Thread Zhu, Binbin (Nokia - CN/Hangzhou)
Hi, >> On Nov 19 11:45, Andrew Schulman wrote: >> > > On Nov 17 12:46, Zhu, Binbin (Nokia - CN/Hangzhou) wrote: >> > > > Hi, >> > > > >> > > > It worked month ago, but it failed after reinstall. >> > > >> > > Are you really sure it ever worked? To the best of my knowledge the >> > > control mast

cygport: patch for proper debuginfo

2015-11-23 Thread Marco Atzeri
Hi Yaakov, the attached patch solves some case I hit where the debuginfo are not properly extracted. "." as workdir can be managed differently by the build system and cygport debuginfo extraction when: $ pwd /pub/devel/openblas $ readlink -f $(pwd) /cygdrive/e/cyg_pub/devel/openblas Usually A