Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我修改了memcached-1.4.7的源代码,但是当我尝试编译新代码时却卡住了。
我将两个文件(test.c 和 test.h)添加到源中。我修改了 items.c 来调用 test.c 提供的一些函数。现在我想编译新代码。我该怎么办?
谢谢!
在您尝试修改任何开源软件包之前,您应该始终尝试先构建一个“原始”副本。通常这是通过
./configure && make
因此,制作原始源代码的另一个副本,然后构建它。然后你可以尝试你的修改。