123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- --
- -- clang.lua
- -- Clang toolset adapter for Premake
- -- Copyright (c) 2013 Jason Perkins and the Premake project
- --
- local p = premake
- p.tools.clang = {}
- local clang = p.tools.clang
- local gcc = p.tools.gcc
- local config = p.config
- --
- -- Build a list of flags for the C preprocessor corresponding to the
- -- settings in a particular project configuration.
- --
- -- @param cfg
- -- The project configuration.
- -- @return
- -- An array of C preprocessor flags.
- --
- function clang.getcppflags(cfg)
- -- Just pass through to GCC for now
- local flags = gcc.getcppflags(cfg)
- return flags
- end
- --
- -- Build a list of C compiler flags corresponding to the settings in
- -- a particular project configuration. These flags are exclusive
- -- of the C++ compiler flags, there is no overlap.
- --
- -- @param cfg
- -- The project configuration.
- -- @return
- -- An array of C compiler flags.
- --
- clang.shared = {
- architecture = gcc.shared.architecture,
- flags = gcc.shared.flags,
- floatingpoint = {
- Fast = "-ffast-math",
- },
- strictaliasing = gcc.shared.strictaliasing,
- optimize = {
- Off = "-O0",
- On = "-O2",
- Debug = "-O0",
- Full = "-O3",
- Size = "-Os",
- Speed = "-O3",
- },
- pic = gcc.shared.pic,
- vectorextensions = gcc.shared.vectorextensions,
- isaextensions = gcc.shared.isaextensions,
- warnings = gcc.shared.warnings,
- symbols = gcc.shared.symbols,
- unsignedchar = gcc.shared.unsignedchar,
- omitframepointer = gcc.shared.omitframepointer,
- compileas = gcc.shared.compileas
- }
- clang.cflags = table.merge(gcc.cflags, {
- })
- function clang.getcflags(cfg)
- local shared = config.mapFlags(cfg, clang.shared)
- local cflags = config.mapFlags(cfg, clang.cflags)
- local flags = table.join(shared, cflags)
- flags = table.join(flags, clang.getwarnings(cfg), clang.getsystemversionflags(cfg))
- return flags
- end
- function clang.getwarnings(cfg)
- return gcc.getwarnings(cfg)
- end
- --
- -- Returns C/C++ system version related build flags
- --
- function clang.getsystemversionflags(cfg)
- local flags = {}
- if cfg.system == p.MACOSX or cfg.system == p.IOS then
- local minVersion = p.project.systemversion(cfg)
- if minVersion ~= nil then
- local name = iif(cfg.system == p.MACOSX, "macosx", "iphoneos")
- table.insert (flags, "-m" .. name .. "-version-min=" .. p.project.systemversion(cfg))
- end
- end
- return flags
- end
- --
- -- Build a list of C++ compiler flags corresponding to the settings
- -- in a particular project configuration. These flags are exclusive
- -- of the C compiler flags, there is no overlap.
- --
- -- @param cfg
- -- The project configuration.
- -- @return
- -- An array of C++ compiler flags.
- --
- clang.cxxflags = table.merge(gcc.cxxflags, {
- })
- function clang.getcxxflags(cfg)
- local shared = config.mapFlags(cfg, clang.shared)
- local cxxflags = config.mapFlags(cfg, clang.cxxflags)
- local flags = table.join(shared, cxxflags)
- flags = table.join(flags, clang.getwarnings(cfg), clang.getsystemversionflags(cfg))
- return flags
- end
- --
- -- Returns a list of defined preprocessor symbols, decorated for
- -- the compiler command line.
- --
- -- @param defines
- -- An array of preprocessor symbols to define; as an array of
- -- string values.
- -- @return
- -- An array of symbols with the appropriate flag decorations.
- --
- function clang.getdefines(defines)
- -- Just pass through to GCC for now
- local flags = gcc.getdefines(defines)
- return flags
- end
- function clang.getundefines(undefines)
- -- Just pass through to GCC for now
- local flags = gcc.getundefines(undefines)
- return flags
- end
- --
- -- Returns a list of forced include files, decorated for the compiler
- -- command line.
- --
- -- @param cfg
- -- The project configuration.
- -- @return
- -- An array of force include files with the appropriate flags.
- --
- function clang.getforceincludes(cfg)
- -- Just pass through to GCC for now
- local flags = gcc.getforceincludes(cfg)
- return flags
- end
- --
- -- Returns a list of include file search directories, decorated for
- -- the compiler command line.
- --
- -- @param cfg
- -- The project configuration.
- -- @param dirs
- -- An array of include file search directories; as an array of
- -- string values.
- -- @return
- -- An array of symbols with the appropriate flag decorations.
- --
- function clang.getincludedirs(cfg, dirs, sysdirs, frameworkdirs)
- -- Just pass through to GCC for now
- local flags = gcc.getincludedirs(cfg, dirs, sysdirs, frameworkdirs)
- return flags
- end
- clang.getrunpathdirs = gcc.getrunpathdirs
- --
- -- get the right output flag.
- --
- function clang.getsharedlibarg(cfg)
- return gcc.getsharedlibarg(cfg)
- end
- --
- -- Build a list of linker flags corresponding to the settings in
- -- a particular project configuration.
- --
- -- @param cfg
- -- The project configuration.
- -- @return
- -- An array of linker flags.
- --
- clang.ldflags = {
- architecture = {
- x86 = "-m32",
- x86_64 = "-m64",
- },
- flags = {
- LinkTimeOptimization = "-flto",
- },
- kind = {
- SharedLib = function(cfg)
- local r = { clang.getsharedlibarg(cfg) }
- if cfg.system == "windows" and not cfg.flags.NoImportLib then
- table.insert(r, '-Wl,--out-implib="' .. cfg.linktarget.relpath .. '"')
- elseif cfg.system == p.LINUX then
- table.insert(r, '-Wl,-soname=' .. p.quoted(cfg.linktarget.name))
- elseif table.contains(os.getSystemTags(cfg.system), "darwin") then
- table.insert(r, '-Wl,-install_name,' .. p.quoted('@rpath/' .. cfg.linktarget.name))
- end
- return r
- end,
- WindowedApp = function(cfg)
- if cfg.system == p.WINDOWS then return "-mwindows" end
- end,
- },
- system = {
- wii = "$(MACHDEP)",
- }
- }
- function clang.getldflags(cfg)
- local flags = config.mapFlags(cfg, clang.ldflags)
- return flags
- end
- --
- -- Build a list of additional library directories for a particular
- -- project configuration, decorated for the tool command line.
- --
- -- @param cfg
- -- The project configuration.
- -- @return
- -- An array of decorated additional library directories.
- --
- function clang.getLibraryDirectories(cfg)
- -- Just pass through to GCC for now
- local flags = gcc.getLibraryDirectories(cfg)
- return flags
- end
- --
- -- Build a list of libraries to be linked for a particular project
- -- configuration, decorated for the linker command line.
- --
- -- @param cfg
- -- The project configuration.
- -- @param systemOnly
- -- Boolean flag indicating whether to link only system libraries,
- -- or system libraries and sibling projects as well.
- -- @return
- -- A list of libraries to link, decorated for the linker.
- --
- function clang.getlinks(cfg, systemonly, nogroups)
- return gcc.getlinks(cfg, systemonly, nogroups)
- end
- --
- -- Return a list of makefile-specific configuration rules. This will
- -- be going away when I get a chance to overhaul these adapters.
- --
- -- @param cfg
- -- The project configuration.
- -- @return
- -- A list of additional makefile rules.
- --
- function clang.getmakesettings(cfg)
- -- Just pass through to GCC for now
- local flags = gcc.getmakesettings(cfg)
- return flags
- end
- --
- -- Retrieves the executable command name for a tool, based on the
- -- provided configuration and the operating environment. I will
- -- be moving these into global configuration blocks when I get
- -- the chance.
- --
- -- @param cfg
- -- The configuration to query.
- -- @param tool
- -- The tool to fetch, one of "cc" for the C compiler, "cxx" for
- -- the C++ compiler, or "ar" for the static linker.
- -- @return
- -- The executable command name for a tool, or nil if the system's
- -- default value should be used.
- --
- clang.tools = {
- cc = "clang",
- cxx = "clang++",
- ar = function(cfg) return iif(cfg.flags.LinkTimeOptimization, "llvm-ar", "ar") end
- }
- function clang.gettoolname(cfg, tool)
- local value = clang.tools[tool]
- if type(value) == "function" then
- value = value(cfg)
- end
- return value
- end
|