mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-12-28 10:20:36 -07:00
15 lines
342 B
C++
15 lines
342 B
C++
/**
|
|
* Use this file to dig deeper into compile issues.
|
|
*
|
|
* Usage:
|
|
* gcc -D__MARLIN_DEPS__ -E -o - buildroot/share/PlatformIO/scripts/deeper.cpp
|
|
*
|
|
* For convenience redirect output to a file or pipe to your favorite editor.
|
|
*/
|
|
|
|
#include "../../../../Marlin/src/inc/MarlinConfig.h"
|
|
|
|
int main() {
|
|
// Insert your code here
|
|
return 0;
|
|
}
|