Re: [hatari-devel] build fails on cirrus-ci for visualstudio target |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/hatari-devel Archives
]
- To: hatari-devel@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [hatari-devel] build fails on cirrus-ci for visualstudio target
- From: Thomas Huth <th.huth@xxxxxxxxx>
- Date: Mon, 21 Oct 2024 10:21:55 +0000
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.de; s=2017; t=1729506116; bh=Twqo0rLf6c2KH3Faow/h6SyNSUglzs1eTWPCKRb9Llk=; h=Message-ID:Date:MIME-Version:Subject:To:From:Content-Type: Content-Transfer-Encoding:From; b=cAj0vCoDEZacNuIccQr26OEfRu6uOIJCOXaRhSv3CxKMqSaWR13QqnA8B6mN/D4S/ 4tZ+k3eQGk8A1zysT9Jrzm00vO6wQuCtj3lk23/aNHgDOZlwmLXE4u1tgDP/6Afb0k Zbhznl+s67v74+uEbuoeoDnszPH/lAx0Cb6hr68sq7uEk00+0ihNfDaFcQKDwBiiLD FKGNSqD3xX1pL7ExbsPEtDnJaOO4mKq9kClMtHO/gNuMXnMOTf36a4wX9cqAbD8uKa XLGNY0rTHqYUF4Bw8emEQywnWQc5hgtgeQq5mjlrwscEDV5QDa7Uk9r4PGxYIo7/Hf TqOQekCW/tfLQ==
On 21/10/2024 11.52, Nicolas Pomarède wrote:
Hi
build fails on cirrus-ci since "Do not print 'Checking:' for each TOS file
that we load" from 2024-10-13.
https://cirrus-ci.com/build/4723926029303808
but the change in this commit has nothing to do with the error message about
"strtok_r" not being found at link time :
"C:\Users\ContainerAdministrator\AppData\Local\Temp\cirrus-ci-
build\src\hatari.vcxproj" (default target) (11) ->
(Link target) ->
keymap.obj : error LNK2019: unresolved external symbol strtok_r
referenced in function Keymap_LoadRemapFile [C:
\Users\ContainerAdministrator\AppData\Local\Temp\cirrus-ci-
build\src\hatari.vcxproj]
C:\Users\ContainerAdministrator\AppData\Local\Temp\cirrus-ci-
build\src\Release\hatari.exe : fatal error LNK1120: 1 unresolved externals
[C:\Users\ContainerAdministrator\AppData\Local\Temp\cirrus-ci-
build\src\hatari.vcxproj]
the only thing I see is that MSVC went from 19.29.30154.0 to 19.29.30156.0
when configuring the build for "visualstudio"
That strtok_r has been introduced by:
https://git.tuxfamily.org/hatari/hatari.git/commit/?id=a22de5759741eaf8c6bf95ff7a0e128d516a11e5
.... so if it is not available with MSVC, I guess we have to switch back to
the normal strtok() function?
Thomas