-
Hi all. I followed the dev setup and am building under Mint. (with vscode not running in a container). It seems to compile fine, without errors, either by building in terminal or through vscode (F7). But the generatet .uf2s are a fraction of the expected size when compared to the release. And of course they do not function as intended when loaded to VGA and RIA. I have not modified the source at all yet, so it's not that. In case it is any help, here is a dump of the build log: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Here is what I do: [cmake step] //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// [make step] /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// Here is the build.log generated: [results] ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// These are also much smaller than the release .7 sizes, but work fine for me. I have no idea why the ones in the release zip file are so huge. Some thoughts (without spending much time analyzing your log)
git submodule update --init |
Beta Was this translation helpful? Give feedback.
-
I figured the size discrepancy out. Turns out all other codepages than 850 are omitted by default. |
Beta Was this translation helpful? Give feedback.
Here is what I do:
[cmake step] ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
tonyvr@tonyvr-laptop:
/projects/RP6502/rp6502$ rm -r build/projects/RP6502/rp6502$ mkdir buildrm: cannot remove 'build': No such file or directory
tonyvr@tonyvr-laptop:
tonyvr@tonyvr-laptop:
/projects/RP6502/rp6502$ cd build/projects/RP6502/rp6502/build$ cmake ..tonyvr@tonyvr-laptop:
PICO_SDK_PATH is /home/tonyvr/projects/RP6502/rp6502/src/pico-sdk
Defaulting PICO_PLATFORM to rp2040 since not specified.
Defaulting PICO platform compiler to pico_arm_gcc since not specified.
-- Defaulting build type to 'R…