[Mingw-w64-public] x64 can't cast ptr to DWORD

2010-02-19 Thread Jim Michaels
use ifdefs to disable this windows 9x code only for x64 target (obviously the x64-output compiler must have some sort of #define?)? Jim Michaels jmich...@yahoo.com(main) JesusnJim.com (my site) DoLifeComputers.JesusnJim.com (Do Life Computers group site which I

[Mingw-w64-public] common compiler #defines for cross-platform/compiler code

2010-02-21 Thread Jim Michaels
-defines.html any additions to these pages welcome. what I don't have is the mingw switches and command-line for making DLL's. any contribution would only help me help someone else, and I could augment my g++ wrapper batch file. Jim Michaels jmich...@yahoo.com(main) JesusnJim.com (my site

Re: [Mingw-w64-public] x64 can't cast ptr to DWORD

2010-02-25 Thread Jim Michaels
; __MINGW_EXTENSION typedef __int64 LONG_PTR,*PLONG_PTR; __MINGW_EXTENSION typedef unsigned __int64 ULONG_PTR,*PULONG_PTR; __MINGW_EXTENSION typedef ULONG_PTR DWORD_PTR,*PDWORD_PTR; From: NightStrike nightstr...@gmail.com To: Jim Michaels jmich...@yahoo.com

[Mingw-w64-public] __int64 issue of compatibility with MSVC

2010-03-04 Thread Jim Michaels
://www.open-std.org/JTC1/sc22/wg14/www/docs/n615.htm Jim Michaels jmich...@yahoo.com(main) JesusnJim.com (my site) DoLifeComputers.JesusnJim.com (Do Life Computers group site which I lead) while (stone != rolling) moss++; --- Computer memory/disk size measurements

Re: [Mingw-w64-public] __int64 issue of compatibility with MSVC

2010-03-09 Thread Jim Michaels
issue of compatibility with MSVC On Sun, 07 Mar 2010 14:59:50 Kai Tietz wrote: 2010/3/7 Doug Semler dougsem...@gmail.com: On Thu, 04 Mar 2010 17:20:07 Jim Michaels wrote: in MSVC, __int64 x=12345678901234567i64; point 1: this type __int64 doesn't require me to #include windows

[Mingw-w64-public] equivalent of dumpbin /exports *.dll ?

2010-03-09 Thread Jim Michaels
(for instance, what libraries contain what functions, such as libwinuser.a?). I usually redirect the output to a text file and grep it for needed functions. Jim Michaels jmich...@yahoo.com(main) JesusnJim.com (my site) DoLifeComputers.JesusnJim.com (Do Life

[Mingw-w64-public] problem with i64 in C, C++

2010-05-08 Thread Jim Michaels
and making lots of extra szemi-duplicate code. granted, this kind of change will make everybody's old code not work. but I think this would be a welcome change. Jim Michaels jmich...@yahoo.com(main) http://JesusnJim.com (my site) http

[Mingw-w64-public] suggestion

2010-05-14 Thread Jim Michaels
CPLUS_INCLUDE_PATH LIBRARY_PATH COMPILER_PATH Jim Michaels jmich...@yahoo.com(main) http://JesusnJim.com (my site) http://DoLifeComputers.JesusnJim.com (Do Life Computers group site which I lead) while (stone != rolling) moss++; --- Computer memory/disk size measurements: [KB

[Mingw-w64-public] 4 compiler issues

2010-05-14 Thread Jim Michaels
for a little easier ease of use. I don't know about anyone else. but please at least fix #1-#3 by solving #2 and #3. Jim Michaels jmich...@yahoo.com(main) http://JesusnJim.com (my site) http://DoLifeComputers.JesusnJim.com (Do Life Computers group site which I

Re: [Mingw-w64-public] 4 compiler issues

2010-05-31 Thread Jim Michaels
not from my experience. I have had to specify the library paths and include paths, at least with auto and sezero. From: Dmitrijs Ledkovs dmitrij.led...@ubuntu.com To: JonY jo...@users.sourceforge.net Cc: Jim Michaels jmich...@yahoo.com; mingw64 mingw-w64

Re: [Mingw-w64-public] 4 compiler issues

2010-06-01 Thread Jim Michaels
grep strlwr {}/* ; and hope I get the STL and C++ headers. I grep for functions a LOT when I can. mingw differs so from msvc that I have to. From: Jim Michaels jmich...@yahoo.com Cc: mingw64 mingw-w64-public@lists.sourceforge.net Sent: Mon, May 31, 2010 2:45:33

[Mingw-w64-public] strange problem with sezero?

2010-06-02 Thread Jim Michaels
years overdue)? corrupted OS as a result of really bad new model printer drivers? I don't know anymore. time to rebuild... I hope nobody else is having this problem. Jim Michaels jmich...@yahoo.com(main) http://JesusnJim.com (my site) http

[Mingw-w64-public] i64 constants for microsoft code compatibility

2010-10-05 Thread Jim Michaels
structures. Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has software) http://DoLifeComputers.JesusnJim.com (group which I lead) --- Computer memory/disk size measurements: [KB KiB

[Mingw-w64-public] include fltk windowing lib in mingw-w64?

2011-01-16 Thread Jim Michaels
is there a chance of including the FLTK library for a windowing library? it compiles well under MSYS, statically links, and makes nice executables. has a VERY nice file browser (resizeable!). It is under a modified LGPL2 license. - Jim Michaels jmich...@yahoo.com j

[Mingw-w64-public] compiler switches to include directories

2011-01-19 Thread Jim Michaels
I need to include lib and include directories. the compiler isn't listening to anything I try in the manual. any ideas? I tried -Idir -Ldir -isystem dir -B dir nothing works. should I be using environment variables instead? - Jim Michaels jmich...@yahoo.com j

[Mingw-w64-public] problem with tr1/random?

2011-01-25 Thread Jim Michaels
-mingw_20101003_sezero and mingw-w64-bin_i686-mingw_20101003_sezero. - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has software) http://DoLifeComputers.JesusnJim.com (group which I lead

Re: [Mingw-w64-public] problem with tr1/random?

2011-01-25 Thread Jim Michaels
namespaces). I did find an example that works. http://www.codeguru.com/cpp/cpp/cpp_mfc/stl/article.php/c15319 From: Jim Michaels jmich...@yahoo.com To: K. Frank kfrank2...@gmail.com Sent: Tue, January 25, 2011 3:56:07 PM Subject: Re: [Mingw-w64-public] problem

[Mingw-w64-public] compiler interpreting function prototype as variable

2011-01-26 Thread Jim Michaels
(release) [svn/rev.164871 - mingw-w64/oz], GMP version 4.3.2, MPFR version 2.4.2-p3. GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 Compiler executable checksum: 67b926ffad2570f5a541884eb898e599 - Jim Michaels jmich...@yahoo.com j

[Mingw-w64-public] compiler throws error in printreg in personal build sezero 32-bit target

2011-02-02 Thread Jim Michaels
. - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has software) http://DoLifeComputers.JesusnJim.com (group which I lead) --- Computer memory/disk size measurements: [KB KiB] [MB MiB] [GB GiB

Re: [Mingw-w64-public] compiler throws error in printreg in personal build sezero 32-bit target

2011-02-04 Thread Jim Michaels
. :-( From: Ozkan Sezer seze...@gmail.com To: Jim Michaels jmich...@yahoo.com Cc: mingw64 mingw-w64-public@lists.sourceforge.net Sent: Thu, February 3, 2011 2:50:26 AM Subject: Re: [Mingw-w64-public] compiler throws error in printreg in personal build sezero 32-bit target

Re: [Mingw-w64-public] Looking for unsigned __int128

2011-02-09 Thread Jim Michaels
cool! I've been wanting to work with a 128-bit data type for a while now... now I can work with GUIDs easier. is this available under stdint.h as uint128_t and int128_t? - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http

[Mingw-w64-public] missing long double format in printf

2011-02-21 Thread Jim Michaels
', but argument 4 has type 'long double' so... how to you display a long double in printf */ - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has software) http

[Mingw-w64-public] change to toupper and tolower standard definition in

2011-03-20 Thread Jim Michaels
a regular function for the rest (and I thought about inline as a possibility for the more complex stuff that needs real if statements). I am having to code my own versions of these. - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http

Re: [Mingw-w64-public] mingw-w64 Decimal Floating Point math

2011-03-25 Thread Jim Michaels
I can add this: If you are doing accounting apps or anything dealing with money, or doing comparisons with relops, you want decimal, not fp. otherwise, you have problems adding .01+.01+.01, -0 not being +0 and thus you can't compare or something like that, etc. fp is NOT for comparison ops.

[Mingw-w64-public] sezero 4.5.2 1002 note: variable tracking size limit exceeded with -fvar-tracking-assignments, retrying without

2011-03-25 Thread Jim Michaels
-phonelist-3.3 - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has software) http://DoLifeComputers.JesusnJim.com (group which I lead) --- Computer memory/disk size measurements: [KB

Re: [Mingw-w64-public] sezero 4.5.2 1002 note: variable tracking size limit exceeded with -fvar-tracking-assignments, retrying without

2011-03-27 Thread Jim Michaels
:-*** 1.18TB/ 2.00TB (59.14%) TOT USED: 817.44GB/ 2.00TB (40.86%) C:\prj\phonelist\pg-phonelist-3.3 From: Jim Michaels jmich...@yahoo.com To: mingw64 mingw-w64-public

Re: [Mingw-w64-public] sezero 4.5.2 1002 note: variable tracking size limit exceeded with -fvar-tracking-assignments, retrying without

2011-03-31 Thread Jim Michaels
; } - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has software) http://DoLifeComputers.JesusnJim.com (group which I lead) --- Computer memory/disk size measurements: [KB KiB

