Search found 48 matches: iob

Return to advanced search

Re: FWH 16.03 32 BIT

This may work:

#pragma BEGINDUMP

#include <Windows.h>

extern "C" {
FILE * _iob[] = { stdin, stdout, stderr };

FILE * __iob_func( void )
{
return ( FILE * ) _iob;
}
}

#pragma ENDDUMP
by Antonio Linares
Sun Apr 10, 2016 11:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.03 32 BIT
Replies: 118
Views: 25429

Re: FWH 16.03 32 BIT

This one ?

hbssl.lib(ssl.obj) : error LNK2019: unresolved external symbol ___iob_func referenced in function _app_stdin
by Antonio Linares
Sun Apr 10, 2016 11:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.03 32 BIT
Replies: 118
Views: 25429

Re: FWH 16.03 32 BIT

This seems the right version:

#pragma BEGINDUMP

#include <Windows.h>

FILE * _iob[] = { stdin, stdout, stderr };

FILE * __iob_func( void )
{
return ( FILE * ) _iob;
}

#pragma ENDDUMP
by Antonio Linares
Sun Apr 10, 2016 11:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.03 32 BIT
Replies: 118
Views: 25429

Re: FWH 16.03 32 BIT

Hakan,

Please try to add this code to your main PRG:

#pragma BEGINDUMP

#include <Windows.h>

FILE * __iob_func( void )
{
return { * stdin, * stdout, * stderr };
}

#pragma ENDDUMP
by Antonio Linares
Sun Apr 10, 2016 10:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.03 32 BIT
Replies: 118
Views: 25429

Re: FWH64

__acrt_iob-func called from: hbvm.lib (hvmall.obj) hbcplr.lib ( hbcomp.obj) hbpp.lib ( ppcore.obj) __stdio_common_vfprintf hbpp.lib ( ppcore.obj) hbcplr.lib ( hbcomp.obj, genc.obj, compi18n.obj, gencc.obj) FiveH64.lib( prv2pdf.obj ) hbrtl.lib( errintlo.obj ) hbvm.lib ( hvmall.obj ) hbcplr.lib ( hbma...
by TimStone
Mon Mar 28, 2016 9:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH64
Replies: 110
Views: 25131

Re: FWH64

Tim,

These unresolved externals from which modules are called ?

__stdio_common_vfprintf
__acrt_iob_func
by Antonio Linares
Mon Mar 28, 2016 7:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH64
Replies: 110
Views: 25131

Re: FWH64

Antonio, First, I do have 2015 installed. Second, the build references Studio 2013, not 15. ( v12.0 not v14.0 ) Most important, it has two missing externals: __stdio_common_vfprintf __acrt_iob_func If I change build64.bat to use V14.0 I still get the same errors. Also, this does not resolve the miss...
by TimStone
Mon Mar 28, 2016 6:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH64
Replies: 110
Views: 25131

problema al compilar con MSVC2010 y FWH64

Hola Antonio: Al intentar compilar, me arroja este error: Microsoft (R) Windows (R) Resource Compiler Version 6.1.7600.16385 Copyright (C) Microsoft Corporation. All rights reserved. FiveH64.lib(HARBOUR.obj) : error LNK2019: unresolved external symbol __acrt_iob_func referenced in function HB_FUN_FR...
by MOISES
Sun May 10, 2015 2:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: problema al compilar con MSVC2010 y FWH64
Replies: 6
Views: 674

Re: OT: //Build 2015 //

With new Harbour and VS 2015, the following errors occur: hbcplr.lib(gencc.obj) : error LNK2001: unresolved external symbol ___stdio_common_vfprintf 1>hbpp.lib(ppcore.obj) : error LNK2001: unresolved external symbol ___stdio_common_vfprintf 1>hbcplr.lib(hbmain.obj) : error LNK2001: unresolved ...
by TimStone
Wed May 06, 2015 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OT: //Build 2015 //
Replies: 40
Views: 9000

Re: OT: //Build 2015 //

Using FWH Build 2 and VS 2015 Community (RC), I get the following errors: 1>FiveH32.lib(HARBOUR.obj) : error LNK2019: unresolved external symbol ___acrt_iob_func referenced in function _HB_FUN_FREOPEN_STDERR 1>FiveH32.lib(PRV2PDF.obj) : error LNK2019: unresolved external symbol ___stdio_common...
by TimStone
Wed May 06, 2015 5:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OT: //Build 2015 //
Replies: 40
Views: 9000

Re: Build with Visual Studio 2015 errors

According to hbssl.hbp we need these DLLs: -depimplibs=openssl:../out32dll/libeay32.dll -depimplibs=openssl:../out32dll/ssleay32.dll -depimplibs=openssl:../dll/libeay32.dll -depimplibs=openssl:../dll/ssleay32.dll -depimplibs=openssl:../libeay32.dll -depimplibs=openssl:../ssleay32.dll We may try to s...
by Antonio Linares
Thu Apr 09, 2015 10:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Build with Visual Studio 2015 errors
Replies: 33
Views: 7905

Re: Build with Visual Studio 2015 errors

Next error: link /nologo /subsystem:console /opt:ref /out:out32\constant_time_test.exe @C:\Users\ADMINI~1\AppData\Local\Temp\nmF6 D2.tmp constant_time_test.obj : error LNK2019: unresolved external symbol ___iob_func referenced in function _main C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\...
by Antonio Linares
Thu Apr 09, 2015 9:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Build with Visual Studio 2015 errors
Replies: 33
Views: 7905

Re: Build with Visual Studio 2015 errors

OK ...

I still have 3 problems: UNDEFINED

__vaCopy in _hb_vsnprintf found in hbcommon.lib

__iob_func in hbssl.lib ( I don't think you rebuilt this one )

_except_handler4_ommon in MSVCRTD.lib though I told it not to link this file by default ... it still goes to it.

Tim
by TimStone
Tue Apr 07, 2015 7:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Build with Visual Studio 2015 errors
Replies: 33
Views: 7905

Re: Build with Visual Studio 2015 errors

Antonio,

The article I read indicated we need to rebuild all libraries with VC 2015. That would include the Harbour and FWH libraries.

https://connect.microsoft.com/VisualStudio/feedback/details/1144980/error-lnk2001-unresolved-external-symbol-imp-iob-func

Tim
by TimStone
Tue Apr 07, 2015 3:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Build with Visual Studio 2015 errors
Replies: 33
Views: 7905
PreviousNext

Return to advanced search