blob: 61efc92c547e63ba575cfdc2df166121e436bff5 (
plain)
1
2
3
4
5
6
7
|
// RUN: %clang -### -target avr -no-canonical-prefixes -save-temps -mmcu=attiny13a %s 2>&1 | FileCheck --check-prefix=WARN %s
// WARN: warning: support for linking stdlibs for microcontroller 'attiny13a' is not implemented
// WARN: warning: standard library not linked and so no interrupt vector table or compiler runtime routines will be linked
int main() { return 0; }
|