-
Notifications
You must be signed in to change notification settings - Fork 6
Common bugs when developing with eclipse pure variants and wacline
This bug usually occurs when you want to update the family model (*.ccfm) using the "Connector for source code management" in Pure::variants. it usually happens when we switch from operating system of the last update (e.g.: developer 1 updates using Windows, and developer 2 later updates the ccfm using MacOSX). To solve this, it is necessary to open the .ccfm file in a text editor, and remove the last path used (try to search for "RELATIVE_PATH"): After removing the highlighted path, try again to set the source input and it should work as expected.
Occurs when eclipse pure variants is closed unexpectedly.
How to solve:
- Close all instances of eclipse on task manager.
- Go to .metadata folder and remove .lock file
When opening the project in eclipse or trying to generate a product in MacOSX, the interface stops responding
It occurs when you open any pure::variants based file, because variantsd (the process that checks the pure::variants license and some others) is running using 100% of CPU and it is not responding.
How to solve:
- Force close process variantsd in activity monitor and close eclipse
- Check if ncurses is installed, run the following commands
/Applications/Eclipse.app/Contents/Eclipse/plugins/com.ps.consul.eclipse.core.macos_5.0.2.369/server/bin/swipl -x
There should appear the following error:
- Install ncurses and reference it:
brew install ncurses
sudo mkdir -p /opt/local/lib
sudo ln -s /usr/local/opt/ncurses/lib/libncurses.6.dylib /opt/local/lib/libncurses.6.dylib
After running npm install, sometimes this could happen (especially after an update in MacOSX or if gcc or similar compiler is not installed in Windows). How to solve:
- In MacOSX:
- Install xcode if not installed from the app store
- Execute
xcode-select --install
- If it shows the following error is that you have to update your MacOSX to the latest version
- Run
softwareupdate --install -a
and restart computer - Re-run
xcode-select --install