opciones de compilacion

Post Reply
jvargas
Posts: 63
Joined: Sun Apr 08, 2007 9:50 pm
Location: Lima Perú

opciones de compilacion

Post by jvargas »

Hola amigos del foro.
estoy compilando ABC.prg y deseo que el obj de salida sea EFG.obj,
le pongo la opcion /oEFG pero obtengo EFG.c y ABC.obj.
cual es la opcion para que el obj tenga el nombre pedido?
gracias por la respuesta
Jorge Vargas
FW-705, xHarbour 0.99.71 (SimpLex) , bcc55
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Jorge,

Code: Select all

c:\xharbour\bin\harbour abc /n /oefg.c
xHarbour Compiler build 0.99.71 (SimpLex)
Copyright 1999-2007, http://www.xharbour.org http://www.harbour-project.org/
Compiling 'abc.prg'...
Lines 4, Functions/Procedures 1
Generating C source output to 'efg.c'...
Done.
Y el fichero efg.c está en el disco. Ahora:

Code: Select all

c:\bcc55\bin\bcc32 -c -Ic:\xharbour\include efg.c
Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
efg.c:
Y el fichero efg.obj está en el disco
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply