FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin para Harbour/xHarbour Construcci贸n de LIB importadas 32 y 64 para los comp. de C
Posts: 817
Joined: Sun Jun 15, 2008 07:47 PM
Construcci贸n de LIB importadas 32 y 64 para los comp. de C
Posted: Mon Dec 16, 2019 02:35 PM

Abro este hilo porque creo que ser铆a bueno que los que lo teng谩is esos procedimientos los compart谩is con todos.
Para 32 bit y 64 de los principales compiladores de C:

Bcc32 y Bcc54
Msvc32 y Msvc64
MinGW32 y MinGW64
y otros

:D

______________________________________________________________________________

Sevilla - Andaluc铆a
Posts: 1276
Joined: Tue Dec 28, 2010 01:29 PM
Re: Construcci贸n de LIB importadas 32 y 64 para los comp. de C
Posted: Tue Dec 17, 2019 06:16 PM
Para Borland 64

MKEXP.EXE, the 64-bit Windows Import Library Tool for C++
Go Up to Command-Line Utilities Index

MKEXP.EXE is the 64-bit Windows counterpart of IMPLIB.EXE, the Import Library Tool for Win32. However, MKEXP does not support all the same options supported by IMPLIB.

MKEXP produces GNU-style (ELF format) archive files (.a files).

You can use .DLL, .DEF, or OMF files with MKEXP.

Examples
Generating an import library from a DLL:

mkexp mydll.a mydll.dll
Generating an import library from a .DEF file:

mkexp mydll.a mydll.def
The resulting .a files are included in the library section of the link command line for any application or DLL that uses mydll.dll. The .a files that are produced by mkexp are GNU style archive files containing a single object file with an Embarcadero specific set of data to describe all the exports from the DLL.

Command-Line Help
C:> mkexp
mkexp.exe: Copyright (c) 2012 Embarcadero Technologies, Inc.
All rights reserved.

usage: mkexp [-n] [-d] [-o] [-p] outputfile inputfile
Creates an import archive from an input file.
Valid input files are OMF object files that contain only
EXPDEF COMENT records, PE files, and DEF files.

-f: prefer to link by ordinal (dangerous)
-d: assume input is a DEF file
-o: assume input is an OMF object file
-p: assume input is a PE file

File type is by default based on extension:
OMF: .obj
DEF: .def
PE: .dll, .exe

FWH 25.12

Harbour/Hbmk2

Microsoft Visual C++

MySql 8.0

Antigravity

Posts: 817
Joined: Sun Jun 15, 2008 07:47 PM
Re: Construcci贸n de LIB importadas 32 y 64 para los comp. de C
Posted: Wed Dec 18, 2019 09:03 AM
Construccion de librerias de importacion

BCC32
Code (fw): Select all Collapse
ImpLib LibMySQL.lib LibMySQL.dll


BCC64
Code (fw): Select all Collapse
mkexp libmysql.a libmysql.dll


MSVC32
Code (fw): Select all Collapse
call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars32.bat"
lib /def:LibMySQL.def /machine:x86 /out:LibMySQL.lib


MSVC64
Code (fw): Select all Collapse
call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
lib /def:LibMySQL.def /machine:x64 /out:LibMySQL.lib


MinGW 32 y 64 (Seg煤n entorno activo en el PATH)
Code (fw): Select all Collapse
gendef -a libmysql.dll
dlltool -k -d libmysql.def -l libmysql.a


Si alguien quiere poner otros compiladores, el hilo sigue abierto
:-)
______________________________________________________________________________

Sevilla - Andaluc铆a

Continue the discussion