Mac OS X 10.8 中編譯APUE(Unix環境進階編程)的原始碼過程_C 語言

來源:互聯網
上載者:User

最近在溫習APUE(《unix環境進階編程》),以前都是在linux下搞,現在打算在自己機器弄下,於是google了下,把編譯的事情搞定了,修改了一些教程的一些錯誤,比如下載連結之類的。

1、下載源檔案,我這裡是第二版,貌似第三版的英文版出來了。。。

複製代碼 代碼如下:

wget http://www.apuebook.com/src.2e.tar.gz

2、解壓

複製代碼 代碼如下:

tar zxf src.2e.tar.gz

3、修改些東西

複製代碼 代碼如下:

cd apue.2e/
vim Make.defines.macos
WKDIR=/Users/chenqing/apue.2e //更改到你的代碼的絕對路徑
vim include/apue.h
在第11行後加入下面三句
#ifdef MACOS
 #define _DARWIN_C_SOURCE
 #endif

4、編譯

複製代碼 代碼如下:

make all

5、複製

複製代碼 代碼如下:

sudo cp include/apue.h /usr/include/
sudo cp lib/error.c  /usr/include/

6、修改apue.h

在最後一行#endif  前面添加一行 #include “error.c”

7、測試一下

複製代碼 代碼如下:

#include <apue.h>
int main()
{
         err_sys("some error found %d",getpid());

         return 0 ;

}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.