PX4 / PX4-windows-toolchain

Repo containing all scripts to install and use the PX4 Toolchain for Windows.
BSD 3-Clause "New" or "Revised" License
31 stars 100 forks source link

add gdb for windows-toolchain #9

Closed oneWayOut closed 4 years ago

oneWayOut commented 4 years ago

This PR is to solve #7. After calling this file, gcc 7.4.0 and gdb 8.1.1 is installed in my computer, and gdb works fine in simulation.

hamishwillee commented 4 years ago

@MaEtUgR Can you please review?

As and aside, the script installs default packages. Since PX4 requires certain versions - e.g. to ensure that binaries are right sizes and are reliably reproduced across platforms, shouldn't we be versioning here too?

MaEtUgR commented 4 years ago

After calling this file, gcc 7.4.0 and gdb 8.1.1 is installed in my computer

Yes, GCC version is still the same as in the current installer gdb is not in there yet and there's also new versions since I last tested. We can trigger the build for a new installer with gdb in which will then also hold updates for all the packages in use. That's a good idea thanks!

shouldn't we be versioning here too?

I once looked into that and it was not easily possible, that's why I stuck with the simple rolling release solution: You get the versions that are available when running the script but there are fixed tested ones in the latest hosted installer.

MaEtUgR commented 4 years ago

Currently building v0.6 in CI https://ci.appveyor.com/project/Dronecode/windows-toolchain/builds/27622684 EDIT: It failed because some stuff is not available anymore. Let me fix it.