Re: [Mingw-w64-public] sezero 4.5.2 1002 note: variable tracking size limit exceeded with -fvar-tracking-assignments, retrying without

2011-04-02 Thread Jim Michaels
handle unicode or anything though. I realized this about char_traits when I read the example implementation you see there in the book The C++ Standard Library which I have. (same code) the code is copyrighted. is boost in 4.6.0? - Jim Michaels jmich...@yahoo.com j

[Mingw-w64-public] to sezero - thanks

2011-04-03 Thread Jim Michaels
I could see that you were putting some effort in to put in boost. thanks for starting. It's I think a much-needed compiler feature. - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my

Re: [Mingw-w64-public] mingw-w64 Decimal Floating Point math

2011-04-03 Thread Jim Michaels
take a gander at this decimal floating point math is possibly coming to TR2. http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2009/n2849.pdf From: James K Beard beardjam...@verizon.net To: Jim Michaels jmich...@yahoo.com; mingw-w64-public

[Mingw-w64-public] upcoming TR2, IEEE754-2008, and the possibility of new processors

2011-04-03 Thread Jim Michaels
intended) in the implementation of the FPU (Floating Point Unit) portion of the processor. new hardware means a new code base. - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has

Re: [Mingw-w64-public] g++ -fpack-struct and vector, iterator, stdint.h, iostream clash

