Skip to content

Commit

Permalink
Merge branch 'harbour:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Petewg authored Dec 11, 2024
2 parents a06d445 + 3020495 commit 927e53f
Show file tree
Hide file tree
Showing 7 changed files with 99 additions and 13 deletions.
29 changes: 29 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,35 @@
Entries may not always be in chronological/commit order.
See license at the end of file. */

2024-12-04 15:25 UTC+0100 Aleksander Czajczynski (hb fki.pl)
* src/common/hbver.c
! added lacking VER_BUILDNUMBER definition that is missing
in very old compiler sets/SDKs (pre Windows 2000),
noticed by DF7BE - Wilfried Brunken in #362

* README.md
* slightly updated list of supported compilers and
examples to mention MSVC for ARM64 and Clang

* ChangeLog.txt
* hb_scan -> hb_hscan in prev

2024-12-03 01:27 UTC-0300 Lailton Fernando Mariano (lailton/at/paysoft.com.br)
* src/vm/hashfunc.c
! fixed issue hb_hscan when we are looking for a logical value as true.
Many thanks to Marcos Gambeta who found the problem.

2024-10-28 16:57 UTC+0100 Aleksander Czajczynski (hb fki.pl)
* src/rdd/dbf1.c
! reading varchar binary field ("Q:B") from a .dbf
could free a wrong pointer in the record buffer.
Bug located and fixed by Marek.

2024-10-25 14:09 UTC+0200 Aleksander Czajczynski (hb fki.pl)
* contrib/hbziparc/ziparc.prg
! return value of hb_zipDeleteFile() is not logical,
fix by Grigory Filatov.

2024-10-18 07:56 UTC+0200 Aleksander Czajczynski (hb fki.pl)
* src/common/hbver.c
* guard Win10 build number getter from the unknown,
Expand Down
65 changes: 58 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1233,6 +1233,53 @@ call "%ProgramFiles(x86)%\Microsoft Visual Studio 9.0\VC\vcvarsall.bat" x86_ia64
win-make
```

```batchfile
rem MSVC 2022 targeting ARM64
rem (requires preceding build for native target)
call "%ProgramFiles(x86)%\Microsoft Visual Studio 17.10\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" amd64_arm64
win-make
```

```batchfile
rem Clang distributed by Visual Studio
set PATH="%ProgramFiles(x86)%\Microsoft Visual Studio 17.10\BuildTools\VC\Tools\Llvm\x64\bin";%PATH%
win-make
```

```batchfile
rem Clang from winlibs.com
set PATH=C:\winlibs\mingw64\bin;%PATH%
set HB_COMPILER=clang
win-make
```

```batchfile
rem Clang x86_64 distributed by MSYS2 from cmd
set PATH=C:\msys64\clang64\bin;%PATH%
win-make
```

## on Windows ARM64 hosts

```batchfile
rem MSVC 2022 for ARM64
call "%ProgramFiles(x86)%\Microsoft Visual Studio 17.10\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" arm64
rem set HB_COMPILER=msvcarm64 (may be needed if Clang is also in resulting PATH)
win-make
```

```batchfile
rem Clang/MS ARM64
set PATH=%ProgramFiles%\Microsoft Visual Studio 17.10\BuildTools\VC\Tools\Llvm\ARM64\bin;%PATH%
win-make
```

```batchfile
rem Clang/MSYS ARM64 called from cmd
set PATH=C:\msys64\clangarm64\bin;%PATH%
win-make
```

## on MS-DOS hosts

```batchfile
Expand Down Expand Up @@ -1579,15 +1626,16 @@ mailing list.
* sunpro - Sun Studio C/C++

### win
* mingw - MinGW GNU C 3.4.2 and above
* mingw64 - MinGW GNU C x86-64
* msvc - Microsoft Visual C++
* msvc64 - Microsoft Visual C++ x86-64
* msvcia64 - Microsoft Visual C++ IA-64 (Itanium)
* mingw - MinGW GNU C 3.4.2 and above
* mingw64 - MinGW GNU C x86-64
* msvc - Microsoft Visual C++
* msvc64 - Microsoft Visual C++ x86-64
* msvcarm - Microsoft Visual C++ ARM
* msvcarm64 - Microsoft Visual C++ ARM64
* msvcia64 - Microsoft Visual C++ IA-64 (Itanium)
* clang - Clang (various flavours supported)

### win (partial support, some features may be missing)

* clang - Clang
* watcom - Open Watcom C/C++
* bcc - Borland/CodeGear/Embarcadero C++ 4.x and above
* bcc64 - Embarcadero C++ 6.5 and above
Expand Down Expand Up @@ -1619,6 +1667,7 @@ mailing list.
:---- | :------- | :---------------- | :---------------------------------------
| win | win/bcc | x86
| win | win/bcc64 | x86-64
| win | win/clang | (CPU cross-builds possible: x86, x86-64, arm64)
| win | win/gcc | x86
| win | win/global | x86
| win | win/icc | x86
Expand All @@ -1628,6 +1677,8 @@ mailing list.
| win | win/mingw64 | x86-64
| win | win/msvc | x86
| win | win/msvc64 | x86-64
| win | win/msvcarm | arm
| win | win/msvcarm64 | arm64
| win | win/msvcia64 | ia64
| win | win/pocc | x86
| win | win/pocc64 | x86-64
Expand Down
2 changes: 1 addition & 1 deletion contrib/hbziparc/ziparc.prg
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ FUNCTION hb_ZipDeleteFiles( cFileName, acFiles )
ENDIF

