-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Building executables actions and scripts #69
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
We will need to check requirements.txt -e mchplnet |
* changed version number * introduced new implementation of dwarfExpr. removed all the unnecessary variables. * adding array functionality to structures. * added demo example * Feat update unit test (#64) * remove xc-16 install from github test * added pyx2cscope package install when installing from pip install -r requirements.txt, we need also to install the pyx2cscope module. This is done by pip install -e . We install it locally editable as we do by mchplnet. * including test for non-existing variable on 16 and 32 bits * test array pointer * Array elements working. * Bug Fix- Single shot working. * Feat connect without elf (#65) DummyParser does not need an elf file, instead, it returns an empty dictionary for variable_factory.py This will not break any code and will allow to use lnet functionality variable_factory.py and x2cscope.py now have methods to set external elf file after instantiation. --------- Co-authored-by: Edras Pacola <[email protected]> * changed version number checking for the differences. * unified parser is working. removed from variable_factory.py the condition below because this is done now on the device_info at mchplnet: if ( self.device_info.processor_id == "__GENERIC_MICROCHIP_DSPIC__" ): # TODO implement it better for future cores. self.device_info.uc_width = 2 --------- Co-authored-by: Yash Agarwal <[email protected]> Co-authored-by: Edras Pacola <[email protected]>
…pyx2cscope into feat-setup-executables
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Using pyinstaller for creating executables
Created Action yml
Added shortcut
Added build for Linux and WIndows
Added .spec file for pyinstaller
#29