Changeset 27128

Timestamp:
Oct 7, 2022, 9:44:40 AM (22 months ago)
Author:
Stan
Message:

Update ifdef condition for MCST-LCC compiler (E2K)
Patch by: @r-a-sattarov

Differential Revision: https://code.wildfiregames.com/D4795

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ps/trunk/source/lib/sysdep/compiler.h

    r24490 r27128  
    4343# define ICC_VERSION 0
    4444#endif
    45 // .. LCC (Win32) and MCST LCC (E2K) compilers define same identifier (__LCC__).
    46 #if defined(__LCC__) && !defined(__e2k__)
     45// .. LCC (Win32) and MCST LCC (E2K) compilers define same identifier (__LCC__)
     46#if defined(__LCC__) && !defined(____)
    4747# define LCC_VERSION __LCC__
    4848#else
    4949# define LCC_VERSION 0
    5050#endif
    51 // .. MCST LCC (eLbrus C/C++ Compiler)
    52 #if defined(__LCC__) && defined(__e2k__)
     51// .. MCST LCC ()
     52#if defined(__LCC__) && defined(____)
    5353# define MCST_LCC_VERSION (__LCC__*100 + __LCC_MINOR__)
    5454#else
Note: See TracChangeset for help on using the changeset viewer.