2011-10-05 44 views
3

在我的makefile中,我有以下目標,它使用​​將文本/ HTML資源「編譯」爲unsigned char陣列。如何以最佳方式將`__attribute__((未使用))`編程應用於這些自動生成的對象?

我將結果封裝在匿名命名空間和標題保護中,以便在翻譯單元內部和翻譯單元之間實現多重包含安全。

templates.h: 
    @echo "#ifndef TEMPLATES_H" > templates.h 
    @echo "#define TEMPLATES_H" >> templates.h 
    @echo "// Auto-generated file! Do not modify!" >> templates.h 
    @echo "// NB: arrays are not null-terminated" >> templates.h 
    @echo "// (anonymous namespace used to force internal linkage)" >> templates.h 
    @echo "namespace {" >> templates.h 
    @echo "namespace templates {" >> templates.h 
    @cd templates;\ 
    for i in * ;\ 
    do \ 
     echo "Compiling $$i...";\ 
     xxd -i $$i >> ../templates.h;\ 
    done;\ 
    cd .. 
    @echo "}" >> templates.h 
    @echo "}" >> templates.h 
    @echo "#endif" >> templates.h 

輸出,如果我剛一級這樣的資源,看起來像這樣(節錄實際內容)

#ifndef TEMPLATES_H 
#define TEMPLATES_H 
// Auto-generated file! Do not modify! 
// NB: arrays are not null-terminated 
// (anonymous namespace used to force internal linkage) 
namespace { 
namespace templates { 
unsigned char alert_email_finished_events_html[] = { 
    0x3c, 0x74, 0x61, 0x62, 0x6c, 0x0d, 0x0a 
}; 
unsigned int alert_email_finished_events_html_len = 7; 
} 
} 
#endif 

什麼將programmaticaly申請GCC的__attribute__ ((unused))這些的最佳途徑字符數組?我不想GCC警告有關我結束了在任何給定的TU不使用任何資源,但我也不想變成「未使用變量」的警告完全關閉。

+0

任何理由,你爲什麼不使用編譯'-fvisibility = hidden'只有導出這些你做的符號想要有外部聯繫?這樣你可以避免在任何地方包含模板。 –

+0

@MatthieuM。似乎很麻煩,因爲我希望在其他地方默認外部鏈接。我想要一個隻影響模板的方法,而不是別的。我並不擔心現在到處複製模板,因爲我只在一個TU中使用它們;這種方法簡單地提供了錯誤緩解,以便有人第一次來到另一個TU中並且#include''template.h'。如果它最終以很多TU結尾,那麼確定一些更聰明的東西可能是值得設計的。 –

+0

@MatthieuM。 (對方回答是,我還沒有完全「搞定」'-fvisibility =「隱藏」':P) –

回答

2

我認爲一個快速sed應該工作,因爲的xxd -i輸出是非常有規律:

xxd -i $$i | sed -e 's/ =/ __attribute__((unused)) =/' >> ../templates.h 
+0

好吃。留言Merci! –

相關問題