You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to build the example in linux (Ubuntu 22.04 - amd64). Currently, I get the following issue.
I did updated few lines of code here. This solved the issue.
Anyway, I want to double check if this is expected?
Br,
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:83:36: error: use of undeclared identifier 'malloc'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:97:5: error: use of undeclared identifier 'free'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:98:5: error: use of undeclared identifier 'free'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:110:36: error: use of undeclared identifier 'realloc'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:140:39: error: use of undeclared identifier 'malloc'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:221:40: error: use of undeclared identifier 'malloc'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:231:40: error: use of undeclared identifier 'malloc'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:241:40: error: use of undeclared identifier 'malloc'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:251:38: error: use of undeclared identifier 'malloc'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:261:39: error: use of undeclared identifier 'malloc'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:302:5: error: use of undeclared identifier 'free'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:308:5: error: use of undeclared identifier 'free'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:314:5: error: use of undeclared identifier 'free'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:320:5: error: use of undeclared identifier 'free'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:326:5: error: use of undeclared identifier 'free'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:332:5: error: use of undeclared identifier 'free'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:355:3: error: use of undeclared identifier 'free'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:885:7: error: use of undeclared identifier 'free'
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/common/webview_value.cc:905:7: error: use of undeclared identifier 'free'
fatal error: too many errors emitted, stopping now [-ferror-limit=]
/home/dxta/dev/kiosk/fl_app/linux/flutter/ephemeral/.plugin_symlinks/webview_cef/linux/webview_cef_plugin.cc:273:11: error: variable 'res' set but not used [-Werror,-Wunused-but-set-variable]
The text was updated successfully, but these errors were encountered:
@DxTa I guess it is caused by different C++ compilers.The reference to 'stdlib.h' may be necessary for some 'strict' compilers.
The function 'system' is weird that some compilers need a variable to handle the return value, i will check if there is anything wrong.
Hi,
I tried to build the example in linux (Ubuntu 22.04 - amd64). Currently, I get the following issue.
I did updated few lines of code here. This solved the issue.
Anyway, I want to double check if this is expected?
Br,
The text was updated successfully, but these errors were encountered: