diff options
Diffstat (limited to 'xmake/modules/core/tools/gcc.lua')
| -rw-r--r-- | xmake/modules/core/tools/gcc.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/xmake/modules/core/tools/gcc.lua b/xmake/modules/core/tools/gcc.lua index ed8bebdbc..e27fb3401 100644 --- a/xmake/modules/core/tools/gcc.lua +++ b/xmake/modules/core/tools/gcc.lua @@ -661,6 +661,11 @@ function nf_includedir(self, dir) return {"-I" .. path.translate(dir)} end +-- make the embeddir flag +function nf_embeddir(self, dir) + return {"--embed-dir=" .. path.translate(dir)} +end + -- make the sysincludedir flag function nf_sysincludedir(self, dir) return {"-isystem", path.translate(dir)} |
