summaryrefslogtreecommitdiff
path: root/recipes-toolchain
AgeCommit message (Collapse)AuthorFilesLines
2020-03-25replace some usage of shell.call with shell.new_callMatthew Waters3-7/+6
2020-02-25cerbero/build: Workaround MSYS trying to be too smartNirbheek Chauhan3-9/+9
Finally figured out the actual issue that I was trying to solve in f38df32d8 and 78f06dd405. Paths like `c:/foobar` (lowercase drive letter) are considered to be a POSIX path list, so `c:/foobar/` becomes `c;C:\foobar`: http://mingw.org/wiki/Posix_path_conversion This will happen anytime we try to pass a path as a command-line argument. We used to work-around this by using `to_unixpath()`, but that's just sinking deeper into dependence on broken shell behaviour. This happens now because we're passing includes in CFLAGS, CXXFLAGS, CPPFLAGS, etc. So let's just bypass the shell entirely by constructing a list. As a side-effect, this is another step towards being able to run Cerbero from a directory with spaces in it. For now, we'll convert `config_sh` to a list when not using an Autotools configure. Luckily, we don't need to pass any paths as arguments to it anyway. When running other stages, we now always use a list instead of a string. Hopefully the fallout is small and obvious for people using forks of Cerbero.
2019-10-31convert install command to asyncMatthew Waters1-0/+1
2019-06-07Upgrade toolchain to GCC 8.2.0 MinGW v6.0.0Andoni Morales Alastruey20-0/+1616