Search found 58 matches: msc

Return to advanced search

Re: SSE2 instruction set problem

Joszif, > error LNK2038: mismatch detected for '_MSC_VER': value '1600' doesn't match value '1900' in [filename].OBJ. Please copy here the complete error. I don't find any filename.* file in the harbour sources > I think the solution is a new Harbour_vsc2017_32bits_20170325.zip that is made by...
by Antonio Linares
Mon Mar 19, 2018 6:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SSE2 instruction set problem
Replies: 6
Views: 969

Re: SSE2 instruction set problem

Dear Antonio, We use Visual Studio 2017 compiler (Exact version: 19.11.25547 for x86). When we purchased FiveWin, we got compiled Harbour lib files, in a zip file, named Harbour_vsc2017_32bits_20170325.zip. This zip contains every Harbour lib files, including the hbvm.lib file that we mentioned in t...
by Joszif
Mon Mar 19, 2018 12:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SSE2 instruction set problem
Replies: 6
Views: 969

Re: Building Harbour 3.4 for BCC outside MSYS

Enrico,
this are my Compiler-flags: See on O2! (fastest Speed)
MSC_COMP_FLAGS = /c /TP /W3 /O2 /D__FLAT__ /GA /GS- /EHsc
I use HARBOUR and my results are on same test are vice versa as yours!
by byte-one
Fri Dec 29, 2017 4:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Building Harbour 3.4 for BCC outside MSYS
Replies: 87
Views: 17247

Re: Building Harbour 3.4 for BCC outside MSYS

... total application time: ]....................................19.47[ total real time: ]...........................................19.52 MSC: [ total application time: ]....................................30.78[ total real time: ]...........................................30.81
by Enrico Maria Giordano
Fri Dec 29, 2017 3:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Building Harbour 3.4 for BCC outside MSYS
Replies: 87
Views: 17247

Re: Building Harbour 3.4 for BCC outside MSYS

... total application time: ]....................................19.47[ total real time: ]...........................................19.52 MSC: 12/29/17 16:46:02 Windows 8 6.2.9200xHarbour 1.2.3 Intl. (SimpLex) (Build 20171219) Microsoft Visual C++ 19.11.25547 (32-bit) ...
by Enrico Maria Giordano
Fri Dec 29, 2017 3:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Building Harbour 3.4 for BCC outside MSYS
Replies: 87
Views: 17247

Re: Building Harbour 3.4 for BCC outside MSYS

8,72 MB with BCC
8,78 MB with MSC
by byte-one
Fri Dec 15, 2017 2:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Building Harbour 3.4 for BCC outside MSYS
Replies: 87
Views: 17247

Re: Building Harbour 3.4 for BCC outside MSYS

Now i have compiled succesfull with Harbour and MSC. The speedtest gives the following results:

BCC 7.3 40,5 secs
MSC 27,2 secs

!!!!!!
by byte-one
Fri Dec 15, 2017 1:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Building Harbour 3.4 for BCC outside MSYS
Replies: 87
Views: 17247

Re: Ayuda DLL

Antonio, Gracias Esta es la funcion en el MAINDLLP.C unsigned long hb_snprintf( char * buffer, size_t nSize, const char * format, ... ) { va_list arglist; ULONG result; va_start( arglist, format ); #if defined( __DJGPP__ ) && ( __DJGPP__ < 2 || ( __DJGPP__ == 2 && __DJGPP_MINOR__ ...
by ricardog
Thu Aug 24, 2017 6:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda DLL
Replies: 24
Views: 6362

Testing TensorFlow with Python on Windows

... a terminal Window (cmd): pip3 install --upgrade tensorflow To test it: c:\>python Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:18:55) [MSC v.1900 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> ...
by Antonio Linares
Wed Aug 02, 2017 7:41 am
 
Forum: Off Topic / Otros temas
Topic: Testing TensorFlow with Python on Windows
Replies: 2
Views: 641

Re: OT: Network-Problem

try on win10
run script secpol.msc as admin
on local parameters find where is option "Enable security signature" and set this option to disable
next restart computer
by Eugeniusz Owsiak
Mon May 29, 2017 12:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OT: Network-Problem
Replies: 3
Views: 563

How to detect GNU C and Microsoft C from C code

For MinGW GCC:

#ifdef __GNUC__

For Microsoft C:

#ifdef _MSC_VER
by Antonio Linares
Wed Nov 30, 2016 10:13 am
 
Forum: Utilities / Utilidades
Topic: How to detect GNU C and Microsoft C from C code
Replies: 0
Views: 532

refresh MESSAGE

How may I refresh xMESSAGE in MESSAGE mainly msc_m and rok_m ? best regards kajot //----------------------------------------------------------------------------// function Main() SET _3DLOOK ON public oApp, oMsgBar MSC_M:=1 ROK_M:=2016 SET _3DLOOK ON // Microsoft 3D Look DEFINE FONT oFont NAME "...
by kajot
Thu Jul 14, 2016 8:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: refresh MESSAGE
Replies: 2
Views: 478

Re: Fix This app can't open for Built-in Administrator account

run secpol.msc

Local Policies - Security options - User Account control: Admin aproval mode for the Built-in Administrator account - Enabled
by Antonio Linares
Fri Jun 03, 2016 7:20 pm
 
Forum: Utilities / Utilidades
Topic: Fix This app can't open for Built-in Administrator account
Replies: 1
Views: 614

Re: FWH 16.03 32 BIT

Problem solved. These changes are required in Harbour hbsocket.c: # if _MSC_VER >= 1800 // # define HB_HAS_INET_PTON // # define HB_HAS_INET_NTOP // # define HB_HAS_ADDRINFO // # define HB_HAS_NAMEINFO # endif A modified hbrtl.lib has to be used. Here it is: https://bitbucket.org/fivetech...
by Antonio Linares
Thu Apr 14, 2016 8:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.03 32 BIT
Replies: 118
Views: 25430
PreviousNext

Return to advanced search