diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-06-02 12:14:06 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-06-02 12:14:06 +0000 |
commit | dabf18ef8cf570519df0aafed80834fc322f00bb (patch) | |
tree | 324cc1111a70d5c25451fe0f90387f71a863b5b1 /testhal/LPC11xx | |
parent | 4618e775e41481cda93ceba2ddd219b1ff39e7bb (diff) | |
download | ChibiOS-dabf18ef8cf570519df0aafed80834fc322f00bb.tar.gz ChibiOS-dabf18ef8cf570519df0aafed80834fc322f00bb.tar.bz2 ChibiOS-dabf18ef8cf570519df0aafed80834fc322f00bb.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3013 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/LPC11xx')
-rw-r--r-- | testhal/LPC11xx/IRQ_STORM/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testhal/LPC11xx/IRQ_STORM/main.c b/testhal/LPC11xx/IRQ_STORM/main.c index 8d7858833..1efc169a4 100644 --- a/testhal/LPC11xx/IRQ_STORM/main.c +++ b/testhal/LPC11xx/IRQ_STORM/main.c @@ -235,9 +235,9 @@ int main(void) { println("***");
print("*** Kernel: ");
println(CH_KERNEL_VERSION);
-#ifdef __GNUC__
- print("*** GCC Version: ");
- println(__VERSION__);
+#ifdef CH_COMPILER_NAME
+ print("*** Compiler: ");
+ println(CH_COMPILER_NAME);
#endif
print("*** Architecture: ");
println(CH_ARCHITECTURE_NAME);
|