Search found 454 matches: flags

Return to advanced search

Re: xbrowse(autosort) + tdolphin - erro

... function Main() LOCAL oForm, oServer, oQry, oBrw CONNECT oServer HOST 'localhost' ; USER 'root' ; PASSWORD 'miclave' ; PORT 3306 ; FLAGS 0; DATABASE 'test' oQry := oServer:Query('SELECT p.chave as chave, p.data as data, c.nome as nome FROM ped AS p LEFT JOIN cli AS c ON(c.codigo=p.codigo) ...
by MGA
Thu Nov 14, 2024 2:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse(autosort) + tdolphin - erro
Replies: 6
Views: 174

maria_Connect (to Mr.Nages)

... errors. connection: STAT FUNC ConnectTo(hHost,hUser,hPassword,hBase,siMsg) CONNECT oBase HOST hHost USER hUser PASSWORD hPassword PORT 3306 FLAGS hFlags DATABASE hBase ; ON ERROR MiError(oBase,nError,lInternal,@CONECTA,siMsg) IF !CONECTA RETURN NIL ENDIF IF !oBase:Execute("set session ...
by TOTOVIOTTI
Tue Oct 15, 2024 12:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: maria_Connect (to Mr.Nages)
Replies: 5
Views: 238

Re: Bug Maria_Connect() FWH-24.07 64 bits ???

... larger objects are safely allocated in heap memory, which can handle bigger allocations in 64-bit environments. ### 8. **Compile with Appropriate Flags** Ensure that your project is being compiled with the correct flags for 64-bit support. These flags ensure correct memory alignment, stack size, ...
by nnicanor
Wed Sep 25, 2024 2:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug Maria_Connect() FWH-24.07 64 bits ???
Replies: 37
Views: 1331

Re: Bug Maria_Connect() FWH-24.07 64 bits ???

... and that it’s not performing operations that are specific to 32-bit environments (like assuming fixed data sizes). ### 7. **Compile with Correct Flags** Ensure that you're compiling the code with the correct flags for 64-bit. In Borland C, make sure you're using the proper flags to compile for ...
by nnicanor
Wed Sep 25, 2024 2:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug Maria_Connect() FWH-24.07 64 bits ???
Replies: 37
Views: 1331

Re: Compilar con hmbk2 es complicado, pero...

... y harbour para borland 7.4. (ahora voy a migrar a Borland 7.7 , Fivewin 24.07 y Harbour para borland 7.7) Mira el fichero .hbp # $Id: obraw.hbp $ #flags -gui -inc #-b #PRG # ------ MODULO PRINCIPAL ------- c:\GestObras\source\obraw # ------ SOURCES ----------------- c:\GestObras\source\empresas ...
by jvtecheto
Wed Sep 18, 2024 1:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Compilar con hmbk2 es complicado, pero...
Replies: 86
Views: 3343

Re: What is wrong with 24.07

hi Antonio, You should use these flags just for 64 bits with bcc77 64 bits: -workdir= -optim- -ldflag+=-aa Don't use them for 32 bits OK, understand. I have just copy your Sample TEST.HBP from Thread https://forums.fivetechsupport.com/viewtopic.php?f=3&t=44840 ...
by Jimmy
Fri Sep 13, 2024 1:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: What is wrong with 24.07
Replies: 13
Views: 853

Re: What is wrong with 24.07

Dear Jimmy,

You should use these flags just for 64 bits with bcc77 64 bits:

-workdir=
-optim-
-ldflag+=-aa

Don't use them for 32 bits
by Antonio Linares
Fri Sep 13, 2024 12:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: What is wrong with 24.07
Replies: 13
Views: 853

Re: Build your FWH app using hbmk2.exe and MSVC 32&64

Antonio Linares wrote:Hakan,

You have to add these flags in the HBP file:

-lucrt
-luxtheme

-ldflag=/NODEFAULTLIB:libucrt
-ldflag=/NODEFAULTLIB:msvcrt


Can you please send buildh32.bat with needed changed.

These errors comes also compiling buildh32 tutor02.
by Horizon
Tue Jun 04, 2024 7:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Build your FWH app using hbmk2.exe and MSVC 32&64
Replies: 48
Views: 4416

Re: Build your FWH app using hbmk2.exe and MSVC 32&64

Hakan,

You have to add these flags in the HBP file:

-lucrt
-luxtheme

-ldflag=/NODEFAULTLIB:libucrt
-ldflag=/NODEFAULTLIB:msvcrt
by Antonio Linares
Tue Jun 04, 2024 7:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Build your FWH app using hbmk2.exe and MSVC 32&64
Replies: 48
Views: 4416

Re: Silvo .. changes to your xMate environment

Hi Silvio, I use a CX.BAT and a CX.LNK, it's taking a lot of work to CLEAN up the code. I'm enjoying using these FLAGS. I don't use XMATE, I can't give my opinion. Hola Silvio, uso un CX.BAT y un CX.LNK, me está costando mucho trabajo LIMPIAR el código. Estoy disfrutando usando ...
by karinha
Tue Apr 30, 2024 6:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Silvo .. changes to your xMate environment
Replies: 26
Views: 2226

Re: Silvo .. changes to your xMate environment

   /a /m /n /gc3 /w3 /es2  Using these FLAGS, the compiler does not miss any error COMMAS, if you declare a variable and do not use it, the compilation will not pass. Incredible. It's a lot of work, but it's worth it, as your code is super clean ...
by Silvio.Falconi
Tue Apr 30, 2024 6:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Silvo .. changes to your xMate environment
Replies: 26
Views: 2226

Re: Silvo .. changes to your xMate environment

   /a /m /n /gc3 /w3 /es2  Using these FLAGS, the compiler does not miss any error COMMAS, if you declare a variable and do not use it, the compilation will not pass. Incredible. It's a lot of work, but it's worth it, as your code is ...
by karinha
Tue Apr 30, 2024 6:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Silvo .. changes to your xMate environment
Replies: 26
Views: 2226

Re: Silvo .. changes to your xMate environment

Enrico, BUILDX TUTOR04: con ES0 compila con ES2 no compila. What are the correct FLAGS, this is my question. REM %hdir%\bin\harbour %1 /n /i%fwh%\include;%hdir%\include /w3 /p %2 %3 > comp.log 2> warnings.log%hdir%\bin\harbour %1 /m /n /gc0 /w3 /es0 /i%fwh%\include;%hdir%\include ...
by karinha
Tue Apr 30, 2024 3:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Silvo .. changes to your xMate environment
Replies: 26
Views: 2226

Re: Silvo .. changes to your xMate environment

Enrico, is there any error in these FLAGS that I use?

Enrico, ¿hay algún error en estas BANDERAS que uso?

Code: Select all  Expand view

%hdir%\bin\harbour PLENOINW -n -m -w -es2 -gc0 /i%fwhdir%\include;%hdir%\include;%bcdir%\include /w3 /p  > Erro.log 2>  ERROS.LOG
 


Tks

Regards, saludos.
by karinha
Tue Apr 30, 2024 11:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Silvo .. changes to your xMate environment
Replies: 26
Views: 2226

Re: Error en librerias de Harbour MSVC

Estimado Adhemar, Tienes que enlazar la librería de MSVC ucrt.lib y añadir estos flags para el enlazador: /NODEFAULTLIB:libucrt /NODEFAULTLIB:msvcrt Ahora usamos la versión UCRT (en vez de la anterior MSVCRT) de MSVC que es más moderna y rápida Dear Antonio, You ...
by richard-service
Thu Apr 18, 2024 10:58 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en librerias de Harbour MSVC
Replies: 4
Views: 481
Next

Return to advanced search