Compile DAVE generated code on Linux

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
User7471
Level 1
Level 1
We are building our SW, including some DAVE generated code, on Linux. This works fine, except for some modules. The PWM_SVM is one. A section in pvm_svm.h looks like this:
#include 
#include
#include "..\GLOBAL_CCU8\GLOBAL_CCU8.h"
#include
#include
#include "pwm_svm_conf.h"


To compile on Linux, this should be:
#include 
#include
#include "../GLOBAL_CCU8/global_ccu8.h"
#include
#include
#include "pwm_svm_conf.h"


File path separator should be / not \, and file name case should match the include statement.

Is it possible to ensure this for all generated code?
0 Likes
1 Reply
jferreira
Employee
Employee
10 sign-ins 5 sign-ins First like received
Hi,

Thanks for reporting the issue. The fix will be part of the upcoming release.

Regards,
Jesus
0 Likes