开发者

Microsoft C Compiler .EC and .C source files

开发者 https://www.devze.com 2023-03-20 02:02 出处:网络
I\'ve inherited some code written for the (ancient) Micr开发者_开发知识库osoft C compiler 2.x. For each .c file, there is a .ec file of the same name. If I modify the C file and compile the code, noth

I've inherited some code written for the (ancient) Micr开发者_开发知识库osoft C compiler 2.x. For each .c file, there is a .ec file of the same name. If I modify the C file and compile the code, nothing is different, but modifications to the .ec file take effect. Upon compiling, the .c file is updated to match the changes to the .ec file.

I've scoured the Internet for information about this compiler and I can't find anything. Why is there an EC file? It doesn't seem right to modify the EC files; I must be doing something wrong. I was expecting the .c file to contain the source code.

If anyone here used this compiler "back in the day," I'd appreciate any insight/information you can provide.


The extension .ec is the old C with embedded SQL extension, and is probably unrelated to Microsoft C. Your build system probably generates the .c file from the .ec file using a preprocessor. Look for exec sql statements in the .ec file embedded inside otherwise normal looking C code. Is there a relational database hanging around?

Unlikely to have anything to do with gcc preprocessor extensions.


A .ec is an expanded c file, basically the output of the preprocessor. See http://www.network-theory.co.uk/docs/gccintro/gccintro_36.html.

Use gcc with the -e to produce this file.

0

精彩评论

暂无评论...
验证码 换一张
取 消