<@U03L9SW4F28> Git lfs is not supported by efables...
# announcements
m
@Zexi Liu Git lfs is not supported by efabless. To solve this issue make a compressed file of your gds and upload it. For example if your gds is caravel_user_project_analog.gds compress that file and name the compressed file as "caravel_user_project_analog.gds.gz"
z
Thanks for the lead Mudassir! OK I'll compress the GDS. Then do I uncompress it under
/gds
directory?
m
No need to uncompress the file. Put the compressed gds in /gds directory.
m
There’s a target in the makefile that will do this automatically and then split the file if the compressed file is greater than 100MB.
make compress
(
make uncompress
restores everything).
z
@Mudassir Ali Thanks to you Open Galaxy seems to recognize the gds.gz file and is running precheck nicely.
👍 1
@Mitch Bailey I don't think
make compress
is defined in the current Makefile. I checked here: https://github.com/efabless/caravel_user_project_analog/blob/main/Makefile
Therefore, I just used the command line and it seems to be working
m
It’s a target in the
caravel/Makefile
which is automatically included in the
caravel_user_project_analog/Makefile
.
Copy code
# Include Caravel Makefile Targets
.PHONY: % : check-caravel
%:
        export CARAVEL_ROOT=$(CARAVEL_ROOT) && $(MAKE) -f $(CARAVEL_ROOT)/Makefile $@
z
Ahh ok thank you!