aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/linkers.py
AgeCommit message (Collapse)AuthorFilesLines
2018-09-20D: Fix incorrect arch handling in D linkersGoaLitiuM1-5/+4
2018-09-13D: Fix linker detection when static linker is missingGoaLitiuM1-5/+12
Fallback to using D compilers as static linkers when no suitable static linker were found.
2018-08-20Fallback to LDC as static linker when not in MSVC build environmentGoaLitiuM1-0/+49
2018-08-14Adding a new AR Linker Class for the ARM Compiler. (#3949)mohdamerkhalidi1-3/+11
2018-06-25ArLinker: Use response files on WindowsMathieu Duponchelle1-1/+1
ninja chokes when building FFmpeg's static libraries, as the command line can be larger than 32000. This was disabled on purpose in #1649, but the rsp syntax was different: this commit makes it so the options and output file are still passed on the command line, gcc-ar didn't work otherwise.
2018-04-17Add an OpenMP dependency.Elliott Sales de Andrade1-0/+6
This works similarly to the thread dependency which stores the various inconsistent flags in each compiler.
2018-03-05First cut of ARMCC support for MESON.Bedarkar, Malhar1-1/+12
Change-Id: I15d8258e84d392baaccb8f670e33eefcfe8cd49a
2017-12-07haiku: do not add pthread argumentsDylan Baker1-2/+2
Haiku has pthreads, but they are part of the standard C library, and do not need either special compiler or linker flags.
2017-12-03linkers: Return a Copy of VisualStudioLinker always_argsNirbheek Chauhan1-2/+2
Otherwise people will accidentally append to it.
2017-07-21Add build_rpath as new property allowing people to specify rpath entries ↵Jussi Pakkanen1-2/+2
that are used in the build tree but will be removed on install.
2017-06-22Split linkers out from compilers.pyAlistair Thomas1-0/+114