Commits
Mojca Miklavec authored 272cff12359
1 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
2 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup crossgcc 1.0 |
5 5 | |
6 6 | # keep in sync with x86_64-w64-mingw32-gcc |
7 7 | set mingw_name w64-mingw32 |
8 8 | set mingw_arch i686 |
9 9 | set mingw_target ${mingw_arch}-${mingw_name} |
10 10 | |
11 - | crossgcc.setup ${mingw_target} 7.3.0 |
12 - | revision 1 |
11 + | crossgcc.setup ${mingw_target} 8.1.0 |
13 12 | crossgcc.languages {c c++ fortran objc obj-c++} |
14 13 | dist_subdir gcc[lindex [split ${version} .] 0] |
15 14 | |
16 15 | maintainers {mojca @mojca} openmaintainer |
17 16 | |
18 17 | # these are build + runtime dependencies |
19 18 | # (binutils are already added by the portgroup) |
20 19 | depends_lib-append port:${mingw_target}-headers |
21 20 | # not sure if useful: |
22 21 | # port:cloog |