Describes predefine macros for mbed online compiler (armcc)

Files at this revision

API Documentation at this revision

Comitter:
MACRUM
Date:
Wed Mar 11 07:00:28 2020 +0000
Parent:
10:9a8be9fef9e7
Commit message:
Minor fix

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r 9a8be9fef9e7 -r d7b5a74747b2 main.cpp
--- a/main.cpp	Wed Mar 11 06:26:11 2020 +0000
+++ b/main.cpp	Wed Mar 11 07:00:28 2020 +0000
@@ -2,8 +2,6 @@
  ******************************************************************************
  * @file    main.cpp
  * @author  Toyomasa Watarai
- * @version V1.0.0
- * @date    16 March 2017
  * @brief   armcc pre-defined macro check progmra
  ******************************************************************************
  * @attention
@@ -106,7 +104,7 @@
 #else
     printf("Built with GNU compiler\n");
 #endif
-    printf("Compatible GCC version %d.%d, clang version %s\n", __GNUC__, __GNUC_MINOR__, __VERSION__);
+    printf("Compatible GCC version %d.%d, %s\n", __GNUC__, __GNUC_MINOR__, __VERSION__);
     printf("Target ARM architecture : %d-%c\n", __ARM_ARCH, __ARM_ARCH_PROFILE);
 #else
     printf("Not build with ARM compiler\n");