Hi there
A team I support are experiencing intermittent issues with their Jenkins builds.
They are receiving this issue during compile..
*** Using Compiler 'V5.06 update 6 (build 750)', folder: 'C:\Keil_v5\ARM\ARMCC\Bin'Rebuild target 'DA14586'compiling system_DA14585_586.c...assembling startup_DA14585_586.s...startup_DA14585_586.s: Warning: A9529W: Failed to move or copy license cache file from […] to […]
I can't see any obvious reason for this happening. Any suggestions as to why? The agent is running on Windows Server 2012. If there's any more information that may assist, please let me know and Ill track it down
thanks
Hi EmileDD,Am I correct in understanding that this is 'only' a warning, and that the build does otherwise successfully complete?This is a warning regarding license server behavior to improve the overall build performance (the location of the files you obfuscated was most likely the TMP environment variable), and is an otherwise harmless warning.The easiest solution is just suppress the warning in your build (--diag_suppress=9529), which you can also do via the ARMCC5_CCOPT environment variable.Refs:http://infocenter.arm.com/help/topic/com.arm.doc.dui0496m/DUI0496M_errors_and_warnings_reference_guide.pdfhttp://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0472m/chr1359124914603.htmlhttp://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0529m/pge1399635613963.htmlRegardsRonan