1. Home
  2. UE5 Compilation Errors
  3. UE5 C++ Compilation Error...
  4. LNK1120 – UE5 Unresolved externals

LNK1120 – UE5 Unresolved externals

What It Means & How to Fix It in UE5 C++


🧠 Why You’re Seeing This Error

LNK1120 is a summary linker error — it tells you that one or more symbols (functions, variables, etc.) were declared but never defined, and the linker couldn’t resolve them.

In UE5, this error always shows up after other errors like LNK2019 or LNK2001 and usually appears at the bottom of the build log.


💥 Example Error Message

fatal error LNK1120: 1 unresolved externals

🛠️ Example Scenario

You might see this after something like:

error LNK2019: unresolved external symbol "void AMyActor::DoSomething()" ...
fatal error LNK1120: 1 unresolved externals

This means the root problem is with DoSomething(), and LNK1120 is just saying:

“We couldn’t finish linking because we’re still missing 1 symbol.”


✅ How to Fix LNK1120 in UE5 – Step-by-Step


✔️ 1. Scroll Up to Find the Real Error

LNK1120 doesn’t tell you which symbol is missing — it’s just the summary. The real cause will be shown above it, usually as a LNK2001 or LNK2019.


✔️ 2. Fix the Missing Symbol(s)

Common fixes:

  • Add the missing function definition in your .cpp file
  • Define global/static variables in one place
  • Correct a function signature mismatch
  • Add missing .Build.cs module dependencies

✔️ 3. Rebuild the Project After Fixing the Symbol

Once the original error is fixed, LNK1120 will disappear automatically — it never occurs on its own.


✅ Summary: How to Fix LNK1120 in UE5

CauseFix Example
Function declared but not definedAdd the definition in the .cpp
Global/static variable undeclaredAdd int32 MyVar = 0; in one .cpp
Missing module referenceAdd module to .Build.cs
Signature mismatchEnsure header and source declarations match exactly
Was this article helpful to you? Yes No

How can we help?