News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

linking obj file generated by VC cl with linker16

Started by ggmasm32, September 20, 2015, 08:18:42 AM

Previous topic - Next topic

ggmasm32

Ok I hoped the extern question here, I put last was last, but it looks like I am becoming a prime example of "shake one's hand today and shake one's wrist tomorrow" meaninig you help one person again he will ask even more :P

Here is hopefully the last question and hope it will get you challenged:
The two c files I can compile simply by cl <file1>.c <file2>.c and it will link its own 32-bit linker automatically and will generate executable fine.
But my objective is to be able to link obj file generated by both asm and C codes and generated one file in order to continue developing in both C and asm and mix them together. So first step of doing is compile the c file to generate only object file using /c (with no link) and explicitly link with link16.exe. Now I am getting below, I am still digging around but if you got something on top of your head, I will greatly appreciate it!!


C:\git\minix.dev\exp>nmake allc

Microsoft (R) Program Maintenance Utility Version 9.00.21022.08
Copyright (C) Microsoft Corporation.  All rights reserved.

        cl /c /W3 cfile.c
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.21022.08 for 80x86
Copyright (C) Microsoft Corporation.  All rights reserved.
cfile.c
cfile.c(17) : warning C4013: 'extFcnC' undefined; assuming extern returning int
cfile.c(5) : warning C4101: 'result' : unreferenced local variable
        cl /c /W3 libc.c
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.21022.08 for 80x86
Copyright (C) Microsoft Corporation.  All rights reserved.
libc.c
libc.c(5) : warning C4101: 'result' : unreferenced local variable
        link16 cfile.obj libc.obj,,,,,

Microsoft (R) Segmented Executable Linker  Version 5.60.339 Dec  5 1994
Copyright (C) Microsoft Corp 1984-1993.  All rights reserved.

cfile.obj : fatal error L1101: invalid object module
Object file offset: 1 Record type: 4c
NMAKE : fatal error U1077: 'C:\masm32\bin\link16.EXE' : return code '0x2'
Stop.

C:\git\minix.dev\exp>


dedndave

32-bit windows uses COFF format OBJ files
16-bit DOS uses OMF format OBJ files

the two are not compatible

dedndave

try
cl /help
or
cl /?

to see if it shows command-line options
if you are, indeed, compiling 16-bit C code, it may allow a /omf switch to generate OMF OBJ's

ggmasm32

ok i did some investigation on this. thanks for help.
it seems like omf is old format and cl does not even list for that switch when i do cl /?
i even downgraded to vstudio 2003. Not much
I did supply /omf switch anyways but the file generated still seems to be an COFF format. How did I know?
beginning signature is 4C. For OMF files I'd expect one of the supported format should be 80h at the beginning. THat is what I see in the asm generated file and also from object model format specification.

I am on the hunt for C compiler that can generate omf format. I actually found Agner's objconv.exe tool which is pretty handy and it can convert from COFF to OMF.
The trouble is seems like it is removing some information from file:
the printf() statement will now cause error when I do the output of this utility.
Also program has no entry when I link.
I decided to dump this approach.

Hunt for the C compiler that can generate omf.

dedndave

i seem to recall someone saying that turbo-c ver 2.0 was out there for free
to get microsoft, i think the last 16-bit version of their compiler was MSC v 6.0 or something

Vortex

Hi ggmasm32,

You cannot link together 32 bit and 16 bit object modules even if they share the same format COFF or OMF. You need a 16 bit C\C++ compiler :

http://digitalmars.com/download/freecompiler.html

FORTRANS

Hi,

   You could participate in the "Smaller C" thread by Alexei A. Frounze
in the usenet group alt.os.development.  He is making a C compiler
for his own use.

Regards,

Steve

MichaelW

Antique Software: Turbo C version 2.01

I seem to recall that one problem with version 2.01 was that printf could not handle floating-point values. Borland had a "patch" for a later version that I had, and it corrected the problem for 2.01, so perhaps it has been added to 2.01. If not, I think you can work around the problem by converting the value to a string with an available CRT function (gcvt, if I recall correctly).
Well Microsoft, here's another nice mess you've gotten us into.

ggmasm32

Quote from: dedndave on September 20, 2015, 01:59:04 PM
i seem to recall someone saying that turbo-c ver 2.0 was out there for free
to get microsoft, i think the last 16-bit version of their compiler was MSC v 6.0 or something

i had a same feelig here. Years ago, one of our Sr. Engineers gave me "helloworld" code complete with compilers and linkers which mixed asm and c code and generated exe file. Alas, I lost it. Big mistake. I do vaguely remember there was a tlink.exe within those files. That must be turbo-c stuff. I am gonna dig more on this one.

ggmasm32

ok, i got step closer to this now:

Here is what happened. I downgraded to vs2003 did not work, always seems to  generate 32-bit by VS.
So i downloaded and installed Turbo C4 version. Configured everything including all system variables.
But damn stdio.h include issue got in the way. Basically it can not find it. Since I am not using VS, it will not seek the stdio.h in the VS include location. Configured couple of system variables including LIB, CLASSPATH and PATH to point to Turbo C's include / lib location still not work.

Screw it, I said, I commented out the "include stdio.h" and anything that uses STDIO from the code from time being (so the c file is nothing useful but file with assignment to some variables  :t) and tried to generated executable.

Now everything just same but use masm to generate asm obj file, but for C, used tcc compiler and tlink from the turbo C.

As you can see below that persistent, annoying error regarding 4c error is gone:
However it still complained about 32-bit code in the assembly which i am looking at it now.

C:\GIT\MINIX.DEV\EXP>nmake asmc

Microsoft (R) Program Maintenance Utility Version 7.10.3077
Copyright (C) Microsoft Corporation.  All rights reserved.

        c:\masm32\bin\ml /c /Fl /Zi /Zd asmfile.asm
Microsoft (R) Macro Assembler Version 6.14.8444
Copyright (C) Microsoft Corp 1981-1997.  All rights reserved.

Assembling: asmfile.asm
        tcc /c cfile.c
Turbo C++ Version 3.00 Copyright (c) 1992 Borland International
cfile.c:
Warning cfile.c 19: Function should return a value in function main
Warning cfile.c 19: 'b' is assigned a value that is never used in function main
Warning cfile.c 19: 'a' is assigned a value that is never used in function main

        Available memory 4165820
        tlink.exe asmfile.obj cfile.obj,,,,,
Turbo Link  Version 5.0 Copyright (c) 1992 Borland International
Fatal: 32-bit record encountered in module ASMFILE.ASM
NMAKE : fatal error U1077: 'tlink.exe' : return code '0x2'
Stop.

C:\GIT\MINIX.DEV\EXP>

C:\GIT\MINIX.DEV\EXP>dir *.obj
Volume in drive C has no label.
Volume Serial Number is FC76-C34F

Directory of C:\git\minix.dev\exp

11/09/2015  05:52 PM             2,083 asmfile.obj
11/09/2015  05:52 PM               236 CFILE.OBJ
               2 File(s)          2,319 bytes
               0 Dir(s)  43,573,825,536 bytes free




When comparing the asm and C object files both starts with the 80 not 4c that tells something is hopeful

C:
80 09 20 07 63 66 69 6c 65 2e 63 dc 88 1f 20 20 20 1b 54 43 38 36 20 42 6f 72 6c 61 6e 64 20 54 

asm:
80 0d 20 0b 61 73 6d 66 69 6c 65 2e 61 73 6d 18 96 20 20 20 04 44 41 54 41 03 53 54 41 04 43 4f 


dedndave

it looks like the data segment has a slightly different offset
80 09 20 is probably MOV AX,2009h
80 0d 20 is probably MOV AX,200Dh

also, some instructions may be coded more than one way

someplace, you have to tell turbo C that you want 16-bit segments
i'm not that familiar with it - played with it a little in the 80's, is all

TouEnMasm

If both c and asm are in 32 bits try to use the masm32 linker instead of
the tlink out of date.
If it failed download  an old version of vc to avoid compatibilty problems.
Fa is a musical note to play with CL

ggmasm32

ok, now i solved majority of the problems presented in the last posts:
include issue: it is very funny, there is -Ixxx switch to tell compiler to specify the include path. But somehow by default, turboc4 was installed in c:\turboc4\tc folder and no matter how I tell the compiler to include header in c:\turboc4\tc\include location it wont. Later i found this turbo.cfg file in there, there were two switches, one of them was -IC:\tc\include. I thought what the heck and copied the tc folder to root and bamn! it worked. That was hell of a bad design if it can not include from arbitrary location.

Secondly, had to supply -3 switch to linker and 32-bit code complaint is gone. Now I can build asm and c mixed executable in two ways: either main is in C or asm.
Here is the partial makefile:


CC=cl
ASM=c:\masm32\bin\ml
TCC=tcc
TLINK=tlink.exe
LINK32=link.exe
LINK16=link16.exe

LINK=link16
CFLAGS=/c /W3 /Fm
AFLAGS=/c /Fl /Zi /Zd
TCFLAGS=-c -IC:\TC\INCLUDE"
TFLAGS=/3


# ====================================
#mix of ASM and C code goes here
#casm: c code has program entry: main()
#asmc: asm code has program entry: main()

ASMC: $(ASMC).exe stat

$(ASMC).exe: $(ASMFILE).obj $(LIBC1TCC).obj
    $(TLINK) $(TFLAGS) $(ASMFILE).obj $(LIBC1TCC).obj,$(ASMC).exe,,,,

#$(ASMFILE).obj: $(ASMFILE).asm
#    $(ASM) $(AFLAGS) $(ASMFILE).asm

$(LIBC1TCC).obj: $(LIBC1).c
    $(TCC) $(TCFLAGS) /o$(LIBC1TCC).obj $(LIBC1).c

CASM: $(CASM).exe

$(CASM).exe: $(ASMFILE1).obj $(TCC_CFILE).obj stat
    $(TLINK) $(TFLAGS) $(ASMFILE1).obj $(TCC_CFILE).obj,$(CASM).exe,,,,

$(ASMFILE1).obj: $(ASMFILE1).asm
    $(ASM) $(AFLAGS) $(ASMFILE1).asm

$(TCC_CFILE).obj: $(CFILE).c
    $(TCC) $(TCFLAGS) /o$(TCC_CFILE) $(CFILE).c


For the next step, I will work to enhance the code such that, the function declared in C is called from asm and vice versa and will update the here.
Once that part is dealt with I can move on to my main project. Thanks all!

TWell

Quoteasm:
80 0d 20 0b 61 73 6d 66 69 6c 65 2e 61 73 6d 18 96 20 20 20 04 44 41 54 41 03 53 54 41 04 43 4f
Generated by HexEdit
test.obj

00000000  80 0d 20 0b 61 73 6d 66 69 6c 65 2e 61 73 6d 18  €. .asmfile.asm.
00000010  96 20 20 20 04 44 41 54 41 03 53 54 41 04 43 4f  –   .DATA.STA.CO