2011-04-09 Thread Jim Michaels
, it only works in ANSI C code. I will grant you that. so it only half works. :-/ Jim Michaels From: Jaroslav Šmíd jardas...@gmail.com To: mingw-w64-public@lists.sourceforge.net Sent: Fri, April 8, 2011 1:50:16 AM Subject: Re: [Mingw-w64-public] g++ -fpack

[Mingw-w64-public] latest auto build has problem with tr1/random.h and tr1/random

2011-04-15 Thread Jim Michaels
/x86_64-w64-mingw32/4.7.0/../../../../x86_64-w64-mingw32/bin/as.exe -o atoi64.o atoi64.s - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has software) http

[Mingw-w64-public] win64 target: processor?

2011-04-16 Thread Jim Michaels
what processors does Targeting_win64 or the other 64-bit targets target? AMD64? or does it also work with Intel EM64T or whatever it was called (things are getting fuzzy)? - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http

[Mingw-w64-public] libgcc_s*.dll and libstdc++*.dll, 32 and 64-bit targets conflict

2011-04-16 Thread Jim Michaels
-mingw_20101002_4.5_sezero thanks. - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has software) http://DoLifeComputers.JesusnJim.com (group which I lead) --- Computer memory/disk size

Re: [Mingw-w64-public] 64bit (g)fortran JNI

2011-04-16 Thread Jim Michaels
I can see that the function lists are different by about 12 or so functions in different places, kind of scattered. more on the fortran side than on the other side. I also can't remember how important this is in a DLL (whether they are supposed to match exactly).

Re: [Mingw-w64-public] 64bit (g)fortran JNI

2011-04-16 Thread Jim Michaels
I should mention that one of those functions relies on msvcrt apparently, which is a microsoft runtime DLL. if it's not present in the PATH, the program probably will not run? C:\downloads\attachments_2011_04_16grep msvcrt *dump.txt f_dump.txt: DLL Name: msvcrt.dll f_dump.txt:[1017](sec

Re: [Mingw-w64-public] ANNOUNCEMENT: The version 2.0 of mingw-w64 is released!

2011-08-08 Thread Jim Michaels
any way you choose, you are going to be making a lot of directories with a few files in each if you choose to structure it. another option is - Linux /Release          +- 2.0.0          +- 2.0.1 /Snapshots /Personal Builds Toolchains Targeting

[Mingw-w64-public] problem with header that defines OSVERSIONINFOEX

2011-08-22 Thread Jim Michaels
        #if defined(__MINGW32__)         OSVERSIONINFOEXA osv; //for some reason, mingw-w64 wants to be different than microsoft!!!         #else         OSVERSIONINFOEX osv;         #endif   - Jim Michaels jmich...@yahoo.com j

Re: [Mingw-w64-public] problem with header that defines OSVERSIONINFOEX

2011-08-22 Thread Jim Michaels
unicode and ansi can you? From: Jim Michaels jmich...@yahoo.com To: mingw64 users mingw-w64-public@lists.sourceforge.net Sent: Sunday, August 21, 2011 11:19 PM Subject: [Mingw-w64-public] problem with header that defines OSVERSIONINFOEX         #if defined

Re: [Mingw-w64-public] problem with header that defines OSVERSIONINFOEX

2011-08-22 Thread Jim Michaels
with Visual Studio Professional.  Thank you for producing this compiler collection, folks...  keep up the good work.   - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http

[Mingw-w64-public] to jony, RE: 3398375

2011-09-02 Thread Jim Michaels
for mingw-w64, it's at http://JesusnJim.com/code/compilers/mingw.html and it' called gw2.cmd I won't go into the subject any more unless you want to. your winuser.h fix worked. many thanks. - Jim Michaels jmich...@yahoo.com j

[Mingw-w64-public] 32-bit auto build of 20110827 missing

2011-09-26 Thread Jim Michaels
was hoping that would come out at the same time. thanks.   - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has software) --- Computer memory/disk size measurements: [KB KiB] [MB

[Mingw-w64-public] MSYS problem building anything with configure scripts

2011-10-01 Thread Jim Michaels
checking for gcc... gcc checking for C compiler default output file name... configure: error: C compiler cannot create executables See `config.log' for more details. Jim Michaels@jim-13l5nom9i4u /c/wxWidgets-2.9.2 $ log says: gcc version 3.4.5 (mingw special) configure:15135: $? = 0 configure

[Mingw-w64-public] __int128, printf %*

2011-10-24 Thread Jim Michaels
]   - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has software) --- Computer memory/disk size measurements: [KB KiB] [MB MiB] [GB GiB] [TB TiB] [10^3B=1,000B=1KB][2^10B=1,024B=1KiB] [10

[Mingw-w64-public] sezero personal builds, minor question

2011-10-30 Thread Jim Michaels
=detailaid=3300841group_id=202880atid=983354 curious if this is a compiler I can use to build windows 9x apps.   - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has software) --- Computer

[Mingw-w64-public] how detect mingw64 as opposed to mingw

2011-12-02 Thread Jim Michaels
) {     return 0; //cause no expansion } #endif   - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has software) --- Computer memory measurements, SSD measurements, microsoft disk

Re: [Mingw-w64-public] printf issues...

2011-12-29 Thread Jim Michaels
I have had to #ifdef all my printf code in 50+ programs because of this problem. will this be fixed in mingw as well?   - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has

[Mingw-w64-public] new ISO C Standard C1X

2012-01-03 Thread Jim Michaels
http://www.h-online.com/open/news/item/ISO-updates-C-standard-1400814.html new ISO C standard, C1X, more C++ features, including threads...   - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my

Re: [Mingw-w64-public] iostream causes crash: my platform

2012-01-22 Thread Jim Michaels
that one works just fine (but mingw and mingw-w64 has no wbuffer_convert for doing unicode streams). sorry, previous msg subject said cout, that was a previous test file,and I forgot to change the subject line. From: Jim Michaels jmich...@yahoo.com To: mingw64

Re: [Mingw-w64-public] iostream causes crash: my platform

2012-02-01 Thread Jim Michaels
on that,  but your shown issue seems to be for me solved using current trunk version. Kai 2012/1/22 Jim Michaels jmich...@yahoo.com: this is using XP Pro Sp3 32-bit. I am running auto build mingw-w32-bin_i686-mingw_2027 Sun 01/22/2012  1:03:16.90|C:\prj\df\df-3.10\win\tests|%cpp32

Re: [Mingw-w64-public] [PATCH 0/4] Enable DDK / Directx headers by default

2012-02-01 Thread Jim Michaels
 you know what's really interesting about directx?  it is the ONLY graphical API in future versions of windows.  GDI is going away. From: JonY jo...@users.sourceforge.net To: mingw-w64-public@lists.sourceforge.net Sent: Tuesday, January 31, 2012 2:41 AM

[Mingw-w64-public] problem with compiler?

2012-02-03 Thread Jim Michaels
the for loop index NEVER increments beyond 0. you can zap out all the debug ifdefs if you want.  what I get is a zillion of these, start to forever: [FFMWPIL:OFF-word:lwi=0:wi=0:lwi+wi=0:lwsize=7:lineword=1:word=timothy] Jim Michaels Fri 02/03/2012 16:17:14.90|C:\prj\find-in-lines-in-files

Re: [Mingw-w64-public] problem with compiler?

2012-02-05 Thread Jim Michaels
2011127. if I switch out the file functions where a FILE * f is required or filepath (I ask for one or the other) is required for equivalent string functions containing the file content, the program works perfectly.  Interesting?   - Jim Michaels jmich...@yahoo.com j

Re: [Mingw-w64-public] problem with compiler?

2012-02-05 Thread Jim Michaels
done some unit tests with file I/O. Jim Michaels, sigh From: JonY jo...@users.sourceforge.net To: mingw-w64-public@lists.sourceforge.net Sent: Friday, February 3, 2012 5:01 PM Subject: Re: [Mingw-w64-public] problem with compiler? On 2/4/2012 08:38, Jim

[Mingw-w64-public] sizeof(size_t) on 64-bit systems with auto build?

2012-02-09 Thread Jim Michaels
), and I have no clue how to switch streams between cout and ostream safely.   - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has software) --- Computer memory measurements, SSD

Re: [Mingw-w64-public] unneeded directory?

2012-02-16 Thread Jim Michaels
  I have multiple kinds of gcc compilers...  DJGPP, mingw, mingw-w64 of many kinds, ...  they need to change that page. :-/ From: JonY jo...@users.sourceforge.net To: mingw-w64-public@lists.sourceforge.net Sent: Thursday, February 16, 2012 1:28 AM Subject:

[Mingw-w64-public] ostream ignores .width(4) for double

2012-03-10 Thread Jim Michaels
/iostream/ios_base/fmtflags/ http://www.cplusplus.com/reference/iostream/ios_base/flags/ http://www.cplusplus.com/reference/iostream/ios_base/width/   - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my

Re: [Mingw-w64-public] ostream ignores .width(4) for double

2012-03-10 Thread Jim Michaels
://www.cplusplus.com/reference/iostream/ios_base/fmtflags/ http://www.cplusplus.com/reference/iostream/ios_base/flags/ http://www.cplusplus.com/reference/iostream/ios_base/width/   - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http

[Mingw-w64-public] compiler bug in 20111127 RE: -MAXINT for int64_t

2012-03-13 Thread Jim Michaels
for int32_t, int16_t, and int8_t.   - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has software) --- Computer memory measurements, SSD measurements, microsoft disk size

[Mingw-w64-public] problem with random's uniform_int?

2012-03-14 Thread Jim Michaels
/* Author: Jim Michaels Creation Date: 3/13/2012 Current Date: 3/13/2012 Abstract: Shows what I think is a bug in random's uniform_int     distribution where the mt19937 random number generator I am     feeding through it has its numbers concentrated around the     upper portion of the range

Re: [Mingw-w64-public] problem with random's uniform_int?

2012-03-14 Thread Jim Michaels
: Kai Tietz ktiet...@googlemail.com To: mingw-w64-public@lists.sourceforge.net Sent: Wednesday, March 14, 2012 12:13 AM Subject: Re: [Mingw-w64-public] problem with random's uniform_int? 2012/3/14 Jim Michaels jmich...@yahoo.com: /* Author: Jim Michaels Creation Date: 3/13/2012 Current Date: 3/13

Re: [Mingw-w64-public] problem with random's uniform_int?

2012-03-14 Thread Jim Michaels
4.7.0 2027 From: Ruben Van Boxem vanboxem.ru...@gmail.com To: mingw-w64-public@lists.sourceforge.net Sent: Wednesday, March 14, 2012 1:09 AM Subject: Re: [Mingw-w64-public] problem with random's uniform_int? Op 14 mrt. 2012 09:00 schreef Jim Michaels

Re: [Mingw-w64-public] problem with random's uniform_int?

2012-03-14 Thread Jim Michaels
= (__urnrange = __urange                    ? 1 : __urnrange / (__urange + 1));     do       __ret = (__urntype(__urng()) -  __urnmin) / __udenom;     while (__ret __max - __min);     return __ret + __min;   } From: Jim Michaels jmich...@yahoo.com

Re: [Mingw-w64-public] compiler bug in 20111127 RE: -MAXINT for int64_t

2012-03-14 Thread Jim Michaels
] compiler bug in 2027 RE: -MAXINT for int64_t On 3/14/2012 13:57, Jim Michaels wrote: -9223372036854775808LL rnd.h:130:63: warning: integer constant is so large that it is unsigned [enabled by default] that's like saying for an int16_t, -32768 is not allowed, which is -2^15=-32,768

[Mingw-w64-public] g++.exe: error: CreateProcess: No such file or directory

2012-03-15 Thread Jim Michaels
this means I can't use MSYS because I am using 2027... I never could get MSYS on mingw-w64 to work - or configured to work with mingw-w64.   - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my

Re: [Mingw-w64-public] compiler bug in 20111127 RE: -MAXINT for int64_t

2012-03-15 Thread Jim Michaels
-public] compiler bug in 2027 RE: -MAXINT for int64_t On 3/15/2012 09:06, Jim Michaels wrote: no, the type I am using in this instance is for int64_t.  the range for int64_t is from -9,223,372,036,854,775,808..9,223,372,036,854,775,807 or -(2^63)..(2^63)-1 interesting,     const

Re: [Mingw-w64-public] problem with random's uniform_int?

2012-03-16 Thread Jim Michaels
, 2012 7:31 PM Subject: Re: [Mingw-w64-public] problem with random's uniform_int? Hello Jim and Kai and Ruben and Friends! I see something similar to Jim's bug in tr1/random, but not in random. On Wed, Mar 14, 2012 at 2:22 AM, Jim Michaels jmich...@yahoo.com wrote: /* Author: Jim Michaels

Re: [Mingw-w64-public] problem with random's uniform_int?

2012-03-16 Thread Jim Michaels
with random's uniform_int? Op 15 mrt. 2012 03:31 schreef K. Frank kfrank2...@gmail.com het volgende: Hello Jim and Kai and Ruben and Friends! I see something similar to Jim's bug in tr1/random, but not in random. On Wed, Mar 14, 2012 at 2:22 AM, Jim Michaels jmich...@yahoo.com wrote

Re: [Mingw-w64-public] bug: conversion of integers and other numbers not there

2012-03-16 Thread Jim Michaels
into an int), then the result is expanded to uint64_t by the assignement, but it is already too late. Use this instead: uint64_t n = (uint64_t) cyl * head * sector; Regards, Mity Dne 15.3.2012 0:15, Jim Michaels napsal(a): bug: conversion of integers and other numbers not there. #include

[Mingw-w64-public] issue with GetVersionEx and OSVERSIONINFOEXA

2012-03-21 Thread Jim Michaels
)    );     fprintf(fout,%u=GetSystemMetrics(SM_TABLETPC)\n,    GetSystemMetrics(SM_TABLETPC)   );     fprintf(fout,%u=GetSystemMetrics(SM_SERVERR2)\n,    GetSystemMetrics(SM_SERVERR2)   );   - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http

Re: [Mingw-w64-public] Switching versions of libgcc_s_sjlj-1.dll

2012-03-21 Thread Jim Michaels
%.%extension%.manifest Enjoy...  Jim Michaels From: NightStrike nightstr...@gmail.com To: mingw-w64-public@lists.sourceforge.net Sent: Tuesday, March 20, 2012 4:38 PM Subject: Re: [Mingw-w64-public] Switching versions of libgcc_s_sjlj-1.dll On Tue, Mar 20

[Mingw-w64-public] compiler to use?, __int128 and 4.6.3

2012-03-22 Thread Jim Michaels
://gcc.gnu.org/onlinedocs/gcc-4.6.3/gcc/_005f_005fint128.html#_005f_005fint128 - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has software) --- Computer memory measurements, SSD

[Mingw-w64-public] fixed point types...

2012-03-22 Thread Jim Michaels
http://gcc.gnu.org/onlinedocs/gcc-4.6.3/gcc/Fixed_002dPoint.html#Fixed_002dPoint   - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has software) --- Computer memory measurements

Re: [Mingw-w64-public] Kudos with GetVersionEx and OSVERSIONINFOEX

2012-03-22 Thread Jim Michaels
. thanks for your work, guys.  much appreciated!  Kudos! Jim Michaels From: Kai Tietz ktiet...@googlemail.com To: mingw-w64-public@lists.sourceforge.net Sent: Thursday, March 22, 2012 1:15 AM Subject: Re: [Mingw-w64-public] issue with GetVersionEx

Re: [Mingw-w64-public] need 32+64-bit target ubuntu compiler for 32-bit windows host

2012-03-28 Thread Jim Michaels
ok, my biggest concern with VM's is, I can get the VM to read a cd ONCE, but no more (at least with freedos).  once the drivers take over, that's it with virtualbox.  no way to get the data out of the VM after that except FTP.  I can give it a shot and see what happens. Jim Michaels

Re: [Mingw-w64-public] need 32+64-bit target ubuntu compiler for 32-bit windows host

2012-03-28 Thread Jim Michaels
Boyd ear...@users.sourceforge.net wrote: On Mon, Mar 26, 2012 at 5:38 PM, Whitequill Riclo whitequill...@gmail.com wrote: On Sun, Mar 25, 2012 at 8:37 PM, NightStrike nightstr...@gmail.com wrote: On Sun, Mar 25, 2012 at 2:18 PM, JonY jo...@users.sourceforge.net wrote: On 3/26/2012 07:17, Jim

Re: [Mingw-w64-public] need 32+64-bit target ubuntu compiler for 32-bit windows host

2012-03-28 Thread Jim Michaels
target ubuntu compiler for 32-bit windows host On 3/28/2012 17:14, Jim Michaels wrote: ok, my biggest concern with VM's is, I can get the VM to read a cd ONCE, but no more (at least with freedos).  once the drivers take over, that's it with virtualbox.  no way to get the data out of the VM

Re: [Mingw-w64-public] need 32+64-bit target ubuntu compiler for 32-bit windows host

2012-03-28 Thread Jim Michaels
To: mingw-w64-public@lists.sourceforge.net Sent: Wednesday, March 28, 2012 2:44 AM Subject: Re: [Mingw-w64-public] need 32+64-bit target ubuntu compiler for 32-bit windows host 2012/3/28 Jim Michaels jmich...@yahoo.com I will tell you why I want to.  I have over 50 personal software projects I

Re: [Mingw-w64-public] Printing unicode characters with std::wcout or wprintf

2012-03-28 Thread Jim Michaels
 they tabled it for C++11. which I thought wasn't too bright.  maybe it was someone who used the windows cmd shell and never figured out he could switch from raster font tolucida console. From: Ruben Van Boxem vanboxem.ru...@gmail.com To:

Re: [Mingw-w64-public] Problem with __int128 and Clang

2012-04-09 Thread Jim Michaels
#if !defined (__SIZEOF_INT128__) (__clang_major__ ==3) (__clang_minor__ = 1) #define __SIZEOF_INT128__ 16 #endif  then it becomes undefined for any time clang is =3.0 =4.0 I am not sure this is the logic you want.  perhaps it should be I am not a C compiler expert here, but I should think

[Mingw-w64-public] ifstream reads once too many times?

2012-04-25 Thread Jim Michaels
; } but it makes no difference.  same result.  this also happens with mingw also. - Jim Michaels jmich...@yahoo.com j...@jimscomputerrepairandwebdesign.com http://JimsComputerRepairandWebDesign.com http://JesusnJim.com (my personal site, has software) --- Computer memory measurements, SSD

Re: [Mingw-w64-public] ifstream reads once too many times?

2012-04-27 Thread Jim Michaels
: Wednesday, April 25, 2012 2:25 PM Subject: Re: [Mingw-w64-public] ifstream reads once too many times? Op 25 apr. 2012 23:07 schreef Jim Michaels jmich...@yahoo.com het volgende: #include fstream #include iostream int main(int argc, char * argv[], char * envp[]) {     int n;     std

Re: [Mingw-w64-public] ifstream reads once too many times?

2012-04-27 Thread Jim Michaels
-public@lists.sourceforge.net Sent: Wednesday, April 25, 2012 2:25 PM Subject: Re: [Mingw-w64-public] ifstream reads once too many times? Op 25 apr. 2012 23:07 schreef Jim Michaels jmich...@yahoo.com het volgende: #include fstream #include iostream int main(int argc, char * argv[], char * envp

Re: [Mingw-w64-public] ifstream reads once too many times?

2012-04-28 Thread Jim Michaels
: Re: [Mingw-w64-public] ifstream reads once too many times? 2012/4/27 Jim Michaels jmich...@yahoo.com by the way, this was a bug report, but a support request.  but really this bug report has just morphed into an ECO for a serious reason. please note that I am not doing getline.  totally

[Mingw-w64-public] (no subject)

2012-06-03 Thread Jim Michaels
http://www.pcworld.com/businesscenter/article/256339/microsoft_delivers_a_blow_to_open_source_with_visual_studio_11.html#tk.rss_news microsoft SDK's will no longer ships with complete build environment. microsoft vs express 11 only does metro apps.   - Jim Michaels jmich...@yahoo.com

Re: [Mingw-w64-public] how news how affect mingw/mingw-w64?

2012-06-03 Thread Jim Michaels
guys, my question is, how does this news affect mingw-w64?  is this going to make my auto build compilers disappear? what's the status on the buildbot? all kinds of big things are falling apart this last 2 months. ack! From: Jim Michaels jmich...@yahoo.com

[Mingw-w64-public] need more up-to-date or working compiler, unsetf broken iostream broken

2012-06-30 Thread Jim Michaels
hard on this stuff.   - Jim Michaels jmich...@yahoo.com j...@renewalcomputerservices.com http://RenewalComputerServices.com http://JesusnJim.com (my personal site, has software) --- IEC Units: Computer RAM SSD measurements, microsoft disk size measurements (note: they will say GB

[Mingw-w64-public] still no official support for __int128 quite yet from gcc.gnu.org

2012-06-30 Thread Jim Michaels
it's kind of halfway there. I guess it breaks the ABIs currently. http://gcc.gnu.org/gcc-4.8/changes.html   - Jim Michaels jmich...@yahoo.com j...@renewalcomputerservices.com http://RenewalComputerServices.com http://JesusnJim.com (my personal site, has software) --- IEC Units

[Mingw-w64-public] windows auto builds

2012-08-14 Thread Jim Michaels
.   - Jim Michaels jmich...@yahoo.com j...@renewalcomputerservices.com http://RenewalComputerServices.com http://JesusnJim.com (my personal site, has software) --- IEC Units: Computer RAM SSD measurements, microsoft disk size measurements (note: they will say GB or MB or KB or TB when it is IEC

Re: [Mingw-w64-public] windows auto builds

2012-08-15 Thread Jim Michaels
have had sf.net projects of my own. Jim Michaels From: NightStrike nightstr...@gmail.com To: mingw-w64-public@lists.sourceforge.net Sent: Tuesday, August 14, 2012 8:59 AM Subject: Re: [Mingw-w64-public] windows auto builds Did a windows autobuild make

[Mingw-w64-public] how convert png/tif/jpg/gif to bmp?

2012-08-26 Thread Jim Michaels
of a win32 call for converting bitmaps to bmp?   - Jim Michaels jmich...@yahoo.com j...@renewalcomputerservices.com http://RenewalComputerServices.com http://JesusnJim.com (my personal site, has software) --- IEC Units: Computer RAM SSD measurements, microsoft disk size measurements

Re: [Mingw-w64-public] how convert png/tif/jpg/gif to bmp?

2012-08-28 Thread Jim Michaels
I was heavily noticing I can't link to any of the .net stuff. microsoft doesn't even show you how to link c++ stuff... :-/ guess microsoft isn't serious about .net. too bad,I saw some nice image conversion stuff in there (which is also poorly documented). Jim Michaels

Re: [Mingw-w64-public] how convert png/tif/jpg/gif to bmp?

2012-09-03 Thread Jim Michaels
 EXACTLY what I needed. thanks! Jim From: Kai Tietz ktiet...@googlemail.com To: mingw-w64-public@lists.sourceforge.net Sent: Tuesday, August 28, 2012 1:47 PM Subject: Re: [Mingw-w64-public] how convert png/tif/jpg/gif to bmp? Hi, AFAIR there is a way to

Re: [Mingw-w64-public] how convert png/tif/jpg/gif to bmp? - no COM libs!

2012-09-05 Thread Jim Michaels
would be the latest version available which seems to work well. From: Jim Michaels jmich...@yahoo.com To: mingw-w64-public@lists.sourceforge.net mingw-w64-public@lists.sourceforge.net Sent: Monday, September 3, 2012 9:56 PM Subject: Re: [Mingw-w64-public] how

[Mingw-w64-public] bug in gcc? has nothing defined for iterator references

2012-11-05 Thread Jim Michaels
the original iSpecAttrib. I don't know enough about iterators to figure out how to pass a value back in an argument to the original variable in c++ now except to use pointers... I really wanted to use references, they are SO much more convenient.   - Jim Michaels jmich...@yahoo.com j

Re: [Mingw-w64-public] clarification - iterator references

2012-11-05 Thread Jim Michaels
: Jim Michaels jmich...@yahoo.com To: mingw64 users mingw-w64-public@lists.sourceforge.net Sent: Monday, November 5, 2012 9:39 PM Subject: [Mingw-w64-public] bug in gcc? has nothing defined for iterator references 32\errgw32bmatch2:bmatch2.cpp:404:49: error: no match for 'operator

Re: [Mingw-w64-public] bug in gcc? dereferencing pointers to iterators

2012-11-06 Thread Jim Michaels
nothing defined for iterator references Op 6 nov. 2012 06:40 schreef Jim Michaels jmich...@yahoo.com het volgende: 32\errgw32bmatch2:bmatch2.cpp:404:49: error: no match for 'operator=' in 'iSpecAttrib = ( iSpecEl)-__gnu_cxx::__normal_iterator_Iterator, _Container::operator-SElement*, std

Re: [Mingw-w64-public] MinWG64 on Windows, for Windows?

2012-11-06 Thread Jim Michaels
that would be nice... From: Yves yves.per...@modusfx.com To: mingw-w64-public@lists.sourceforge.net mingw-w64-public@lists.sourceforge.net Sent: Monday, November 5, 2012 10:49 AM Subject: Re: [Mingw-w64-public] MinWG64 on Windows, for Windows? Hi Ruben, 

Re: [Mingw-w64-public] bug in gcc? dereferencing pointers to iterators

2012-11-10 Thread Jim Michaels
iterator references or some kind of ability to pass iterators back through a function to save us all headaches. I consider that basic functionality. :-( thanks for the pointers though. :-] Jim Michaels From: K. Frank kfrank2...@gmail.com To: mingw-w64-public

  1   2   3   >