You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# E2K hack: MCST lcc compiler does not support object files greater than 4Gb due to a bug in EDG frontend
2527
-
if (CMAKE_CXX_COMPILER_ID MATCHES"LCC")
2526
+
if (CMAKE_CXX_COMPILER_ID STREQUAL"LCC")
2527
+
# E2K hack: MCST lcc compiler does not support object files greater than 4Gb due to a bug in EDG frontend
2528
2528
target_compile_options(xrGame
2529
2529
PRIVATE
2530
2530
-g0
2531
2531
)
2532
2532
message("Debug information generation is disabled for xrGame, because MCST lcc compiler does not support object files greater than 4 GB (EDG frontend bug).")
2533
+
elseif (CMAKE_CXX_COMPILER_ID STREQUAL"MSVC")
2534
+
# Especially when Unity build is enabled, xrGame exceeds .obj file format limits
0 commit comments