FOR EACH cFileToProc IN acFiles
lRetVal := lRetVal .AND. hb_zipDeleteFile( cFileName, cFileToProc )
lRetVal := lRetVal .AND. ( hb_zipDeleteFile( cFileName, cFileToProc ) == UNZ_OK )
NEXT

RETURN lRetVal
3 changes: 3 additions & 0 deletions src/common/hbver.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@
#ifndef VER_MAJORVERSION
#define VER_MAJORVERSION 0x0000002
#endif
#ifndef VER_BUILDNUMBER
#define VER_BUILDNUMBER 0x0000004
#endif
#ifndef VER_SERVICEPACKMINOR
#define VER_SERVICEPACKMINOR 0x0000010
#endif
Expand Down
10 changes: 6 additions & 4 deletions src/rdd/dbf1.c
Original file line number Diff line number Diff line change
Expand Up @@ -2193,12 +2193,14 @@ static HB_ERRCODE hb_dbfGetValue( DBFAREAP pArea, HB_USHORT uiIndex, PHB_ITEM pI
nLen = pField->uiLen;
}
if( ( pField->uiFlags & HB_FF_BINARY ) == 0 )
{
pszVal = hb_cdpnDup( ( const char * ) pArea->pRecord + pArea->pFieldOffset[ uiIndex ],
&nLen, pArea->area.cdPage, hb_vmCDP() );
else
pszVal = ( char * ) pArea->pRecord + pArea->pFieldOffset[ uiIndex ];

hb_itemPutCLPtr( pItem, pszVal, nLen );
hb_itemPutCLPtr( pItem, pszVal, nLen );
break;
}
pszVal = ( char * ) pArea->pRecord + pArea->pFieldOffset[ uiIndex ];
hb_itemPutCL( pItem, pszVal, nLen );
}
break;

Expand Down
2 changes: 1 addition & 1 deletion src/vm/hashfunc.c
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ HB_FUNC( HB_HSCAN )
}
else if( HB_IS_LOGICAL( pValue ) )
{
HB_BOOL fValue = hb_itemGetDL( pValue );
HB_BOOL fValue = hb_itemGetL( pValue );
while( nCount-- )
{
PHB_ITEM pItem = hb_hashGetValueAt( pHash, nStart );
Expand Down
1 change: 1 addition & 0 deletions utils/hbmk2/hbmk2.prg
Original file line number Diff line number Diff line change
Expand Up @@ -2035,6 +2035,7 @@ STATIC FUNCTION __hbmk( aArgs, nArgTarget, nLevel, /* @ */ lPause, /* @ */ lExit
tmp3 := NIL; HB_SYMBOL_UNUSED( tmp3 )

AAdd( aCOMPDET_EMBED, { {| cPrefix | tmp1 := hb_PathNormalize( hb_DirSepAdd( hbmk[ _HBMK_cHB_INSTALL_PFX ] ) + _HBMK_SPECDIR_COMP + hb_ps() + "mingw" + hb_ps() + "bin" ), iif( hb_FileExists( tmp1 + hb_ps() + cPrefix + "gcc" + hbmk[ _HBMK_cCCEXT ] ), tmp1, NIL ) }, "win" , "mingw" , "" , NIL, {| cARCH, cCOMP, cPathBin | hbmk_COMP_Setup( cARCH, cCOMP, cPathBin + hb_ps() + ".." ) } } )
AAdd( aCOMPDET_EMBED, { {| cPrefix | tmp1 := hb_PathNormalize( hb_DirSepAdd( hbmk[ _HBMK_cHB_INSTALL_PFX ] ) + _HBMK_SPECDIR_COMP + hb_ps() + "mingw64" + hb_ps() + "bin" ), iif( hb_FileExists( tmp1 + hb_ps() + cPrefix + "gcc" + hbmk[ _HBMK_cCCEXT ] ), tmp1, NIL ) }, "win" , "mingw64" , "" , NIL, NIL } )
AAdd( aCOMPDET_EMBED, { {| cPrefix | tmp1 := hb_PathNormalize( hb_DirSepAdd( hbmk[ _HBMK_cHB_INSTALL_PFX ] ) + _HBMK_SPECDIR_COMP + hb_ps() + "mingw64" + hb_ps() + "bin" ), iif( hb_FileExists( tmp1 + hb_ps() + cPrefix + "gcc" + hbmk[ _HBMK_cCCEXT ] ), tmp1, NIL ) }, "win" , "mingw64" , "i686-w64-mingw32-" , NIL, NIL } )
AAdd( aCOMPDET_EMBED, { {| cPrefix | tmp1 := hb_PathNormalize( hb_DirSepAdd( hbmk[ _HBMK_cHB_INSTALL_PFX ] ) + _HBMK_SPECDIR_COMP + hb_ps() + "mingw64" + hb_ps() + "bin" ), iif( hb_FileExists( tmp1 + hb_ps() + cPrefix + "gcc" + hbmk[ _HBMK_cCCEXT ] ), tmp1, NIL ) }, "win" , "mingw64" , "x86_64-w64-mingw32-" , NIL, NIL } )
AAdd( aCOMPDET_EMBED, { {| cPrefix | tmp1 := hb_PathNormalize( hb_DirSepAdd( hbmk[ _HBMK_cHB_INSTALL_PFX ] ) + _HBMK_SPECDIR_COMP + hb_ps() + "mingwarm" + hb_ps() + "bin" ), iif( hb_FileExists( tmp1 + hb_ps() + cPrefix + "gcc" + hbmk[ _HBMK_cCCEXT ] ), tmp1, NIL ) }, "wce" , "mingwarm", "arm-mingw32ce-" , NIL, NIL } )
Expand Down

0 comments on commit 927e53f

Please sign in to comment.