Adding additional libraries/includes to makefile
Adding additional libraries/includes to makefile
When I build my project, it seems to include the files in the top-level of the include directory correctly, but how can I include the content of the folders? So far I have added some arguments to the makefile that probably work (pictured below), but the tvm folder is kind of deep, and msys2 isn't picking up code from its deepest recesses when i try to compile my project.
Is there any solution to this problem that's more elegant than copypasting all the files inside the tvm folder to the top of the include directory, or adding extra arguments for every single folder path present in tvm? I'll admit I haven't spent a TON of time on this problem, but if anyone just immediately knows how to fix this problem for me it would be nice. also have some evil smilies cuz they're speaking to me rn
- Attachments
-
- Screenshot 2024-02-17 154525.png
- my modified Makefile
- (83.6 KiB) Not downloaded yet
-
- Screenshot 2024-02-17 153836.png
- include directory
- (55.47 KiB) Not downloaded yet
-
- Site Admin
- Posts: 1986
- Joined: Tue Aug 09, 2005 3:21 am
- Location: UK
- Contact:
Re: Adding additional libraries/includes to makefile
Generally additional libraries should be compiled separately to your main project which should, assuming the library has a sensible build system, produce include & lib folders containing the headers & library proper. Once you've done that you can then add the top level containing those include & lib folders to LIBDIRS in the Makefile here https://github.com/devkitPro/3ds-exampl ... le#L62-L66
Trying to shoehorn everything into your project so it's built by one of our example Makefiles is nearly always a terrible idea and copying files from other projects into yours will leave you with something that's incredibly difficult to maintain as and when those other projects get updated.
I should also probably mention that not all libraries are suitable for use on a 3DS and for some of them no amount of massaging will get them to work reasonably. An original 3DS runs at 268MHz and a new 3DS can be run at 804MHz - a far cry from the multi core multi GHz machines that are modern desktops & laptops.
Re: Adding additional libraries/includes to makefile
Thanks for your response; I thought I replied months ago but I guess not...
Anyways, The libraries I was intending to add were relay graphs and autogenerated files cross-compiled for ARM cortex A-9 (the 3ds cpu core), for the purposes of running machine learning model inference. I was able to do this successfully on the 3ds by adapting a tutorial i found.
Here's the tutorial: https://tvm.apache.org/docs/how_to/work ... m_ide.html
Here's a video of the 3ds running inference: https://www.youtube.com/watch?v=OHeZvUHVpf4
I was eventually able to include the libraries in the makefile like you suggested, but at the time of your response I was so inexperienced as to not know how to use a file path in my code.
Here is what my makefile looks like now, for anyone else who might need it:
- Attachments
-
- MakefileScreenshot.png
- (78.17 KiB) Not downloaded yet
Who is online
Users browsing this forum: No registered users and 0 guests