Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 563 Bytes

nmake-fatal-error-u1070.md

File metadata and controls

28 lines (21 loc) · 563 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: NMAKE Fatal Error U1070
NMAKE Fatal Error U1070
11/04/2016
U1070
U1070
8639fc39-b4b1-48f5-ac91-0e9fb61680fd

NMAKE Fatal Error U1070

cycle in macro definition 'macroname'

The given macro definition contained a macro whose definition contained the given macro. Circular macro definitions are invalid.

Example

The following macro definitions

ONE=$(TWO)
TWO=$(ONE)

cause the following error:

cycle in macro definition 'TWO'