Where can i find the following DLL's?
-
- Member
- Posts: 273
- Joined: Sun Oct 09, 2016 4:38 am
- Libera.chat IRC: NunoLava1998
Where can i find the following DLL's?
I need for my Bare Bones GCC 3 libraries's:
libmpfr-4.dll
libgmp-10.dll
libmpc-3.dll
However, i do not have these by default. How do i get them (non-MinGW)?
libmpfr-4.dll
libgmp-10.dll
libmpc-3.dll
However, i do not have these by default. How do i get them (non-MinGW)?
Developing TRIODIUM OS. Or call it Dixium if you want. It doesn't matter.
https://github.com/NunoLava1998/DixiumOS
https://github.com/NunoLava1998/DixiumOS
-
- Member
- Posts: 5512
- Joined: Mon Mar 25, 2013 7:01 pm
Re: Where can i find the following DLL's?
They should have been included with your copy of GCC. If they weren't, then you need to find a different copy of GCC or build your own.
-
- Member
- Posts: 273
- Joined: Sun Oct 09, 2016 4:38 am
- Libera.chat IRC: NunoLava1998
Re: Where can i find the following DLL's?
They are not. And i cannot use something else (this is the only Windows port of the Bare Bones GCC)Octocontrabass wrote:They should have been included with your copy of GCC. If they weren't, then you need to find a different copy of GCC or build your own.
Developing TRIODIUM OS. Or call it Dixium if you want. It doesn't matter.
https://github.com/NunoLava1998/DixiumOS
https://github.com/NunoLava1998/DixiumOS
Re: Where can i find the following DLL's?
Build your own cross compiler, as per the instructions. There's little point in not following the instructions and then wondering why things don't work.
-
- Member
- Posts: 273
- Joined: Sun Oct 09, 2016 4:38 am
- Libera.chat IRC: NunoLava1998
Re: Where can i find the following DLL's?
I got a working Windows cross compiler made by Ghost (a user here on the OSDev forums). It works perfectly with the dll's. It is working (Ghost just didn't put the dll's, probably didn't know or something).iansjack wrote:Build your own cross compiler, as per the instructions. There's little point in not following the instructions and then wondering why things don't work.
Developing TRIODIUM OS. Or call it Dixium if you want. It doesn't matter.
https://github.com/NunoLava1998/DixiumOS
https://github.com/NunoLava1998/DixiumOS
- Love4Boobies
- Member
- Posts: 2111
- Joined: Fri Mar 07, 2008 5:36 pm
- Location: Bucharest, Romania
Re: Where can i find the following DLL's?
How do you know it works perfectly if you can't run it? At any rate, Linux users build software from source all the time. You, as a supposed developer, should be able to build a couple of libraries, too.
"Computers in the future may weigh no more than 1.5 tons.", Popular Mechanics (1949)
[ Project UDI ]
[ Project UDI ]
-
- Member
- Posts: 273
- Joined: Sun Oct 09, 2016 4:38 am
- Libera.chat IRC: NunoLava1998
Re: Where can i find the following DLL's?
I've had the dll's before (forgot that you needed the dll's) and deleted them. It works perfectly with the dll's.Love4Boobies wrote:How do you know it works perfectly if you can't run it? At any rate, Linux users build software from source all the time. You, as a supposed developer, should be able to build a couple of libraries, too.
Developing TRIODIUM OS. Or call it Dixium if you want. It doesn't matter.
https://github.com/NunoLava1998/DixiumOS
https://github.com/NunoLava1998/DixiumOS
-
- Member
- Posts: 501
- Joined: Wed Jun 17, 2015 9:40 am
- Libera.chat IRC: glauxosdever
- Location: Athens, Greece
Re: Where can i find the following DLL's?
Hi,
So you deleted the DLLs and then you asked us where to find them?
You should know better next time what you are doing.
Regards,
glauxosdever
So you deleted the DLLs and then you asked us where to find them?
You should know better next time what you are doing.
Regards,
glauxosdever
-
- Member
- Posts: 273
- Joined: Sun Oct 09, 2016 4:38 am
- Libera.chat IRC: NunoLava1998
Re: Where can i find the following DLL's?
I've got the dll's, and it gives me a error that usually happens with DLL's being from a source that doesn't provide the one i wanted.glauxosdever wrote:Hi,
So you deleted the DLLs and then you asked us where to find them?
You should know better next time what you are doing.
Regards,
glauxosdever
Developing TRIODIUM OS. Or call it Dixium if you want. It doesn't matter.
https://github.com/NunoLava1998/DixiumOS
https://github.com/NunoLava1998/DixiumOS
- max
- Member
- Posts: 616
- Joined: Mon Mar 05, 2012 11:23 am
- Libera.chat IRC: maxdev
- Location: Germany
- Contact:
Re: Where can i find the following DLL's?
Ghost is not a user here, it's the name of my operating system and I built that cross compiler.NunoLava1998 wrote:I got a working Windows cross compiler made by Ghost (a user here on the OSDev forums). It works perfectly with the dll's. It is working (Ghost just didn't put the dll's, probably didn't know or something).
The DLLs you where missing come from the respective libraries (MPFR, MPC and GMP) which must either A) be installed using the Cygwin installer or B) by compiling them yourself.
For a quick start you can use my compiler, but I advise you to build your own soon. You will have to do so anyway once you get more advanced.