From bb27cdbf03508ec439816589d43e5694e447eaa9 Mon Sep 17 00:00:00 2001 From: Gabriel Domingos <30347474+gabrielrdomingos@users.noreply.github.com> Date: Mon, 12 Jun 2023 21:25:21 -0300 Subject: [PATCH 1/2] Update NLopt_on_Windows.md Added step-by-step instructions on how to install NLopt on Windows and properly configure the project to all the required files --- doc/docs/NLopt_on_Windows.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/docs/NLopt_on_Windows.md b/doc/docs/NLopt_on_Windows.md index 8ed44bdb..dfae91f9 100644 --- a/doc/docs/NLopt_on_Windows.md +++ b/doc/docs/NLopt_on_Windows.md @@ -14,6 +14,8 @@ To simplify installation, there are also precompiled 32-bit and 64-bit Windows [ These `.tar.gz` files unpack (with a variety of Windows software, e.g. 7-zip) into a folder with a `bin` subdirectory that contains `libnlopt.dll`. To link with this in your compiler, you will typically also want the [import library](https://stackoverflow.com/questions/3573475/how-does-the-import-library-work-details) for the DLL, which can be found in the `lib` subdirectory and is called `libnlopt.dll.a` (this can be used similarly to the `.lib` files you may be used to). See, in particular, [these instructions for nlopt](https://www.mathworks.com/matlabcentral/answers/380072-mex-error-undefined-reference#answer_356517). +If you need a step-by-step guide on how to install NLopt and run the [tutorial](https://nlopt.readthedocs.io/en/latest/NLopt_Tutorial/) you should check [this post](https://medium.com/@gabrielr.domingos/installing-nlopt-on-windows-and-using-it-with-c-3e84d91c8960). + Unofficial Python binaries for Windows are available from Christoph Gohike: - [Python binaries for 64-bit Windows](http://www.lfd.uci.edu/~gohlke/pythonlibs/#nlopt) From db8fd9e150d4ac278d0f205d0e1db4a935cfdb93 Mon Sep 17 00:00:00 2001 From: "Steven G. Johnson" Date: Fri, 9 Aug 2024 16:07:46 -0400 Subject: [PATCH 2/2] Update doc/docs/NLopt_on_Windows.md --- doc/docs/NLopt_on_Windows.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/docs/NLopt_on_Windows.md b/doc/docs/NLopt_on_Windows.md index dfae91f9..b8495cf2 100644 --- a/doc/docs/NLopt_on_Windows.md +++ b/doc/docs/NLopt_on_Windows.md @@ -14,7 +14,7 @@ To simplify installation, there are also precompiled 32-bit and 64-bit Windows [ These `.tar.gz` files unpack (with a variety of Windows software, e.g. 7-zip) into a folder with a `bin` subdirectory that contains `libnlopt.dll`. To link with this in your compiler, you will typically also want the [import library](https://stackoverflow.com/questions/3573475/how-does-the-import-library-work-details) for the DLL, which can be found in the `lib` subdirectory and is called `libnlopt.dll.a` (this can be used similarly to the `.lib` files you may be used to). See, in particular, [these instructions for nlopt](https://www.mathworks.com/matlabcentral/answers/380072-mex-error-undefined-reference#answer_356517). -If you need a step-by-step guide on how to install NLopt and run the [tutorial](https://nlopt.readthedocs.io/en/latest/NLopt_Tutorial/) you should check [this post](https://medium.com/@gabrielr.domingos/installing-nlopt-on-windows-and-using-it-with-c-3e84d91c8960). +If you need a step-by-step guide on how to install NLopt and run the [tutorial](https://nlopt.readthedocs.io/en/latest/NLopt_Tutorial/) you might be interested in [this blog post](https://medium.com/@gabrielr.domingos/installing-nlopt-on-windows-and-using-it-with-c-3e84d91c8960). Unofficial Python binaries for Windows are available from Christoph Gohike: