How to create a lightweight C code sandbox?

前端 未结 13 1179
天涯浪人
天涯浪人 2020-11-29 19:43

I\'d like to build a C pre-processor / compiler that allows functions to be collected from local and online sources. ie:

#fetch MP3FileBuilder http://scripts         


        
相关标签:
13条回答
  • 2020-11-29 20:12

    Perfectly impossible. The language just doesn't work this way. The concept of classes is lost very early in most compilers, including GCC. Even if it was, there would be no way to associate each memory allocation with a live object, let alone a "module".

    0 讨论(0)
提交回复
热议问题