From sgougeon at free.fr Fri Mar 1 21:27:22 2019 From: sgougeon at free.fr (Samuel Gougeon) Date: Fri, 1 Mar 2019 21:27:22 +0100 Subject: [Scilab-Dev] completion() alone in [completion] => in [core] ? Message-ID: Hello Scilab devs, I am wondering why completion() is /alone/ in its module, instead of being part of [core]? Is there any technical reason? Regards Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From antoine.elias at scilab-enterprises.com Sat Mar 2 00:05:20 2019 From: antoine.elias at scilab-enterprises.com (Antoine ELIAS) Date: Sat, 2 Mar 2019 00:05:20 +0100 Subject: [Scilab-Dev] completion() alone in [completion] => in [core] ? In-Reply-To: References: Message-ID: <812ea43b-f64e-1f51-989e-edd7a95ace8c@scilab-enterprises.com> Completion is the only gateway but there is a lot of code around it and some java files and java/c wrapper. I think it was to avoid dependency between core and JVM for "no java" mode. Historically, core was the main module of Scilab ( before 6 ) and we avoided to make link from core to others modules. We do the same thing in 6 with ast module. Regards, Antoine Le 01/03/2019 ? 21:27, Samuel Gougeon a ?crit?: > Hello Scilab devs, > > I am wondering why completion() is /alone/ in its module, instead of > being part of [core]? > > Is there any technical reason? > > Regards > Samuel > > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From sylvain.corlay at gmail.com Sat Mar 2 00:41:30 2019 From: sylvain.corlay at gmail.com (SylvainCorlay) Date: Fri, 1 Mar 2019 16:41:30 -0700 (MST) Subject: [Scilab-Dev] Redirecting input and output streams Message-ID: <1551483690171-0.post@n3.nabble.com> Hello everyone, This is my first post on this mailing list. I hope that I am not breaking any rule! I am interested in embedding the scilab interpreter in a C++ application. The `call_scilab` API appears to be the wayt to go for simple code execution, however I wonder it is possible to capture / redirect output streams? The motivation is to create a kernel for Jupyter. I am aware of the existing pexpect-based kernel but I would like to create a new kernel that would be running in-process and not rely on piping to capture textual output. Note: this is something that we have already done for other languages. /xeus-cling/ is a C++ kernel based on the cling C++ interpreter from CERN. /xeus-python/ is an alternative Python kernel. Both are based on the xeus C++ implementation of the Jupyter protocol, support auto-complete, quick help, rich output display, interactive widgets. I would like to know how far we could go with the `call_scilab` API with respect to redirection, and whether there would be some means to access lower-level control on the interpreter (for e.g. inspection, auto-complete requests, getting a handle on the last value returned). Looking forward to hearing from you, although I will be travelling in the next few days. Best, -- Sent from: http://mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html From antoine.elias at scilab-enterprises.com Sat Mar 2 09:05:43 2019 From: antoine.elias at scilab-enterprises.com (Antoine ELIAS) Date: Sat, 2 Mar 2019 09:05:43 +0100 Subject: [Scilab-Dev] Redirecting input and output streams In-Reply-To: <1551483690171-0.post@n3.nabble.com> References: <1551483690171-0.post@n3.nabble.com> Message-ID: <37bbe377-e881-8a90-bba0-865ae8a57b99@scilab-enterprises.com> Hello Sylvain, You can get Scilab outputs by setting your own output function. void scilab_print(const char *text) { ??? std::cout << text << std::endl; } //redirect output to your own function: setScilabOutputMethod(&scilab_print); Commands send to call_scilab by SendScilabJob are muted ( execstr("cmd", "errcatch"); ), so to show outputs you need to explicitly call "disp" function in your code or use another mechanism to put your commands directly in queue of execution by using StoreConsoleCommand function. See attached file as example. Have a good weekend. Antoine Le 02/03/2019 ? 00:41, SylvainCorlay a ?crit?: > Hello everyone, > > This is my first post on this mailing list. I hope that I am not breaking > any rule! > > I am interested in embedding the scilab interpreter in a C++ application. > The `call_scilab` API appears to be the wayt to go for simple code > execution, however I wonder it is possible to capture / redirect output > streams? The motivation is to create a kernel for Jupyter. I am aware of the > existing pexpect-based kernel but I would like to create a new kernel that > would be running in-process and not rely on piping to capture textual > output. > > Note: this is something that we have already done for other languages. > /xeus-cling/ is a C++ kernel > > based on the cling C++ interpreter from CERN. /xeus-python/ is an > alternative Python kernel. Both are based on the xeus C++ implementation of > the Jupyter protocol, support auto-complete, quick help, rich output > display, interactive widgets. > > I would like to know how far we could go with the `call_scilab` API with > respect to redirection, and whether there would be some means to access > lower-level control on the interpreter (for e.g. inspection, auto-complete > requests, getting a handle on the last value returned). > > Looking forward to hearing from you, although I will be travelling in the > next few days. > > Best, > > > > -- > Sent from: http://mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev -------------- next part -------------- ?#include #include #include /* stderr */ #include /* stderr */ #include "call_scilab.h" #include "scilabWrite.hxx" /**/ // Filename: simple_call_scilab.c extern "C" { int StoreConsoleCommand(const char *command, int iWaitFor); } const char LAUNCHER_VERSION[] = "1.0"; #define SENDSCILABJOB(x) \ if(SendScilabJob(x) != 0) { \ fprintf(stderr, "Failed to execute \"%s\" command\n", x); \ return 0; \ } void scilab_print(const char *text) { std::cout << text << std::endl; } int main() { try { if (StartScilab(NULL, NULL, NULL) == FALSE) { fprintf(stderr, "Error while calling StartScilab\n"); return -1; } } catch (std::exception e) { fprintf(stderr, "oops: %s\n", e.what()); } //redirect output to your own function: setScilabOutputMethod(&scilab_print); /*change mode to output only outputs*/ //SENDSCILABJOB((char*)"mode(2);"); StoreConsoleCommand("1+1", 1); SENDSCILABJOB((char*)"__a__ = 1+1;disp(__a__);"); StoreConsoleCommand("rand(3, 3)", 1); SENDSCILABJOB((char*)"__a__ = rand(3, 3);disp(__a__);"); if (TerminateScilab(NULL) == FALSE) { fprintf(stderr, "Error while calling TerminateScilab\n"); return -2; } return 0; } From sylvain.corlay at gmail.com Sat Mar 2 09:15:15 2019 From: sylvain.corlay at gmail.com (Sylvain Corlay) Date: Sat, 2 Mar 2019 09:15:15 +0100 Subject: [Scilab-Dev] Redirecting input and output streams In-Reply-To: <37bbe377-e881-8a90-bba0-865ae8a57b99@scilab-enterprises.com> References: <1551483690171-0.post@n3.nabble.com> <37bbe377-e881-8a90-bba0-865ae8a57b99@scilab-enterprises.com> Message-ID: Hi Antoine, Thank you for your quick response. This is exactly what I was looking for! Cheers, On Sat, Mar 2, 2019 at 9:05 AM Antoine ELIAS < antoine.elias at scilab-enterprises.com> wrote: > Hello Sylvain, > > You can get Scilab outputs by setting your own output function. > > void scilab_print(const char *text) > { > std::cout << text << std::endl; > } > > //redirect output to your own function: > setScilabOutputMethod(&scilab_print); > > Commands send to call_scilab by SendScilabJob are muted ( execstr("cmd", > "errcatch"); ), so to show outputs you need to explicitly call "disp" > function in your code or > use another mechanism to put your commands directly in queue of > execution by using StoreConsoleCommand function. > > See attached file as example. > Have a good weekend. > Antoine > Le 02/03/2019 ? 00:41, SylvainCorlay a ?crit : > > Hello everyone, > > > > This is my first post on this mailing list. I hope that I am not breaking > > any rule! > > > > I am interested in embedding the scilab interpreter in a C++ application. > > The `call_scilab` API appears to be the wayt to go for simple code > > execution, however I wonder it is possible to capture / redirect output > > streams? The motivation is to create a kernel for Jupyter. I am aware of > the > > existing pexpect-based kernel but I would like to create a new kernel > that > > would be running in-process and not rely on piping to capture textual > > output. > > > > Note: this is something that we have already done for other languages. > > /xeus-cling/ is a C++ kernel > > < > https://blog.jupyter.org/interactive-workflows-for-c-with-jupyter-fe9b54227d92 > > > > based on the cling C++ interpreter from CERN. /xeus-python/ is an > > alternative Python kernel. Both are based on the xeus C++ implementation > of > > the Jupyter protocol, support auto-complete, quick help, rich output > > display, interactive widgets. > > > > I would like to know how far we could go with the `call_scilab` API with > > respect to redirection, and whether there would be some means to access > > lower-level control on the interpreter (for e.g. inspection, > auto-complete > > requests, getting a handle on the last value returned). > > > > Looking forward to hearing from you, although I will be travelling in the > > next few days. > > > > Best, > > > > > > > > -- > > Sent from: > http://mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html > > _______________________________________________ > > dev mailing list > > dev at lists.scilab.org > > http://lists.scilab.org/mailman/listinfo/dev > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sgougeon at free.fr Sun Mar 10 00:58:41 2019 From: sgougeon at free.fr (Samuel Gougeon) Date: Sun, 10 Mar 2019 00:58:41 +0100 Subject: [Scilab-Dev] atanh(2) changed from 5.5.2 to 6.0: intentional? Message-ID: <171e61a9-816a-7abc-5410-82c2b7803aae@free.fr> Hello, In Scilab 4.0, ... 5.1.1, ... 5.5.2, we get: --> atanh([-2 2]') ans = - 0.5493061 + 1.5707963i 0.5493061 - 1.5707963i In Scilab 6.0.x : --> atanh([-2 2]') ans = -0.5493061 + 1.5707963i 0.5493061 + 1.5707963i It is also the Octave 5.1.0 answer. Is this change intentional? If yes, the m2sci converter will have to be updated. Regards Samuel PS: with Matlab 2016: >> atanh([-2 2]') ans = -0.5493 - 1.5708i 0.5493 + 1.5708i -------------- next part -------------- An HTML attachment was scrubbed... URL: From sgougeon at free.fr Sun Mar 10 01:18:09 2019 From: sgougeon at free.fr (Samuel Gougeon) Date: Sun, 10 Mar 2019 01:18:09 +0100 Subject: [Scilab-Dev] asin(2) changed from 5.5.1 to 5.5.2: intentional? Message-ID: <02f01ac5-4f47-fcb2-1f5e-bef86296cd50@free.fr> Hello, In Scilab 4.0, ... 5.1.1, ... 5.5.1, we get: -->asin([-2,2]') ans = - 1.5707963 + 1.3169579i 1.5707963 + 1.3169579i In Scilab 5.5.2 : --> asin([-2,2]') ans = - 1.5707963 + 1.3169579i 1.5707963 - 1.3169579i It is also the Octave 5.1.0 and Matlab 2016 answer. Is this change intentional? If yes, it will have to be documented, and the m2sci converter will have to be updated. Regards Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From nick67.android at gmail.com Mon Mar 18 17:18:45 2019 From: nick67.android at gmail.com (Nicola Masarone) Date: Mon, 18 Mar 2019 09:18:45 -0700 (MST) Subject: [Scilab-Dev] Capacitor value issue Message-ID: <1552925925646-0.post@n3.nabble.com> Hi everybody,I'm just trying to use XCos with electrical components in Scilab 6.0.2, as I usually did in previous Scilab versions.I found a bug about capacitor value in the RLC circuit I attached to this post. If I use for capacitor value 10mF (i.e 10E-3) it works; if I use from 1mF (1E-3) to 100uF (100E-6) I receive an error message, attached as picture. If I use 1uF (1E-6) it works again. Same problem if I use decimal point value (0.001, 0.0001, etc.)It seems related to the capacitor value indication in the picture icon: TeXFormula: 'muF' when the software tries to apply the Farad submultiples, mixing up milli with micro (just my guess).I hope I was helpful RegardsNicola Masarone -- Sent from: http://mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From sgougeon at free.fr Thu Mar 21 00:41:41 2019 From: sgougeon at free.fr (Samuel Gougeon) Date: Thu, 21 Mar 2019 00:41:41 +0100 Subject: [Scilab-Dev] Capacitor value issue In-Reply-To: <1552925925646-0.post@n3.nabble.com> References: <1552925925646-0.post@n3.nabble.com> Message-ID: <1965049e-f37d-878b-7e2c-376f8dae53bc@free.fr> Hello Nicola, Le 18/03/2019 ? 17:18, Nicola Masarone a ?crit : > Hi everybody, I'm just trying to use XCos with electrical components > in Scilab 6.0.2, as I usually did in previous Scilab versions. I found > a bug about capacitor value in the RLC circuit I attached to this post. > [diagram] > If I use for capacitor value 10mF (i.e 10E-3) it works; if I use from > 1mF (1E-3) to 100uF (100E-6) I receive an error message, attached as > picture. > > Capacitor value error If I use 1uF (1E-6) it works again. Same problem > if I use decimal point value (0.001, 0.0001, etc.) It seems related to > the capacitor value indication in the picture icon: TeXFormula: 'muF' > when the software tries to apply the Farad submultiples, mixing up > milli with micro (just my guess). I hope I was helpful Regards Nicola > Masarone Thank you for reporting this. The issue is actually about the "\muF" unit that should be "\mu F" instead, to be a valid LaTeX input for rendering on the icon. The same issue appears for the Inductor and the Resistor, for the same range of values. These issues are being fixed on CodeReview . I don't know any workaround, except fixing the 3 files as shown on CodeReview, and recompiling the libraries of macros in the SCI/modules/scicos_blocks/macros/Electrical directory. Regards Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From nick67.android at gmail.com Thu Mar 21 19:07:26 2019 From: nick67.android at gmail.com (Nicola Masarone) Date: Thu, 21 Mar 2019 11:07:26 -0700 (MST) Subject: [Scilab-Dev] Capacitor value issue In-Reply-To: <1965049e-f37d-878b-7e2c-376f8dae53bc@free.fr> References: <1552925925646-0.post@n3.nabble.com> <1965049e-f37d-878b-7e2c-376f8dae53bc@free.fr> Message-ID: <1553191646185-0.post@n3.nabble.com> Thanks a lot for your help.RegardsNicola -- Sent from: http://mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From stephane.mottelet at utc.fr Fri Mar 22 11:10:07 2019 From: stephane.mottelet at utc.fr (=?UTF-8?Q?St=c3=a9phane_Mottelet?=) Date: Fri, 22 Mar 2019 11:10:07 +0100 Subject: [Scilab-Dev] bug or feature Message-ID: <159d879b-00f8-2881-cce6-6e5b8885b9f5@utc.fr> Hello all, Do you think that the following behavior is a bug or a feature: --> x=1 ?x? = ?? 1. --> x([])=[1,2,3] ?x? = ?? 1. ? -- St?phane Mottelet Ing?nieur de recherche EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable D?partement G?nie des Proc?d?s Industriels Sorbonne Universit?s - Universit? de Technologie de Compi?gne CS 60319, 60203 Compi?gne cedex Tel : +33(0)344234688 http://www.utc.fr/~mottelet From antoine.monmayrant at laas.fr Fri Mar 22 14:12:56 2019 From: antoine.monmayrant at laas.fr (antoine monmayrant) Date: Fri, 22 Mar 2019 14:12:56 +0100 Subject: [Scilab-Dev] bug or feature In-Reply-To: <159d879b-00f8-2881-cce6-6e5b8885b9f5@utc.fr> References: <159d879b-00f8-2881-cce6-6e5b8885b9f5@utc.fr> Message-ID: Le 22/03/2019 ? 11:10, St?phane Mottelet a ?crit?: > Hello all, > > Do you think that the following behavior is a bug or a feature: > > --> x=1 > ?x? = > > ?? 1. > > > --> x([])=[1,2,3] > ?x? = > > ?? 1. > > ? > Hello everyone, For me, it kind of makes sense not to change anything to X when assigning a value to X(range) with range an empty matrix (the assignment concerns an empty subset of X). But I don't know whether this is coherent with other features (or bugs!) of Scilab. For comparison, I tried this under octave and julia and they both raise an error. More specifically, octave complains about the size mismatch between the lhs? (0x1) and rhs (1x3). Antoine From stephane.mottelet at utc.fr Fri Mar 22 14:55:24 2019 From: stephane.mottelet at utc.fr (=?UTF-8?Q?St=c3=a9phane_Mottelet?=) Date: Fri, 22 Mar 2019 14:55:24 +0100 Subject: [Scilab-Dev] bug or feature In-Reply-To: References: <159d879b-00f8-2881-cce6-6e5b8885b9f5@utc.fr> Message-ID: <9cd4088e-6193-4a95-f94c-0f027173ffce@utc.fr> Le 22/03/2019 ? 14:12, antoine monmayrant a ?crit?: > Le 22/03/2019 ? 11:10, St?phane Mottelet a ?crit?: > >> Hello all, >> >> Do you think that the following behavior is a bug or a feature: >> >> --> x=1 >> ?x? = >> >> ?? 1. >> >> >> --> x([])=[1,2,3] >> ?x? = >> >> ?? 1. >> >> ? >> > > Hello everyone, > > For me, it kind of makes sense not to change anything to X when > assigning a value to X(range) with range an empty matrix (the > assignment concerns an empty subset of X). > But I don't know whether this is coherent with other features (or > bugs!) of Scilab. > For comparison, I tried this under octave and julia and they both > raise an error. > More specifically, octave complains about the size mismatch between > the lhs? (0x1) and rhs (1x3). Yes, same in Matlab. S. > > > Antoine > > > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev > -- St?phane Mottelet Ing?nieur de recherche EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable D?partement G?nie des Proc?d?s Industriels Sorbonne Universit?s - Universit? de Technologie de Compi?gne CS 60319, 60203 Compi?gne cedex Tel : +33(0)344234688 http://www.utc.fr/~mottelet From sgougeon at free.fr Fri Mar 22 20:04:41 2019 From: sgougeon at free.fr (Samuel Gougeon) Date: Fri, 22 Mar 2019 20:04:41 +0100 Subject: [Scilab-Dev] bug or feature In-Reply-To: References: <159d879b-00f8-2881-cce6-6e5b8885b9f5@utc.fr> Message-ID: <05bbb079-e04f-9ffd-dbf1-95050f84824c@free.fr> Le 22/03/2019 ? 14:12, antoine monmayrant a ?crit : > Le 22/03/2019 ? 11:10, St?phane Mottelet a ?crit : > >> Hello all, >> >> Do you think that the following behavior is a bug or a feature: >> >> --> x=1 >> x = >> >> 1. >> >> >> --> x([])=[1,2,3] >> x = >> >> 1. >> >> ? >> > > Hello everyone, > > For me, it kind of makes sense not to change anything to X when > assigning a value to X(range) with range an empty matrix (the > assignment concerns an empty subset of X). > But I don't know whether this is coherent with other features (or > bugs!) of Scilab. > For comparison, I tried this under octave and julia and they both > raise an error. > More specifically, octave complains about the size mismatch between > the lhs (0x1) and rhs (1x3). To me, such a complain looks rather relevant. Samuel From stephane.mottelet at utc.fr Thu Mar 28 17:56:24 2019 From: stephane.mottelet at utc.fr (=?UTF-8?Q?St=c3=a9phane_Mottelet?=) Date: Thu, 28 Mar 2019 17:56:24 +0100 Subject: [Scilab-Dev] Documentation of c++ Scilab api Message-ID: <368cc714-0db4-08fe-526c-1043d1f6f066@utc.fr> Hi all, I thought there was something in the doc about the new Scilab c++ API, aka "cppsci" in ilib_build third component of "table" argument, but I don't find anything. Is it normal or am I so stupid that I cannot find it in the doc ? S. -- St?phane Mottelet Ing?nieur de recherche EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable D?partement G?nie des Proc?d?s Industriels Sorbonne Universit?s - Universit? de Technologie de Compi?gne CS 60319, 60203 Compi?gne cedex Tel : +33(0)344234688 http://www.utc.fr/~mottelet From Clement.David at esi-group.com Fri Mar 29 09:12:34 2019 From: Clement.David at esi-group.com (=?utf-8?B?Q2zDqW1lbnQgRGF2aWQ=?=) Date: Fri, 29 Mar 2019 08:12:34 +0000 Subject: [Scilab-Dev] Documentation of c++ Scilab api In-Reply-To: <368cc714-0db4-08fe-526c-1043d1f6f066@utc.fr> References: <368cc714-0db4-08fe-526c-1043d1f6f066@utc.fr> Message-ID: Hello St?phane, AFAIK the toolbox skeleton contains at least one exemple per API (c stack-like, c and c++) but I am not sure if the documentation has been updated to have exemple for each api (including builder options) . -- Cl?ment -----Original Message----- From: dev On Behalf Of St?phane Mottelet Sent: Thursday, March 28, 2019 5:56 PM To: List dedicated to development questions Subject: [Scilab-Dev] Documentation of c++ Scilab api Hi all, I thought there was something in the doc about the new Scilab c++ API, aka "cppsci" in ilib_build third component of "table" argument, but I don't find anything. Is it normal or am I so stupid that I cannot find it in the doc ? S. -- St?phane Mottelet Ing?nieur de recherche EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable D?partement G?nie des Proc?d?s Industriels Sorbonne Universit?s - Universit? de Technologie de Compi?gne CS 60319, 60203 Compi?gne cedex Tel : +33(0)344234688 http://www.utc.fr/~mottelet _______________________________________________ dev mailing list dev at lists.scilab.org http://lists.scilab.org/mailman/listinfo/dev From sylvain.corlay at gmail.com Fri Mar 29 12:18:44 2019 From: sylvain.corlay at gmail.com (SylvainCorlay) Date: Fri, 29 Mar 2019 04:18:44 -0700 (MST) Subject: [Scilab-Dev] conda recipe for scilab Message-ID: <1553858324088-0.post@n3.nabble.com> Hello World, I have made a scilab package for the conda package manager. The built package is available on the conda-forge channel, and can be installed with The recipe is available here: https://github.com/conda-forge/scilab-feedstock. At the moment, only the "cli" tools are installed, but not the graphical UI. I am working on the OSX conda build, but finding some issues. The pull request adding the OS X build is https://github.com/conda-forge/scilab-feedstock/pull/1. The file of interest is , the rest is moslty noise from the conda-forge internals. I would love to have feedback on the recipe, and help would be super welcome on the OS X build issue. The availability of scilab on conda can be very beneficial for the adoption or the project in my opinion. Looking forward to hearing back from you, -- Sent from: http://mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html From stephane.mottelet at utc.fr Fri Mar 29 13:48:00 2019 From: stephane.mottelet at utc.fr (=?UTF-8?Q?St=c3=a9phane_Mottelet?=) Date: Fri, 29 Mar 2019 13:48:00 +0100 Subject: [Scilab-Dev] conda recipe for scilab In-Reply-To: <1553858324088-0.post@n3.nabble.com> References: <1553858324088-0.post@n3.nabble.com> Message-ID: <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> Le 29/03/2019 ? 12:18, SylvainCorlay a ?crit?: > Hello World, > > I have made a scilab package for the conda package manager. The built > package is available on the conda-forge channel, and can be installed with > > > > The recipe is available here: > https://antispam.utc.fr/proxy/2/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/github.com/conda-forge/scilab-feedstock. > > At the moment, only the "cli" tools are installed, but not the graphical UI. > I am working on the OSX conda build, but finding some issues. The pull > request adding the OS X build is > https://antispam.utc.fr/proxy/2/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/github.com/conda-forge/scilab-feedstock/pull/1. The file of interest > is , the rest is moslty noise from the conda-forge internals. > > I would love to have feedback on the recipe, and help would be super welcome > on the OS X build issue. The availability of scilab on conda can be very > beneficial for the adoption or the project in my opinion. What are your issues ? Did you have a look to this part of the Scilab wiki: https://wiki.scilab.org/Compiling%20Scilab%20under%20MacOSX ? S. > > Looking forward to hearing back from you, > > > > -- > Sent from: https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html > _______________________________________________ > dev mailing list > dev at lists.scilab.org > https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev -- St?phane Mottelet Ing?nieur de recherche EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable D?partement G?nie des Proc?d?s Industriels Sorbonne Universit?s - Universit? de Technologie de Compi?gne CS 60319, 60203 Compi?gne cedex Tel : +33(0)344234688 http://www.utc.fr/~mottelet From sylvain.corlay at gmail.com Fri Mar 29 13:53:43 2019 From: sylvain.corlay at gmail.com (SylvainCorlay) Date: Fri, 29 Mar 2019 05:53:43 -0700 (MST) Subject: [Scilab-Dev] conda recipe for scilab In-Reply-To: <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> References: <1553858324088-0.post@n3.nabble.com> <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> Message-ID: <1553864023457-0.post@n3.nabble.com> I provided a link to the PR with the full build log. It stops 20min into the build with: I have seen a few topics with dating from 2009 but this is most likely outdated. -- Sent from: http://mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html From sylvain.corlay at gmail.com Fri Mar 29 16:25:22 2019 From: sylvain.corlay at gmail.com (SylvainCorlay) Date: Fri, 29 Mar 2019 08:25:22 -0700 (MST) Subject: [Scilab-Dev] conda recipe for scilab In-Reply-To: <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> References: <1553858324088-0.post@n3.nabble.com> <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> Message-ID: <1553873122489-0.post@n3.nabble.com> I meant the build log from the the CI in the pull request. Here is a direct link: https://dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=25296&view=logs >From there you can pick the failing build and see the full log. -- Sent from: http://mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html From stephane.mottelet at utc.fr Fri Mar 29 16:33:36 2019 From: stephane.mottelet at utc.fr (=?UTF-8?Q?St=c3=a9phane_Mottelet?=) Date: Fri, 29 Mar 2019 16:33:36 +0100 Subject: [Scilab-Dev] conda recipe for scilab In-Reply-To: <1553873122489-0.post@n3.nabble.com> References: <1553858324088-0.post@n3.nabble.com> <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> <1553873122489-0.post@n3.nabble.com> Message-ID: Le 29/03/2019 ? 16:25, SylvainCorlay a ?crit?: > I meant the build log from the the CI in the pull request. > > Here is a direct link: > > https://antispam.utc.fr/proxy/2/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=25296&view=logs > > From there you can pick the failing build and see the full log. do you mean that error ? Making all in matio /bin/sh ../../libtool --tag=CXX --mode=link x86_64-apple-darwin13.4.0-clang++ -std=c++11 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -stdlib=libc++ -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 -Og -g -Wall -Wextra -I$PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -stdlib=libc++ -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 -I$PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -version-number 6:0:1 -L$PREFIX/lib -Wl,-rpath,$PREFIX/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,$PREFIX/lib -L$PREFIX/lib -L/sw//lib/ -o libscimatio-algo.la -ldl -lcurses libtool: link: warning: `-version-info/-version-number' is ignored for convenience libraries libtool: link: $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru .libs/libscimatio-algo.a x86_64-apple-darwin13.4.0-ar: no archive members specified usage: ar -d [-TLsv] archive file ... ??ar -m [-TLsv] archive file ... ??ar -m [-abiTLsv] position archive file ... ??ar -p [-TLsv] archive [file ...] ??ar -q [-cTLsv] archive file ... ??ar -r [-cuTLsv] archive file ... ??ar -r [-abciuTLsv] position archive file ... ??ar -t [-TLsv] archive [file ...] ??ar -x [-ouTLsv] archive [file ...] make[2]: *** [libscimatio-algo.la] Error 1 make[1]: *** [all-recursive] Error 1 make: *** [all-recursive] Error 1 > > > > -- > Sent from: https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html > _______________________________________________ > dev mailing list > dev at lists.scilab.org > https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev -- St?phane Mottelet Ing?nieur de recherche EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable D?partement G?nie des Proc?d?s Industriels Sorbonne Universit?s - Universit? de Technologie de Compi?gne CS 60319, 60203 Compi?gne cedex Tel : +33(0)344234688 http://www.utc.fr/~mottelet -------------- next part -------------- An HTML attachment was scrubbed... URL: From sylvain.corlay at gmail.com Fri Mar 29 16:36:19 2019 From: sylvain.corlay at gmail.com (Sylvain Corlay) Date: Fri, 29 Mar 2019 16:36:19 +0100 Subject: [Scilab-Dev] conda recipe for scilab In-Reply-To: References: <1553858324088-0.post@n3.nabble.com> <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> <1553873122489-0.post@n3.nabble.com> Message-ID: Yes, that error. You got it. On Fri, Mar 29, 2019 at 4:33 PM St?phane Mottelet wrote: > Le 29/03/2019 ? 16:25, SylvainCorlay a ?crit : > > I meant the build log from the the CI in the pull request. > > Here is a direct link: > https://antispam.utc.fr/proxy/2/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=25296&view=logs > > From there you can pick the failing build and see the full log. > > do you mean that error ? > Making all in matio > /bin/sh ../../libtool --tag=CXX --mode=link > x86_64-apple-darwin13.4.0-clang++ -std=c++11 -march=core2 -mtune=haswell > -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe > -stdlib=libc++ -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 > -Og -g -Wall -Wextra -I$PREFIX/include > -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 > -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=core2 > -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE > -fstack-protector-strong -O2 -pipe -stdlib=libc++ > -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 -I$PREFIX/include > -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 > -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -version-number > 6:0:1 -L$PREFIX/lib -Wl,-rpath,$PREFIX/lib -Wl,-pie > -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs > -Wl,-rpath,$PREFIX/lib -L$PREFIX/lib -L/sw//lib/ -o libscimatio-algo.la > -ldl -lcurses > libtool: link: warning: `-version-info/-version-number' is ignored for > convenience libraries > libtool: link: $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru > .libs/libscimatio-algo.a > x86_64-apple-darwin13.4.0-ar: no archive members specified > usage: ar -d [-TLsv] archive file ... > ar -m [-TLsv] archive file ... > ar -m [-abiTLsv] position archive file ... > ar -p [-TLsv] archive [file ...] > ar -q [-cTLsv] archive file ... > ar -r [-cuTLsv] archive file ... > ar -r [-abciuTLsv] position archive file ... > ar -t [-TLsv] archive [file ...] > ar -x [-ouTLsv] archive [file ...] > make[2]: *** [libscimatio-algo.la] Error 1 > make[1]: *** [all-recursive] Error 1 > make: *** [all-recursive] Error 1 > > > -- > Sent from: https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html > _______________________________________________ > dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev > > > -- > St?phane Mottelet > Ing?nieur de recherche > EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable > D?partement G?nie des Proc?d?s Industriels > Sorbonne Universit?s - Universit? de Technologie de Compi?gne > CS 60319, 60203 Compi?gne cedex > Tel : +33(0)344234688http://www.utc.fr/~mottelet > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From stephane.mottelet at utc.fr Fri Mar 29 16:44:18 2019 From: stephane.mottelet at utc.fr (=?UTF-8?Q?St=c3=a9phane_Mottelet?=) Date: Fri, 29 Mar 2019 16:44:18 +0100 Subject: [Scilab-Dev] conda recipe for scilab In-Reply-To: References: <1553858324088-0.post@n3.nabble.com> <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> <1553873122489-0.post@n3.nabble.com> Message-ID: <84904a9c-c726-c489-bf61-31fa1503eb29@utc.fr> Sorry, I cannot figure out in the log which version of Scilab you are building Le 29/03/2019 ? 16:36, Sylvain Corlay a ?crit?: > Yes, that error. You got it. > > On Fri, Mar 29, 2019 at 4:33 PM St?phane Mottelet > > wrote: > > Le 29/03/2019 ? 16:25, SylvainCorlay a ?crit?: >> I meant the build log from the the CI in the pull request. >> >> Here is a direct link: >> >> https://antispam.utc.fr/proxy/2/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=25296&view=logs >> >> From there you can pick the failing build and see the full log. > > do you mean that error ? > > Making all in matio > /bin/sh ../../libtool --tag=CXX --mode=link > x86_64-apple-darwin13.4.0-clang++ -std=c++11 -march=core2 > -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE > -fstack-protector-strong -O2 -pipe -stdlib=libc++ > -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 -Og -g > -Wall -Wextra -I$PREFIX/include > -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 > -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix > -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE > -fstack-protector-strong -O2 -pipe -stdlib=libc++ > -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 > -I$PREFIX/include > -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 > -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix > -version-number 6:0:1 -L$PREFIX/lib -Wl,-rpath,$PREFIX/lib > -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs > -Wl,-rpath,$PREFIX/lib -L$PREFIX/lib -L/sw//lib/ -o > libscimatio-algo.la > > -ldl -lcurses > libtool: link: warning: `-version-info/-version-number' is ignored > for convenience libraries > libtool: link: $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru > .libs/libscimatio-algo.a > x86_64-apple-darwin13.4.0-ar: no archive members specified > usage: ar -d [-TLsv] archive file ... > ??ar -m [-TLsv] archive file ... > ??ar -m [-abiTLsv] position archive file ... > ??ar -p [-TLsv] archive [file ...] > ??ar -q [-cTLsv] archive file ... > ??ar -r [-cuTLsv] archive file ... > ??ar -r [-abciuTLsv] position archive file ... > ??ar -t [-TLsv] archive [file ...] > ??ar -x [-ouTLsv] archive [file ...] > make[2]: *** [libscimatio-algo.la > ] > Error 1 > make[1]: *** [all-recursive] Error 1 > make: *** [all-recursive] Error 1 >> -- >> Sent from:https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev > > > -- > St?phane Mottelet > Ing?nieur de recherche > EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable > D?partement G?nie des Proc?d?s Industriels > Sorbonne Universit?s - Universit? de Technologie de Compi?gne > CS 60319, 60203 Compi?gne cedex > Tel : +33(0)344234688 > http://www.utc.fr/~mottelet > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev > > > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev -- St?phane Mottelet Ing?nieur de recherche EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable D?partement G?nie des Proc?d?s Industriels Sorbonne Universit?s - Universit? de Technologie de Compi?gne CS 60319, 60203 Compi?gne cedex Tel : +33(0)344234688 http://www.utc.fr/~mottelet -------------- next part -------------- An HTML attachment was scrubbed... URL: From sylvain.corlay at gmail.com Fri Mar 29 16:51:09 2019 From: sylvain.corlay at gmail.com (Sylvain Corlay) Date: Fri, 29 Mar 2019 16:51:09 +0100 Subject: [Scilab-Dev] conda recipe for scilab In-Reply-To: <84904a9c-c726-c489-bf61-31fa1503eb29@utc.fr> References: <1553858324088-0.post@n3.nabble.com> <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> <1553873122489-0.post@n3.nabble.com> <84904a9c-c726-c489-bf61-31fa1503eb29@utc.fr> Message-ID: Thanks for you response. I am building 6.0.2. As of the current version of the recipe: - The manifests for build, host and runtime dependencies is in "meta.yaml": https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/meta.yaml - The build script in "build.sh": https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/build.sh In the PR adding the OS X build - I am adding some configure flags for OSX: https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-44a73bcc045c193c3bd45da87994b03b - I am also dropping tk for OSX https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-e178b687b10a71a3348107ae3154e44c Best, On Fri, Mar 29, 2019 at 4:44 PM St?phane Mottelet wrote: > Sorry, I cannot figure out in the log which version of Scilab you are > building > > Le 29/03/2019 ? 16:36, Sylvain Corlay a ?crit : > > Yes, that error. You got it. > > On Fri, Mar 29, 2019 at 4:33 PM St?phane Mottelet < > stephane.mottelet at utc.fr> wrote: > >> Le 29/03/2019 ? 16:25, SylvainCorlay a ?crit : >> >> I meant the build log from the the CI in the pull request. >> >> Here is a direct link: >> https://antispam.utc.fr/proxy/2/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=25296&view=logs >> >> From there you can pick the failing build and see the full log. >> >> do you mean that error ? >> Making all in matio >> /bin/sh ../../libtool --tag=CXX --mode=link >> x86_64-apple-darwin13.4.0-clang++ -std=c++11 -march=core2 -mtune=haswell >> -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe >> -stdlib=libc++ -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 >> -Og -g -Wall -Wextra -I$PREFIX/include >> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=core2 >> -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE >> -fstack-protector-strong -O2 -pipe -stdlib=libc++ >> -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 -I$PREFIX/include >> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -version-number >> 6:0:1 -L$PREFIX/lib -Wl,-rpath,$PREFIX/lib -Wl,-pie >> -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs >> -Wl,-rpath,$PREFIX/lib -L$PREFIX/lib -L/sw//lib/ -o libscimatio-algo.la >> >> -ldl -lcurses >> libtool: link: warning: `-version-info/-version-number' is ignored for >> convenience libraries >> libtool: link: $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru >> .libs/libscimatio-algo.a >> x86_64-apple-darwin13.4.0-ar: no archive members specified >> usage: ar -d [-TLsv] archive file ... >> ar -m [-TLsv] archive file ... >> ar -m [-abiTLsv] position archive file ... >> ar -p [-TLsv] archive [file ...] >> ar -q [-cTLsv] archive file ... >> ar -r [-cuTLsv] archive file ... >> ar -r [-abciuTLsv] position archive file ... >> ar -t [-TLsv] archive [file ...] >> ar -x [-ouTLsv] archive [file ...] >> make[2]: *** [libscimatio-algo.la >> ] >> Error 1 >> make[1]: *** [all-recursive] Error 1 >> make: *** [all-recursive] Error 1 >> >> -- >> Sent from: https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html >> _______________________________________________ >> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >> >> >> -- >> St?phane Mottelet >> Ing?nieur de recherche >> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >> D?partement G?nie des Proc?d?s Industriels >> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >> CS 60319, 60203 Compi?gne cedex >> Tel : +33(0)344234688http://www.utc.fr/~mottelet >> >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> http://lists.scilab.org/mailman/listinfo/dev >> >> > > _______________________________________________ > dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev > > > -- > St?phane Mottelet > Ing?nieur de recherche > EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable > D?partement G?nie des Proc?d?s Industriels > Sorbonne Universit?s - Universit? de Technologie de Compi?gne > CS 60319, 60203 Compi?gne cedex > Tel : +33(0)344234688http://www.utc.fr/~mottelet > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From stephane.mottelet at utc.fr Fri Mar 29 17:15:59 2019 From: stephane.mottelet at utc.fr (=?UTF-8?Q?St=c3=a9phane_Mottelet?=) Date: Fri, 29 Mar 2019 17:15:59 +0100 Subject: [Scilab-Dev] conda recipe for scilab In-Reply-To: References: <1553858324088-0.post@n3.nabble.com> <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> <1553873122489-0.post@n3.nabble.com> <84904a9c-c726-c489-bf61-31fa1503eb29@utc.fr> Message-ID: There should be some object files as complimentary arguments in libtool: link: $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru .libs/libscimatio-algo.a that's why 'ar' complains. I think that the Makefile is already broken after the ./configure, but I cannot tell you why, since I never had this issue. S. Le 29/03/2019 ? 16:51, Sylvain Corlay a ?crit?: > Thanks for you response. I am building 6.0.2. > > As of the current version of the recipe: > - The manifests for build, host and runtime dependencies is in > "meta.yaml": > https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/meta.yaml > > - The build script in "build.sh": > https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/build.sh > > > In the PR adding the OS X build > - I am adding some configure flags for OSX: > https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-44a73bcc045c193c3bd45da87994b03b > > - I am also dropping tk for OSX > https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-e178b687b10a71a3348107ae3154e44c > > > Best, > > > > On Fri, Mar 29, 2019 at 4:44 PM St?phane Mottelet > > wrote: > > Sorry, I cannot figure out in the log which version of Scilab you > are building > > Le 29/03/2019 ? 16:36, Sylvain Corlay a ?crit?: >> Yes, that error. You got it. >> >> On Fri, Mar 29, 2019 at 4:33 PM St?phane Mottelet >> > wrote: >> >> Le 29/03/2019 ? 16:25, SylvainCorlay a ?crit?: >>> I meant the build log from the the CI in the pull request. >>> >>> Here is a direct link: >>> >>> https://antispam.utc.fr/proxy/2/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=25296&view=logs >>> >>> From there you can pick the failing build and see the full log. >> >> do you mean that error ? >> >> Making all in matio >> /bin/sh ../../libtool --tag=CXX --mode=link >> x86_64-apple-darwin13.4.0-clang++ -std=c++11 -march=core2 >> -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE >> -fstack-protector-strong -O2 -pipe -stdlib=libc++ >> -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 -Og >> -g -Wall -Wextra -I$PREFIX/include >> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix >> -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC >> -fPIE -fstack-protector-strong -O2 -pipe -stdlib=libc++ >> -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 >> -I$PREFIX/include >> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix >> -version-number 6:0:1 -L$PREFIX/lib -Wl,-rpath,$PREFIX/lib >> -Wl,-pie -Wl,-headerpad_max_install_names >> -Wl,-dead_strip_dylibs -Wl,-rpath,$PREFIX/lib -L$PREFIX/lib >> -L/sw//lib/ -o libscimatio-algo.la >> >> -ldl -lcurses >> libtool: link: warning: `-version-info/-version-number' is >> ignored for convenience libraries >> libtool: link: $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar >> cru .libs/libscimatio-algo.a >> x86_64-apple-darwin13.4.0-ar: no archive members specified >> usage: ar -d [-TLsv] archive file ... >> ??ar -m [-TLsv] archive file ... >> ??ar -m [-abiTLsv] position archive file ... >> ??ar -p [-TLsv] archive [file ...] >> ??ar -q [-cTLsv] archive file ... >> ??ar -r [-cuTLsv] archive file ... >> ??ar -r [-abciuTLsv] position archive file ... >> ??ar -t [-TLsv] archive [file ...] >> ??ar -x [-ouTLsv] archive [file ...] >> make[2]: *** [libscimatio-algo.la >> ] >> Error 1 >> make[1]: *** [all-recursive] Error 1 >> make: *** [all-recursive] Error 1 >>> -- >>> Sent from:https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html >>> _______________________________________________ >>> dev mailing list >>> dev at lists.scilab.org >>> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >> >> >> -- >> St?phane Mottelet >> Ing?nieur de recherche >> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >> D?partement G?nie des Proc?d?s Industriels >> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >> CS 60319, 60203 Compi?gne cedex >> Tel : +33(0)344234688 >> http://www.utc.fr/~mottelet >> >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> http://lists.scilab.org/mailman/listinfo/dev >> >> >> >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev > > > -- > St?phane Mottelet > Ing?nieur de recherche > EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable > D?partement G?nie des Proc?d?s Industriels > Sorbonne Universit?s - Universit? de Technologie de Compi?gne > CS 60319, 60203 Compi?gne cedex > Tel : +33(0)344234688 > http://www.utc.fr/~mottelet > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev > > > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev -- St?phane Mottelet Ing?nieur de recherche EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable D?partement G?nie des Proc?d?s Industriels Sorbonne Universit?s - Universit? de Technologie de Compi?gne CS 60319, 60203 Compi?gne cedex Tel : +33(0)344234688 http://www.utc.fr/~mottelet -------------- next part -------------- An HTML attachment was scrubbed... URL: From stephane.mottelet at utc.fr Fri Mar 29 17:27:47 2019 From: stephane.mottelet at utc.fr (=?UTF-8?Q?St=c3=a9phane_Mottelet?=) Date: Fri, 29 Mar 2019 17:27:47 +0100 Subject: [Scilab-Dev] conda recipe for scilab In-Reply-To: References: <1553858324088-0.post@n3.nabble.com> <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> <1553873122489-0.post@n3.nabble.com> <84904a9c-c726-c489-bf61-31fa1503eb29@utc.fr> Message-ID: <636ce807-af6d-a417-f2db-aa42b3ecbe58@utc.fr> Think I got it: at the end of the configure log I see: Use MATIO (--without-matio) ...................... = no Where do you set the configure flags ? S. Le 29/03/2019 ? 17:15, St?phane Mottelet a ?crit?: > There should be some object files as complimentary arguments in > > libtool: link: $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru > .libs/libscimatio-algo.a > > that's why 'ar' complains. I think that the Makefile is already broken > after the ./configure, but I cannot tell you why, since I never had > this issue. > > S. > Le 29/03/2019 ? 16:51, Sylvain Corlay a ?crit?: >> Thanks for you response. I am building 6.0.2. >> >> As of the current version of the recipe: >> - The manifests for build, host and runtime dependencies is in >> "meta.yaml": >> https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/meta.yaml >> >> - The build script in "build.sh": >> https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/build.sh >> >> >> In the PR adding the OS X build >> - I am adding some configure flags for OSX: >> https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-44a73bcc045c193c3bd45da87994b03b >> >> - I am also dropping tk for OSX >> https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-e178b687b10a71a3348107ae3154e44c >> >> >> Best, >> >> >> >> On Fri, Mar 29, 2019 at 4:44 PM St?phane Mottelet >> > wrote: >> >> Sorry, I cannot figure out in the log which version of Scilab you >> are building >> >> Le 29/03/2019 ? 16:36, Sylvain Corlay a ?crit?: >>> Yes, that error. You got it. >>> >>> On Fri, Mar 29, 2019 at 4:33 PM St?phane Mottelet >>> > wrote: >>> >>> Le 29/03/2019 ? 16:25, SylvainCorlay a ?crit?: >>>> I meant the build log from the the CI in the pull request. >>>> >>>> Here is a direct link: >>>> >>>> https://antispam.utc.fr/proxy/2/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=25296&view=logs >>>> >>>> From there you can pick the failing build and see the full log. >>> >>> do you mean that error ? >>> >>> Making all in matio >>> /bin/sh ../../libtool --tag=CXX --mode=link >>> x86_64-apple-darwin13.4.0-clang++ -std=c++11 -march=core2 >>> -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE >>> -fstack-protector-strong -O2 -pipe -stdlib=libc++ >>> -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 >>> -Og -g -Wall -Wextra -I$PREFIX/include >>> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >>> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix >>> -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC >>> -fPIE -fstack-protector-strong -O2 -pipe -stdlib=libc++ >>> -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 >>> -I$PREFIX/include >>> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >>> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix >>> -version-number 6:0:1 -L$PREFIX/lib -Wl,-rpath,$PREFIX/lib >>> -Wl,-pie -Wl,-headerpad_max_install_names >>> -Wl,-dead_strip_dylibs -Wl,-rpath,$PREFIX/lib -L$PREFIX/lib >>> -L/sw//lib/ -o libscimatio-algo.la >>> >>> -ldl -lcurses >>> libtool: link: warning: `-version-info/-version-number' is >>> ignored for convenience libraries >>> libtool: link: >>> $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru >>> .libs/libscimatio-algo.a >>> x86_64-apple-darwin13.4.0-ar: no archive members specified >>> usage: ar -d [-TLsv] archive file ... >>> ??ar -m [-TLsv] archive file ... >>> ??ar -m [-abiTLsv] position archive file ... >>> ??ar -p [-TLsv] archive [file ...] >>> ??ar -q [-cTLsv] archive file ... >>> ??ar -r [-cuTLsv] archive file ... >>> ??ar -r [-abciuTLsv] position archive file ... >>> ??ar -t [-TLsv] archive [file ...] >>> ??ar -x [-ouTLsv] archive [file ...] >>> make[2]: *** [libscimatio-algo.la >>> ] >>> Error 1 >>> make[1]: *** [all-recursive] Error 1 >>> make: *** [all-recursive] Error 1 >>>> -- >>>> Sent from:https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html >>>> _______________________________________________ >>>> dev mailing list >>>> dev at lists.scilab.org >>>> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>> >>> >>> -- >>> St?phane Mottelet >>> Ing?nieur de recherche >>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>> D?partement G?nie des Proc?d?s Industriels >>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>> CS 60319, 60203 Compi?gne cedex >>> Tel : +33(0)344234688 >>> http://www.utc.fr/~mottelet >>> >>> _______________________________________________ >>> dev mailing list >>> dev at lists.scilab.org >>> http://lists.scilab.org/mailman/listinfo/dev >>> >>> >>> >>> _______________________________________________ >>> dev mailing list >>> dev at lists.scilab.org >>> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >> >> >> -- >> St?phane Mottelet >> Ing?nieur de recherche >> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >> D?partement G?nie des Proc?d?s Industriels >> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >> CS 60319, 60203 Compi?gne cedex >> Tel : +33(0)344234688 >> http://www.utc.fr/~mottelet >> >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> http://lists.scilab.org/mailman/listinfo/dev >> >> >> >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev > > > -- > St?phane Mottelet > Ing?nieur de recherche > EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable > D?partement G?nie des Proc?d?s Industriels > Sorbonne Universit?s - Universit? de Technologie de Compi?gne > CS 60319, 60203 Compi?gne cedex > Tel : +33(0)344234688 > http://www.utc.fr/~mottelet > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev -- St?phane Mottelet Ing?nieur de recherche EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable D?partement G?nie des Proc?d?s Industriels Sorbonne Universit?s - Universit? de Technologie de Compi?gne CS 60319, 60203 Compi?gne cedex Tel : +33(0)344234688 http://www.utc.fr/~mottelet -------------- next part -------------- An HTML attachment was scrubbed... URL: From stephane.mottelet at utc.fr Fri Mar 29 17:48:04 2019 From: stephane.mottelet at utc.fr (=?UTF-8?Q?St=c3=a9phane_Mottelet?=) Date: Fri, 29 Mar 2019 17:48:04 +0100 Subject: [Scilab-Dev] conda recipe for scilab In-Reply-To: <636ce807-af6d-a417-f2db-aa42b3ecbe58@utc.fr> References: <1553858324088-0.post@n3.nabble.com> <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> <1553873122489-0.post@n3.nabble.com> <84904a9c-c726-c489-bf61-31fa1503eb29@utc.fr> <636ce807-af6d-a417-f2db-aa42b3ecbe58@utc.fr> Message-ID: <559d08f1-5ed1-581c-b295-175b35fb5341@utc.fr> You are lucky, I get the same problem if I add --without-matio to my ./configure parameters: Making all in matio /bin/sh ../../libtool? --tag=CXX?? --mode=link g++ -arch x86_64 -std=c++11 -DNDEBUG -fno-stack-protector -g -O2? -version-number 6:0:1 -L/sw//lib/ -o libscimatio-algo.la???? -ldl -lcurses libtool: link: warning: `-version-info/-version-number' is ignored for convenience libraries libtool: link: ar cru .libs/libscimatio-algo.a ar: no archive members specified usage:? ar -d [-TLsv] archive file ... ??? ar -m [-TLsv] archive file ... ??? ar -m [-abiTLsv] position archive file ... ??? ar -p [-TLsv] archive [file ...] ??? ar -q [-cTLsv] archive file ... ??? ar -r [-cuTLsv] archive file ... ??? ar -r [-abciuTLsv] position archive file ... ??? ar -t [-TLsv] archive [file ...] ??? ar -x [-ouTLsv] archive [file ...] make[1]: *** [libscimatio-algo.la] Error 1 We are going to find a solution. In the meantime, can you? remove --without-matio from your configure flags ? S. Le 29/03/2019 ? 17:27, St?phane Mottelet a ?crit?: > Think I got it: at the end of the configure log I see: > > Use MATIO (--without-matio) ...................... = no > > Where do you set the configure flags ? > > S. > > Le 29/03/2019 ? 17:15, St?phane Mottelet a ?crit?: >> There should be some object files as complimentary arguments in >> >> libtool: link: $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru >> .libs/libscimatio-algo.a >> >> that's why 'ar' complains. I think that the Makefile is already >> broken after the ./configure, but I cannot tell you why, since I >> never had this issue. >> >> S. >> Le 29/03/2019 ? 16:51, Sylvain Corlay a ?crit?: >>> Thanks for you response. I am building 6.0.2. >>> >>> As of the current version of the recipe: >>> - The manifests for build, host and runtime dependencies is in >>> "meta.yaml": >>> https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/meta.yaml >>> >>> - The build script in "build.sh": >>> https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/build.sh >>> >>> >>> In the PR adding the OS X build >>> - I am adding some configure flags for OSX: >>> https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-44a73bcc045c193c3bd45da87994b03b >>> >>> - I am also dropping tk for OSX >>> https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-e178b687b10a71a3348107ae3154e44c >>> >>> >>> Best, >>> >>> >>> >>> On Fri, Mar 29, 2019 at 4:44 PM St?phane Mottelet >>> > wrote: >>> >>> Sorry, I cannot figure out in the log which version of Scilab >>> you are building >>> >>> Le 29/03/2019 ? 16:36, Sylvain Corlay a ?crit?: >>>> Yes, that error. You got it. >>>> >>>> On Fri, Mar 29, 2019 at 4:33 PM St?phane Mottelet >>>> > wrote: >>>> >>>> Le 29/03/2019 ? 16:25, SylvainCorlay a ?crit?: >>>>> I meant the build log from the the CI in the pull request. >>>>> >>>>> Here is a direct link: >>>>> >>>>> https://antispam.utc.fr/proxy/2/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=25296&view=logs >>>>> >>>>> From there you can pick the failing build and see the full log. >>>> >>>> do you mean that error ? >>>> >>>> Making all in matio >>>> /bin/sh ../../libtool --tag=CXX --mode=link >>>> x86_64-apple-darwin13.4.0-clang++ -std=c++11 -march=core2 >>>> -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE >>>> -fstack-protector-strong -O2 -pipe -stdlib=libc++ >>>> -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 >>>> -Og -g -Wall -Wextra -I$PREFIX/include >>>> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >>>> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix >>>> -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC >>>> -fPIE -fstack-protector-strong -O2 -pipe -stdlib=libc++ >>>> -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 >>>> -I$PREFIX/include >>>> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >>>> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix >>>> -version-number 6:0:1 -L$PREFIX/lib -Wl,-rpath,$PREFIX/lib >>>> -Wl,-pie -Wl,-headerpad_max_install_names >>>> -Wl,-dead_strip_dylibs -Wl,-rpath,$PREFIX/lib -L$PREFIX/lib >>>> -L/sw//lib/ -o libscimatio-algo.la >>>> >>>> -ldl -lcurses >>>> libtool: link: warning: `-version-info/-version-number' is >>>> ignored for convenience libraries >>>> libtool: link: >>>> $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru >>>> .libs/libscimatio-algo.a >>>> x86_64-apple-darwin13.4.0-ar: no archive members specified >>>> usage: ar -d [-TLsv] archive file ... >>>> ??ar -m [-TLsv] archive file ... >>>> ??ar -m [-abiTLsv] position archive file ... >>>> ??ar -p [-TLsv] archive [file ...] >>>> ??ar -q [-cTLsv] archive file ... >>>> ??ar -r [-cuTLsv] archive file ... >>>> ??ar -r [-abciuTLsv] position archive file ... >>>> ??ar -t [-TLsv] archive [file ...] >>>> ??ar -x [-ouTLsv] archive [file ...] >>>> make[2]: *** [libscimatio-algo.la >>>> ] >>>> Error 1 >>>> make[1]: *** [all-recursive] Error 1 >>>> make: *** [all-recursive] Error 1 >>>>> -- >>>>> Sent from:https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html >>>>> _______________________________________________ >>>>> dev mailing list >>>>> dev at lists.scilab.org >>>>> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>>> >>>> >>>> -- >>>> St?phane Mottelet >>>> Ing?nieur de recherche >>>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>>> D?partement G?nie des Proc?d?s Industriels >>>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>>> CS 60319, 60203 Compi?gne cedex >>>> Tel : +33(0)344234688 >>>> http://www.utc.fr/~mottelet >>>> >>>> _______________________________________________ >>>> dev mailing list >>>> dev at lists.scilab.org >>>> http://lists.scilab.org/mailman/listinfo/dev >>>> >>>> >>>> >>>> _______________________________________________ >>>> dev mailing list >>>> dev at lists.scilab.org >>>> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>> >>> >>> -- >>> St?phane Mottelet >>> Ing?nieur de recherche >>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>> D?partement G?nie des Proc?d?s Industriels >>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>> CS 60319, 60203 Compi?gne cedex >>> Tel : +33(0)344234688 >>> http://www.utc.fr/~mottelet >>> >>> _______________________________________________ >>> dev mailing list >>> dev at lists.scilab.org >>> http://lists.scilab.org/mailman/listinfo/dev >>> >>> >>> >>> _______________________________________________ >>> dev mailing list >>> dev at lists.scilab.org >>> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >> >> >> -- >> St?phane Mottelet >> Ing?nieur de recherche >> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >> D?partement G?nie des Proc?d?s Industriels >> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >> CS 60319, 60203 Compi?gne cedex >> Tel : +33(0)344234688 >> http://www.utc.fr/~mottelet >> >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev > > > -- > St?phane Mottelet > Ing?nieur de recherche > EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable > D?partement G?nie des Proc?d?s Industriels > Sorbonne Universit?s - Universit? de Technologie de Compi?gne > CS 60319, 60203 Compi?gne cedex > Tel : +33(0)344234688 > http://www.utc.fr/~mottelet > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From sylvain.corlay at gmail.com Fri Mar 29 17:54:26 2019 From: sylvain.corlay at gmail.com (Sylvain Corlay) Date: Fri, 29 Mar 2019 17:54:26 +0100 Subject: [Scilab-Dev] conda recipe for scilab In-Reply-To: <559d08f1-5ed1-581c-b295-175b35fb5341@utc.fr> References: <1553858324088-0.post@n3.nabble.com> <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> <1553873122489-0.post@n3.nabble.com> <84904a9c-c726-c489-bf61-31fa1503eb29@utc.fr> <636ce807-af6d-a417-f2db-aa42b3ecbe58@utc.fr> <559d08f1-5ed1-581c-b295-175b35fb5341@utc.fr> Message-ID: Thanks for the heads up. I set `--without-matio` because `matio` is not yet packaged for conda-forge, but I can certainly make a recipe for it. PS: I am also not building the GUI because it requires a too-old version of openjdk. Is there a plan to update to the latest version? On Fri, Mar 29, 2019 at 5:48 PM St?phane Mottelet wrote: > You are lucky, I get the same problem if I add --without-matio to my > ./configure parameters: > > Making all in matio > /bin/sh ../../libtool --tag=CXX --mode=link g++ -arch x86_64 -std=c++11 > -DNDEBUG -fno-stack-protector -g -O2 -version-number 6:0:1 -L/sw//lib/ -o > libscimatio-algo.la -ldl -lcurses > libtool: link: warning: `-version-info/-version-number' is ignored for > convenience libraries > libtool: link: ar cru .libs/libscimatio-algo.a > ar: no archive members specified > usage: ar -d [-TLsv] archive file ... > ar -m [-TLsv] archive file ... > ar -m [-abiTLsv] position archive file ... > ar -p [-TLsv] archive [file ...] > ar -q [-cTLsv] archive file ... > ar -r [-cuTLsv] archive file ... > ar -r [-abciuTLsv] position archive file ... > ar -t [-TLsv] archive [file ...] > ar -x [-ouTLsv] archive [file ...] > make[1]: *** [libscimatio-algo.la] Error 1 > > We are going to find a solution. In the meantime, can you remove > --without-matio from your configure flags ? > > S. > Le 29/03/2019 ? 17:27, St?phane Mottelet a ?crit : > > Think I got it: at the end of the configure log I see: > > Use MATIO (--without-matio) ...................... = no > > Where do you set the configure flags ? > > S. > > Le 29/03/2019 ? 17:15, St?phane Mottelet a ?crit : > > There should be some object files as complimentary arguments in > > libtool: link: $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru > .libs/libscimatio-algo.a > > that's why 'ar' complains. I think that the Makefile is already broken > after the ./configure, but I cannot tell you why, since I never had this > issue. > > S. > Le 29/03/2019 ? 16:51, Sylvain Corlay a ?crit : > > Thanks for you response. I am building 6.0.2. > > As of the current version of the recipe: > - The manifests for build, host and runtime dependencies is in "meta.yaml": > > https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/meta.yaml > > - The build script in "build.sh": > https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/build.sh > > > In the PR adding the OS X build > - I am adding some configure flags for OSX: > > https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-44a73bcc045c193c3bd45da87994b03b > > - I am also dropping tk for OSX > > https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-e178b687b10a71a3348107ae3154e44c > > > Best, > > > > On Fri, Mar 29, 2019 at 4:44 PM St?phane Mottelet < > stephane.mottelet at utc.fr> wrote: > >> Sorry, I cannot figure out in the log which version of Scilab you are >> building >> >> Le 29/03/2019 ? 16:36, Sylvain Corlay a ?crit : >> >> Yes, that error. You got it. >> >> On Fri, Mar 29, 2019 at 4:33 PM St?phane Mottelet < >> stephane.mottelet at utc.fr> wrote: >> >>> Le 29/03/2019 ? 16:25, SylvainCorlay a ?crit : >>> >>> I meant the build log from the the CI in the pull request. >>> >>> Here is a direct link: >>> https://antispam.utc.fr/proxy/2/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=25296&view=logs >>> >>> From there you can pick the failing build and see the full log. >>> >>> do you mean that error ? >>> Making all in matio >>> /bin/sh ../../libtool --tag=CXX --mode=link >>> x86_64-apple-darwin13.4.0-clang++ -std=c++11 -march=core2 -mtune=haswell >>> -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe >>> -stdlib=libc++ -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 >>> -Og -g -Wall -Wextra -I$PREFIX/include >>> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >>> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=core2 >>> -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE >>> -fstack-protector-strong -O2 -pipe -stdlib=libc++ >>> -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 -I$PREFIX/include >>> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >>> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -version-number >>> 6:0:1 -L$PREFIX/lib -Wl,-rpath,$PREFIX/lib -Wl,-pie >>> -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs >>> -Wl,-rpath,$PREFIX/lib -L$PREFIX/lib -L/sw//lib/ -o libscimatio-algo.la >>> >>> -ldl -lcurses >>> libtool: link: warning: `-version-info/-version-number' is ignored for >>> convenience libraries >>> libtool: link: $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru >>> .libs/libscimatio-algo.a >>> x86_64-apple-darwin13.4.0-ar: no archive members specified >>> usage: ar -d [-TLsv] archive file ... >>> ar -m [-TLsv] archive file ... >>> ar -m [-abiTLsv] position archive file ... >>> ar -p [-TLsv] archive [file ...] >>> ar -q [-cTLsv] archive file ... >>> ar -r [-cuTLsv] archive file ... >>> ar -r [-abciuTLsv] position archive file ... >>> ar -t [-TLsv] archive [file ...] >>> ar -x [-ouTLsv] archive [file ...] >>> make[2]: *** [libscimatio-algo.la >>> ] >>> Error 1 >>> make[1]: *** [all-recursive] Error 1 >>> make: *** [all-recursive] Error 1 >>> >>> -- >>> Sent from: https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html >>> _______________________________________________ >>> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>> >>> >>> -- >>> St?phane Mottelet >>> Ing?nieur de recherche >>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>> D?partement G?nie des Proc?d?s Industriels >>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>> CS 60319, 60203 Compi?gne cedex >>> Tel : +33(0)344234688http://www.utc.fr/~mottelet >>> >>> _______________________________________________ >>> dev mailing list >>> dev at lists.scilab.org >>> http://lists.scilab.org/mailman/listinfo/dev >>> >>> >> >> _______________________________________________ >> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >> >> >> -- >> St?phane Mottelet >> Ing?nieur de recherche >> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >> D?partement G?nie des Proc?d?s Industriels >> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >> CS 60319, 60203 Compi?gne cedex >> Tel : +33(0)344234688http://www.utc.fr/~mottelet >> >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> http://lists.scilab.org/mailman/listinfo/dev >> >> > > _______________________________________________ > dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev > > > -- > St?phane Mottelet > Ing?nieur de recherche > EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable > D?partement G?nie des Proc?d?s Industriels > Sorbonne Universit?s - Universit? de Technologie de Compi?gne > CS 60319, 60203 Compi?gne cedex > Tel : +33(0)344234688http://www.utc.fr/~mottelet > > > _______________________________________________ > dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev > > > -- > St?phane Mottelet > Ing?nieur de recherche > EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable > D?partement G?nie des Proc?d?s Industriels > Sorbonne Universit?s - Universit? de Technologie de Compi?gne > CS 60319, 60203 Compi?gne cedex > Tel : +33(0)344234688http://www.utc.fr/~mottelet > > > _______________________________________________ > dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From stephane.mottelet at utc.fr Fri Mar 29 17:57:36 2019 From: stephane.mottelet at utc.fr (=?UTF-8?Q?St=c3=a9phane_Mottelet?=) Date: Fri, 29 Mar 2019 17:57:36 +0100 Subject: [Scilab-Dev] conda recipe for scilab In-Reply-To: References: <1553858324088-0.post@n3.nabble.com> <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> <1553873122489-0.post@n3.nabble.com> <84904a9c-c726-c489-bf61-31fa1503eb29@utc.fr> <636ce807-af6d-a417-f2db-aa42b3ecbe58@utc.fr> <559d08f1-5ed1-581c-b295-175b35fb5341@utc.fr> Message-ID: Le 29/03/2019 ? 17:54, Sylvain Corlay a ?crit?: > Thanks for the heads up. > > I set `--without-matio` because `matio` is not yet packaged for > conda-forge, but I can certainly make a recipe for it. > > PS: I am also not building the GUI because it requires a too-old > version of openjdk. Is there a plan to update to the latest version? you mean 11 ? > > On Fri, Mar 29, 2019 at 5:48 PM St?phane Mottelet > > wrote: > > You are lucky, I get the same problem if I add --without-matio to > my ./configure parameters: > > Making all in matio > /bin/sh ../../libtool? --tag=CXX?? --mode=link g++ -arch x86_64 > -std=c++11 -DNDEBUG -fno-stack-protector -g -O2 -version-number > 6:0:1 -L/sw//lib/ -o libscimatio-algo.la > > -ldl -lcurses > libtool: link: warning: `-version-info/-version-number' is ignored > for convenience libraries > libtool: link: ar cru .libs/libscimatio-algo.a > ar: no archive members specified > usage:? ar -d [-TLsv] archive file ... > ??? ar -m [-TLsv] archive file ... > ??? ar -m [-abiTLsv] position archive file ... > ??? ar -p [-TLsv] archive [file ...] > ??? ar -q [-cTLsv] archive file ... > ??? ar -r [-cuTLsv] archive file ... > ??? ar -r [-abciuTLsv] position archive file ... > ??? ar -t [-TLsv] archive [file ...] > ??? ar -x [-ouTLsv] archive [file ...] > make[1]: *** [libscimatio-algo.la > ] > Error 1 > > We are going to find a solution. In the meantime, can you? remove > --without-matio from your configure flags ? > > S. > > Le 29/03/2019 ? 17:27, St?phane Mottelet a ?crit?: >> Think I got it: at the end of the configure log I see: >> >> Use MATIO (--without-matio) ...................... = no >> >> Where do you set the configure flags ? >> >> S. >> >> Le 29/03/2019 ? 17:15, St?phane Mottelet a ?crit?: >>> There should be some object files as complimentary arguments in >>> >>> libtool: link: $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar >>> cru .libs/libscimatio-algo.a >>> >>> that's why 'ar' complains. I think that the Makefile is already >>> broken after the ./configure, but I cannot tell you why, since I >>> never had this issue. >>> >>> S. >>> Le 29/03/2019 ? 16:51, Sylvain Corlay a ?crit?: >>>> Thanks for you response. I am building 6.0.2. >>>> >>>> As of the current version of the recipe: >>>> - The manifests for build, host and runtime dependencies is in >>>> "meta.yaml": >>>> https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/meta.yaml >>>> >>>> - The build script in "build.sh": >>>> https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/build.sh >>>> >>>> >>>> In the PR adding the OS X build >>>> - I am adding some configure flags for OSX: >>>> https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-44a73bcc045c193c3bd45da87994b03b >>>> >>>> - I am also dropping tk for OSX >>>> https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-e178b687b10a71a3348107ae3154e44c >>>> >>>> >>>> Best, >>>> >>>> >>>> >>>> On Fri, Mar 29, 2019 at 4:44 PM St?phane Mottelet >>>> > wrote: >>>> >>>> Sorry, I cannot figure out in the log which version of >>>> Scilab you are building >>>> >>>> Le 29/03/2019 ? 16:36, Sylvain Corlay a ?crit?: >>>>> Yes, that error. You got it. >>>>> >>>>> On Fri, Mar 29, 2019 at 4:33 PM St?phane Mottelet >>>>> >>>> > wrote: >>>>> >>>>> Le 29/03/2019 ? 16:25, SylvainCorlay a ?crit?: >>>>>> I meant the build log from the the CI in the pull request. >>>>>> >>>>>> Here is a direct link: >>>>>> >>>>>> https://antispam.utc.fr/proxy/2/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=25296&view=logs >>>>>> >>>>>> From there you can pick the failing build and see the full log. >>>>> >>>>> do you mean that error ? >>>>> >>>>> Making all in matio >>>>> /bin/sh ../../libtool --tag=CXX --mode=link >>>>> x86_64-apple-darwin13.4.0-clang++ -std=c++11 >>>>> -march=core2 -mtune=haswell -mssse3 -ftree-vectorize >>>>> -fPIC -fPIE -fstack-protector-strong -O2 -pipe >>>>> -stdlib=libc++ -fvisibility-inlines-hidden -std=c++14 >>>>> -fmessage-length=0 -Og -g -Wall -Wextra >>>>> -I$PREFIX/include >>>>> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >>>>> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix >>>>> -march=core2 -mtune=haswell -mssse3 -ftree-vectorize >>>>> -fPIC -fPIE -fstack-protector-strong -O2 -pipe >>>>> -stdlib=libc++ -fvisibility-inlines-hidden -std=c++14 >>>>> -fmessage-length=0 -I$PREFIX/include >>>>> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >>>>> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix >>>>> -version-number 6:0:1 -L$PREFIX/lib >>>>> -Wl,-rpath,$PREFIX/lib -Wl,-pie >>>>> -Wl,-headerpad_max_install_names >>>>> -Wl,-dead_strip_dylibs -Wl,-rpath,$PREFIX/lib >>>>> -L$PREFIX/lib -L/sw//lib/ -o libscimatio-algo.la >>>>> >>>>> -ldl -lcurses >>>>> libtool: link: warning: >>>>> `-version-info/-version-number' is ignored for >>>>> convenience libraries >>>>> libtool: link: >>>>> $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru >>>>> .libs/libscimatio-algo.a >>>>> x86_64-apple-darwin13.4.0-ar: no archive members specified >>>>> usage: ar -d [-TLsv] archive file ... >>>>> ??ar -m [-TLsv] archive file ... >>>>> ??ar -m [-abiTLsv] position archive file ... >>>>> ??ar -p [-TLsv] archive [file ...] >>>>> ??ar -q [-cTLsv] archive file ... >>>>> ??ar -r [-cuTLsv] archive file ... >>>>> ??ar -r [-abciuTLsv] position archive file ... >>>>> ??ar -t [-TLsv] archive [file ...] >>>>> ??ar -x [-ouTLsv] archive [file ...] >>>>> make[2]: *** [libscimatio-algo.la >>>>> ] >>>>> Error 1 >>>>> make[1]: *** [all-recursive] Error 1 >>>>> make: *** [all-recursive] Error 1 >>>>>> -- >>>>>> Sent from:https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html >>>>>> _______________________________________________ >>>>>> dev mailing list >>>>>> dev at lists.scilab.org >>>>>> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>>>> >>>>> >>>>> -- >>>>> St?phane Mottelet >>>>> Ing?nieur de recherche >>>>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>>>> D?partement G?nie des Proc?d?s Industriels >>>>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>>>> CS 60319, 60203 Compi?gne cedex >>>>> Tel : +33(0)344234688 >>>>> http://www.utc.fr/~mottelet >>>>> >>>>> _______________________________________________ >>>>> dev mailing list >>>>> dev at lists.scilab.org >>>>> http://lists.scilab.org/mailman/listinfo/dev >>>>> >>>>> >>>>> >>>>> _______________________________________________ >>>>> dev mailing list >>>>> dev at lists.scilab.org >>>>> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>>> >>>> >>>> -- >>>> St?phane Mottelet >>>> Ing?nieur de recherche >>>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>>> D?partement G?nie des Proc?d?s Industriels >>>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>>> CS 60319, 60203 Compi?gne cedex >>>> Tel : +33(0)344234688 >>>> http://www.utc.fr/~mottelet >>>> >>>> _______________________________________________ >>>> dev mailing list >>>> dev at lists.scilab.org >>>> http://lists.scilab.org/mailman/listinfo/dev >>>> >>>> >>>> >>>> _______________________________________________ >>>> dev mailing list >>>> dev at lists.scilab.org >>>> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>> >>> >>> -- >>> St?phane Mottelet >>> Ing?nieur de recherche >>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>> D?partement G?nie des Proc?d?s Industriels >>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>> CS 60319, 60203 Compi?gne cedex >>> Tel : +33(0)344234688 >>> http://www.utc.fr/~mottelet >>> >>> _______________________________________________ >>> dev mailing list >>> dev at lists.scilab.org >>> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >> >> >> -- >> St?phane Mottelet >> Ing?nieur de recherche >> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >> D?partement G?nie des Proc?d?s Industriels >> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >> CS 60319, 60203 Compi?gne cedex >> Tel : +33(0)344234688 >> http://www.utc.fr/~mottelet >> >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev > > > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From sylvain.corlay at gmail.com Fri Mar 29 17:58:56 2019 From: sylvain.corlay at gmail.com (Sylvain Corlay) Date: Fri, 29 Mar 2019 17:58:56 +0100 Subject: [Scilab-Dev] conda recipe for scilab In-Reply-To: References: <1553858324088-0.post@n3.nabble.com> <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> <1553873122489-0.post@n3.nabble.com> <84904a9c-c726-c489-bf61-31fa1503eb29@utc.fr> <636ce807-af6d-a417-f2db-aa42b3ecbe58@utc.fr> <559d08f1-5ed1-581c-b295-175b35fb5341@utc.fr> Message-ID: Yeah, or update scilab so as to make it work with openjdk 11. On Fri, Mar 29, 2019 at 5:58 PM St?phane Mottelet wrote: > > Le 29/03/2019 ? 17:54, Sylvain Corlay a ?crit : > > Thanks for the heads up. > > I set `--without-matio` because `matio` is not yet packaged for > conda-forge, but I can certainly make a recipe for it. > > PS: I am also not building the GUI because it requires a too-old version > of openjdk. Is there a plan to update to the latest version? > > you mean 11 ? > > > On Fri, Mar 29, 2019 at 5:48 PM St?phane Mottelet < > stephane.mottelet at utc.fr> wrote: > >> You are lucky, I get the same problem if I add --without-matio to my >> ./configure parameters: >> >> Making all in matio >> /bin/sh ../../libtool --tag=CXX --mode=link g++ -arch x86_64 >> -std=c++11 -DNDEBUG -fno-stack-protector -g -O2 -version-number 6:0:1 >> -L/sw//lib/ -o libscimatio-algo.la >> >> -ldl -lcurses >> libtool: link: warning: `-version-info/-version-number' is ignored for >> convenience libraries >> libtool: link: ar cru .libs/libscimatio-algo.a >> ar: no archive members specified >> usage: ar -d [-TLsv] archive file ... >> ar -m [-TLsv] archive file ... >> ar -m [-abiTLsv] position archive file ... >> ar -p [-TLsv] archive [file ...] >> ar -q [-cTLsv] archive file ... >> ar -r [-cuTLsv] archive file ... >> ar -r [-abciuTLsv] position archive file ... >> ar -t [-TLsv] archive [file ...] >> ar -x [-ouTLsv] archive [file ...] >> make[1]: *** [libscimatio-algo.la >> ] >> Error 1 >> >> We are going to find a solution. In the meantime, can you remove >> --without-matio from your configure flags ? >> >> S. >> Le 29/03/2019 ? 17:27, St?phane Mottelet a ?crit : >> >> Think I got it: at the end of the configure log I see: >> >> Use MATIO (--without-matio) ...................... = no >> >> Where do you set the configure flags ? >> >> S. >> >> Le 29/03/2019 ? 17:15, St?phane Mottelet a ?crit : >> >> There should be some object files as complimentary arguments in >> >> libtool: link: $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru >> .libs/libscimatio-algo.a >> >> that's why 'ar' complains. I think that the Makefile is already broken >> after the ./configure, but I cannot tell you why, since I never had this >> issue. >> >> S. >> Le 29/03/2019 ? 16:51, Sylvain Corlay a ?crit : >> >> Thanks for you response. I am building 6.0.2. >> >> As of the current version of the recipe: >> - The manifests for build, host and runtime dependencies is in >> "meta.yaml": >> >> https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/meta.yaml >> >> - The build script in "build.sh": >> >> https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/build.sh >> >> >> In the PR adding the OS X build >> - I am adding some configure flags for OSX: >> >> https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-44a73bcc045c193c3bd45da87994b03b >> >> - I am also dropping tk for OSX >> >> https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-e178b687b10a71a3348107ae3154e44c >> >> >> Best, >> >> >> >> On Fri, Mar 29, 2019 at 4:44 PM St?phane Mottelet < >> stephane.mottelet at utc.fr> wrote: >> >>> Sorry, I cannot figure out in the log which version of Scilab you are >>> building >>> >>> Le 29/03/2019 ? 16:36, Sylvain Corlay a ?crit : >>> >>> Yes, that error. You got it. >>> >>> On Fri, Mar 29, 2019 at 4:33 PM St?phane Mottelet < >>> stephane.mottelet at utc.fr> wrote: >>> >>>> Le 29/03/2019 ? 16:25, SylvainCorlay a ?crit : >>>> >>>> I meant the build log from the the CI in the pull request. >>>> >>>> Here is a direct link: >>>> https://antispam.utc.fr/proxy/2/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=25296&view=logs >>>> >>>> From there you can pick the failing build and see the full log. >>>> >>>> do you mean that error ? >>>> Making all in matio >>>> /bin/sh ../../libtool --tag=CXX --mode=link >>>> x86_64-apple-darwin13.4.0-clang++ -std=c++11 -march=core2 -mtune=haswell >>>> -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe >>>> -stdlib=libc++ -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 >>>> -Og -g -Wall -Wextra -I$PREFIX/include >>>> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >>>> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=core2 >>>> -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE >>>> -fstack-protector-strong -O2 -pipe -stdlib=libc++ >>>> -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 -I$PREFIX/include >>>> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >>>> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -version-number >>>> 6:0:1 -L$PREFIX/lib -Wl,-rpath,$PREFIX/lib -Wl,-pie >>>> -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs >>>> -Wl,-rpath,$PREFIX/lib -L$PREFIX/lib -L/sw//lib/ -o libscimatio-algo.la >>>> >>>> -ldl -lcurses >>>> libtool: link: warning: `-version-info/-version-number' is ignored for >>>> convenience libraries >>>> libtool: link: $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru >>>> .libs/libscimatio-algo.a >>>> x86_64-apple-darwin13.4.0-ar: no archive members specified >>>> usage: ar -d [-TLsv] archive file ... >>>> ar -m [-TLsv] archive file ... >>>> ar -m [-abiTLsv] position archive file ... >>>> ar -p [-TLsv] archive [file ...] >>>> ar -q [-cTLsv] archive file ... >>>> ar -r [-cuTLsv] archive file ... >>>> ar -r [-abciuTLsv] position archive file ... >>>> ar -t [-TLsv] archive [file ...] >>>> ar -x [-ouTLsv] archive [file ...] >>>> make[2]: *** [libscimatio-algo.la >>>> ] >>>> Error 1 >>>> make[1]: *** [all-recursive] Error 1 >>>> make: *** [all-recursive] Error 1 >>>> >>>> -- >>>> Sent from: https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html >>>> _______________________________________________ >>>> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>>> >>>> >>>> -- >>>> St?phane Mottelet >>>> Ing?nieur de recherche >>>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>>> D?partement G?nie des Proc?d?s Industriels >>>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>>> CS 60319, 60203 Compi?gne cedex >>>> Tel : +33(0)344234688http://www.utc.fr/~mottelet >>>> >>>> _______________________________________________ >>>> dev mailing list >>>> dev at lists.scilab.org >>>> http://lists.scilab.org/mailman/listinfo/dev >>>> >>>> >>> >>> _______________________________________________ >>> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>> >>> >>> -- >>> St?phane Mottelet >>> Ing?nieur de recherche >>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>> D?partement G?nie des Proc?d?s Industriels >>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>> CS 60319, 60203 Compi?gne cedex >>> Tel : +33(0)344234688http://www.utc.fr/~mottelet >>> >>> _______________________________________________ >>> dev mailing list >>> dev at lists.scilab.org >>> http://lists.scilab.org/mailman/listinfo/dev >>> >>> >> >> _______________________________________________ >> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >> >> >> -- >> St?phane Mottelet >> Ing?nieur de recherche >> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >> D?partement G?nie des Proc?d?s Industriels >> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >> CS 60319, 60203 Compi?gne cedex >> Tel : +33(0)344234688http://www.utc.fr/~mottelet >> >> >> _______________________________________________ >> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >> >> >> -- >> St?phane Mottelet >> Ing?nieur de recherche >> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >> D?partement G?nie des Proc?d?s Industriels >> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >> CS 60319, 60203 Compi?gne cedex >> Tel : +33(0)344234688http://www.utc.fr/~mottelet >> >> >> _______________________________________________ >> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >> >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> http://lists.scilab.org/mailman/listinfo/dev >> >> > > _______________________________________________ > dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From stephane.mottelet at utc.fr Fri Mar 29 18:02:34 2019 From: stephane.mottelet at utc.fr (=?UTF-8?Q?St=c3=a9phane_Mottelet?=) Date: Fri, 29 Mar 2019 18:02:34 +0100 Subject: [Scilab-Dev] conda recipe for scilab In-Reply-To: References: <1553858324088-0.post@n3.nabble.com> <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> <1553873122489-0.post@n3.nabble.com> <84904a9c-c726-c489-bf61-31fa1503eb29@utc.fr> <636ce807-af6d-a417-f2db-aa42b3ecbe58@utc.fr> <559d08f1-5ed1-581c-b295-175b35fb5341@utc.fr> Message-ID: Le 29/03/2019 ? 17:58, Sylvain Corlay a ?crit?: > Yeah, or update scilab so as to make it work with openjdk 11. I think that it is planned for the next release (6.1), maybe Cl?ment could confirm if he reads us. S. > > On Fri, Mar 29, 2019 at 5:58 PM St?phane Mottelet > > wrote: > > > Le 29/03/2019 ? 17:54, Sylvain Corlay a ?crit?: >> Thanks for the heads up. >> >> I set `--without-matio` because `matio` is not yet packaged for >> conda-forge, but I can certainly make a recipe for it. >> >> PS: I am also not building the GUI because it requires a too-old >> version of openjdk. Is there a plan to update to the latest version? > you mean 11 ? >> >> On Fri, Mar 29, 2019 at 5:48 PM St?phane Mottelet >> > wrote: >> >> You are lucky, I get the same problem if I add >> --without-matio to my ./configure parameters: >> >> Making all in matio >> /bin/sh ../../libtool? --tag=CXX?? --mode=link g++ -arch >> x86_64 -std=c++11 -DNDEBUG -fno-stack-protector -g -O2? >> -version-number 6:0:1 -L/sw//lib/ -o libscimatio-algo.la >> >> -ldl -lcurses >> libtool: link: warning: `-version-info/-version-number' is >> ignored for convenience libraries >> libtool: link: ar cru .libs/libscimatio-algo.a >> ar: no archive members specified >> usage:? ar -d [-TLsv] archive file ... >> ??? ar -m [-TLsv] archive file ... >> ??? ar -m [-abiTLsv] position archive file ... >> ??? ar -p [-TLsv] archive [file ...] >> ??? ar -q [-cTLsv] archive file ... >> ??? ar -r [-cuTLsv] archive file ... >> ??? ar -r [-abciuTLsv] position archive file ... >> ??? ar -t [-TLsv] archive [file ...] >> ??? ar -x [-ouTLsv] archive [file ...] >> make[1]: *** [libscimatio-algo.la >> ] >> Error 1 >> >> We are going to find a solution. In the meantime, can you? >> remove --without-matio from your configure flags ? >> >> S. >> >> Le 29/03/2019 ? 17:27, St?phane Mottelet a ?crit?: >>> Think I got it: at the end of the configure log I see: >>> >>> Use MATIO (--without-matio) ...................... = no >>> >>> Where do you set the configure flags ? >>> >>> S. >>> >>> Le 29/03/2019 ? 17:15, St?phane Mottelet a ?crit?: >>>> There should be some object files as complimentary arguments in >>>> >>>> libtool: link: >>>> $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru >>>> .libs/libscimatio-algo.a >>>> >>>> that's why 'ar' complains. I think that the Makefile is >>>> already broken after the ./configure, but I cannot tell you >>>> why, since I never had this issue. >>>> >>>> S. >>>> Le 29/03/2019 ? 16:51, Sylvain Corlay a ?crit?: >>>>> Thanks for you response. I am building 6.0.2. >>>>> >>>>> As of the current version of the recipe: >>>>> - The manifests for build, host and runtime dependencies >>>>> is in "meta.yaml": >>>>> https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/meta.yaml >>>>> >>>>> - The build script in "build.sh": >>>>> https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/build.sh >>>>> >>>>> >>>>> In the PR adding the OS X build >>>>> - I am adding some configure flags for OSX: >>>>> https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-44a73bcc045c193c3bd45da87994b03b >>>>> >>>>> - I am also dropping tk for OSX >>>>> https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-e178b687b10a71a3348107ae3154e44c >>>>> >>>>> >>>>> Best, >>>>> >>>>> >>>>> >>>>> On Fri, Mar 29, 2019 at 4:44 PM St?phane Mottelet >>>>> >>>> > wrote: >>>>> >>>>> Sorry, I cannot figure out in the log which version of >>>>> Scilab you are building >>>>> >>>>> Le 29/03/2019 ? 16:36, Sylvain Corlay a ?crit?: >>>>>> Yes, that error. You got it. >>>>>> >>>>>> On Fri, Mar 29, 2019 at 4:33 PM St?phane Mottelet >>>>>> >>>>> > wrote: >>>>>> >>>>>> Le 29/03/2019 ? 16:25, SylvainCorlay a ?crit?: >>>>>>> I meant the build log from the the CI in the pull request. >>>>>>> >>>>>>> Here is a direct link: >>>>>>> >>>>>>> https://antispam.utc.fr/proxy/2/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=25296&view=logs >>>>>>> >>>>>>> From there you can pick the failing build and see the full log. >>>>>> >>>>>> do you mean that error ? >>>>>> >>>>>> Making all in matio >>>>>> /bin/sh ../../libtool --tag=CXX --mode=link >>>>>> x86_64-apple-darwin13.4.0-clang++ -std=c++11 >>>>>> -march=core2 -mtune=haswell -mssse3 >>>>>> -ftree-vectorize -fPIC -fPIE >>>>>> -fstack-protector-strong -O2 -pipe -stdlib=libc++ >>>>>> -fvisibility-inlines-hidden -std=c++14 >>>>>> -fmessage-length=0 -Og -g -Wall -Wextra >>>>>> -I$PREFIX/include >>>>>> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >>>>>> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix >>>>>> -march=core2 -mtune=haswell -mssse3 >>>>>> -ftree-vectorize -fPIC -fPIE >>>>>> -fstack-protector-strong -O2 -pipe -stdlib=libc++ >>>>>> -fvisibility-inlines-hidden -std=c++14 >>>>>> -fmessage-length=0 -I$PREFIX/include >>>>>> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >>>>>> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix >>>>>> -version-number 6:0:1 -L$PREFIX/lib >>>>>> -Wl,-rpath,$PREFIX/lib -Wl,-pie >>>>>> -Wl,-headerpad_max_install_names >>>>>> -Wl,-dead_strip_dylibs -Wl,-rpath,$PREFIX/lib >>>>>> -L$PREFIX/lib -L/sw//lib/ -o libscimatio-algo.la >>>>>> >>>>>> -ldl -lcurses >>>>>> libtool: link: warning: >>>>>> `-version-info/-version-number' is ignored for >>>>>> convenience libraries >>>>>> libtool: link: >>>>>> $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar >>>>>> cru .libs/libscimatio-algo.a >>>>>> x86_64-apple-darwin13.4.0-ar: no archive members >>>>>> specified >>>>>> usage: ar -d [-TLsv] archive file ... >>>>>> ??ar -m [-TLsv] archive file ... >>>>>> ??ar -m [-abiTLsv] position archive file ... >>>>>> ??ar -p [-TLsv] archive [file ...] >>>>>> ??ar -q [-cTLsv] archive file ... >>>>>> ??ar -r [-cuTLsv] archive file ... >>>>>> ??ar -r [-abciuTLsv] position archive file ... >>>>>> ??ar -t [-TLsv] archive [file ...] >>>>>> ??ar -x [-ouTLsv] archive [file ...] >>>>>> make[2]: *** [libscimatio-algo.la >>>>>> ] >>>>>> Error 1 >>>>>> make[1]: *** [all-recursive] Error 1 >>>>>> make: *** [all-recursive] Error 1 >>>>>>> -- >>>>>>> Sent from:https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html >>>>>>> _______________________________________________ >>>>>>> dev mailing list >>>>>>> dev at lists.scilab.org >>>>>>> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>>>>> >>>>>> >>>>>> -- >>>>>> St?phane Mottelet >>>>>> Ing?nieur de recherche >>>>>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>>>>> D?partement G?nie des Proc?d?s Industriels >>>>>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>>>>> CS 60319, 60203 Compi?gne cedex >>>>>> Tel : +33(0)344234688 >>>>>> http://www.utc.fr/~mottelet >>>>>> >>>>>> _______________________________________________ >>>>>> dev mailing list >>>>>> dev at lists.scilab.org >>>>>> http://lists.scilab.org/mailman/listinfo/dev >>>>>> >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> dev mailing list >>>>>> dev at lists.scilab.org >>>>>> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>>>> >>>>> >>>>> -- >>>>> St?phane Mottelet >>>>> Ing?nieur de recherche >>>>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>>>> D?partement G?nie des Proc?d?s Industriels >>>>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>>>> CS 60319, 60203 Compi?gne cedex >>>>> Tel : +33(0)344234688 >>>>> http://www.utc.fr/~mottelet >>>>> >>>>> _______________________________________________ >>>>> dev mailing list >>>>> dev at lists.scilab.org >>>>> http://lists.scilab.org/mailman/listinfo/dev >>>>> >>>>> >>>>> >>>>> _______________________________________________ >>>>> dev mailing list >>>>> dev at lists.scilab.org >>>>> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>>> >>>> >>>> -- >>>> St?phane Mottelet >>>> Ing?nieur de recherche >>>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>>> D?partement G?nie des Proc?d?s Industriels >>>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>>> CS 60319, 60203 Compi?gne cedex >>>> Tel : +33(0)344234688 >>>> http://www.utc.fr/~mottelet >>>> >>>> _______________________________________________ >>>> dev mailing list >>>> dev at lists.scilab.org >>>> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>> >>> >>> -- >>> St?phane Mottelet >>> Ing?nieur de recherche >>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>> D?partement G?nie des Proc?d?s Industriels >>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>> CS 60319, 60203 Compi?gne cedex >>> Tel : +33(0)344234688 >>> http://www.utc.fr/~mottelet >>> >>> _______________________________________________ >>> dev mailing list >>> dev at lists.scilab.org >>> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> http://lists.scilab.org/mailman/listinfo/dev >> >> >> >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev > > > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From sylvain.corlay at gmail.com Fri Mar 29 18:12:11 2019 From: sylvain.corlay at gmail.com (Sylvain Corlay) Date: Fri, 29 Mar 2019 18:12:11 +0100 Subject: [Scilab-Dev] conda recipe for scilab In-Reply-To: References: <1553858324088-0.post@n3.nabble.com> <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> <1553873122489-0.post@n3.nabble.com> <84904a9c-c726-c489-bf61-31fa1503eb29@utc.fr> <636ce807-af6d-a417-f2db-aa42b3ecbe58@utc.fr> <559d08f1-5ed1-581c-b295-175b35fb5341@utc.fr> Message-ID: Thanks I am looking forward to it. On Fri, Mar 29, 2019 at 6:02 PM St?phane Mottelet wrote: > > Le 29/03/2019 ? 17:58, Sylvain Corlay a ?crit : > > Yeah, or update scilab so as to make it work with openjdk 11. > > I think that it is planned for the next release (6.1), maybe Cl?ment could > confirm if he reads us. > > S. > > > On Fri, Mar 29, 2019 at 5:58 PM St?phane Mottelet < > stephane.mottelet at utc.fr> wrote: > >> >> Le 29/03/2019 ? 17:54, Sylvain Corlay a ?crit : >> >> Thanks for the heads up. >> >> I set `--without-matio` because `matio` is not yet packaged for >> conda-forge, but I can certainly make a recipe for it. >> >> PS: I am also not building the GUI because it requires a too-old version >> of openjdk. Is there a plan to update to the latest version? >> >> you mean 11 ? >> >> >> On Fri, Mar 29, 2019 at 5:48 PM St?phane Mottelet < >> stephane.mottelet at utc.fr> wrote: >> >>> You are lucky, I get the same problem if I add --without-matio to my >>> ./configure parameters: >>> >>> Making all in matio >>> /bin/sh ../../libtool --tag=CXX --mode=link g++ -arch x86_64 >>> -std=c++11 -DNDEBUG -fno-stack-protector -g -O2 -version-number 6:0:1 >>> -L/sw//lib/ -o libscimatio-algo.la >>> >>> -ldl -lcurses >>> libtool: link: warning: `-version-info/-version-number' is ignored for >>> convenience libraries >>> libtool: link: ar cru .libs/libscimatio-algo.a >>> ar: no archive members specified >>> usage: ar -d [-TLsv] archive file ... >>> ar -m [-TLsv] archive file ... >>> ar -m [-abiTLsv] position archive file ... >>> ar -p [-TLsv] archive [file ...] >>> ar -q [-cTLsv] archive file ... >>> ar -r [-cuTLsv] archive file ... >>> ar -r [-abciuTLsv] position archive file ... >>> ar -t [-TLsv] archive [file ...] >>> ar -x [-ouTLsv] archive [file ...] >>> make[1]: *** [libscimatio-algo.la >>> ] >>> Error 1 >>> >>> We are going to find a solution. In the meantime, can you remove >>> --without-matio from your configure flags ? >>> >>> S. >>> Le 29/03/2019 ? 17:27, St?phane Mottelet a ?crit : >>> >>> Think I got it: at the end of the configure log I see: >>> >>> Use MATIO (--without-matio) ...................... = no >>> >>> Where do you set the configure flags ? >>> >>> S. >>> >>> Le 29/03/2019 ? 17:15, St?phane Mottelet a ?crit : >>> >>> There should be some object files as complimentary arguments in >>> >>> libtool: link: $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru >>> .libs/libscimatio-algo.a >>> >>> that's why 'ar' complains. I think that the Makefile is already broken >>> after the ./configure, but I cannot tell you why, since I never had this >>> issue. >>> >>> S. >>> Le 29/03/2019 ? 16:51, Sylvain Corlay a ?crit : >>> >>> Thanks for you response. I am building 6.0.2. >>> >>> As of the current version of the recipe: >>> - The manifests for build, host and runtime dependencies is in >>> "meta.yaml": >>> >>> https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/meta.yaml >>> >>> - The build script in "build.sh": >>> >>> https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/build.sh >>> >>> >>> In the PR adding the OS X build >>> - I am adding some configure flags for OSX: >>> >>> https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-44a73bcc045c193c3bd45da87994b03b >>> >>> - I am also dropping tk for OSX >>> >>> https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-e178b687b10a71a3348107ae3154e44c >>> >>> >>> Best, >>> >>> >>> >>> On Fri, Mar 29, 2019 at 4:44 PM St?phane Mottelet < >>> stephane.mottelet at utc.fr> wrote: >>> >>>> Sorry, I cannot figure out in the log which version of Scilab you are >>>> building >>>> >>>> Le 29/03/2019 ? 16:36, Sylvain Corlay a ?crit : >>>> >>>> Yes, that error. You got it. >>>> >>>> On Fri, Mar 29, 2019 at 4:33 PM St?phane Mottelet < >>>> stephane.mottelet at utc.fr> wrote: >>>> >>>>> Le 29/03/2019 ? 16:25, SylvainCorlay a ?crit : >>>>> >>>>> I meant the build log from the the CI in the pull request. >>>>> >>>>> Here is a direct link: >>>>> https://antispam.utc.fr/proxy/2/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=25296&view=logs >>>>> >>>>> From there you can pick the failing build and see the full log. >>>>> >>>>> do you mean that error ? >>>>> Making all in matio >>>>> /bin/sh ../../libtool --tag=CXX --mode=link >>>>> x86_64-apple-darwin13.4.0-clang++ -std=c++11 -march=core2 -mtune=haswell >>>>> -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe >>>>> -stdlib=libc++ -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 >>>>> -Og -g -Wall -Wextra -I$PREFIX/include >>>>> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >>>>> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=core2 >>>>> -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE >>>>> -fstack-protector-strong -O2 -pipe -stdlib=libc++ >>>>> -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 -I$PREFIX/include >>>>> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >>>>> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -version-number >>>>> 6:0:1 -L$PREFIX/lib -Wl,-rpath,$PREFIX/lib -Wl,-pie >>>>> -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs >>>>> -Wl,-rpath,$PREFIX/lib -L$PREFIX/lib -L/sw//lib/ -o >>>>> libscimatio-algo.la >>>>> >>>>> -ldl -lcurses >>>>> libtool: link: warning: `-version-info/-version-number' is ignored for >>>>> convenience libraries >>>>> libtool: link: $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru >>>>> .libs/libscimatio-algo.a >>>>> x86_64-apple-darwin13.4.0-ar: no archive members specified >>>>> usage: ar -d [-TLsv] archive file ... >>>>> ar -m [-TLsv] archive file ... >>>>> ar -m [-abiTLsv] position archive file ... >>>>> ar -p [-TLsv] archive [file ...] >>>>> ar -q [-cTLsv] archive file ... >>>>> ar -r [-cuTLsv] archive file ... >>>>> ar -r [-abciuTLsv] position archive file ... >>>>> ar -t [-TLsv] archive [file ...] >>>>> ar -x [-ouTLsv] archive [file ...] >>>>> make[2]: *** [libscimatio-algo.la >>>>> ] >>>>> Error 1 >>>>> make[1]: *** [all-recursive] Error 1 >>>>> make: *** [all-recursive] Error 1 >>>>> >>>>> -- >>>>> Sent from: https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html >>>>> _______________________________________________ >>>>> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>>>> >>>>> >>>>> -- >>>>> St?phane Mottelet >>>>> Ing?nieur de recherche >>>>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>>>> D?partement G?nie des Proc?d?s Industriels >>>>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>>>> CS 60319, 60203 Compi?gne cedex >>>>> Tel : +33(0)344234688http://www.utc.fr/~mottelet >>>>> >>>>> _______________________________________________ >>>>> dev mailing list >>>>> dev at lists.scilab.org >>>>> http://lists.scilab.org/mailman/listinfo/dev >>>>> >>>>> >>>> >>>> _______________________________________________ >>>> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>>> >>>> >>>> -- >>>> St?phane Mottelet >>>> Ing?nieur de recherche >>>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>>> D?partement G?nie des Proc?d?s Industriels >>>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>>> CS 60319, 60203 Compi?gne cedex >>>> Tel : +33(0)344234688http://www.utc.fr/~mottelet >>>> >>>> _______________________________________________ >>>> dev mailing list >>>> dev at lists.scilab.org >>>> http://lists.scilab.org/mailman/listinfo/dev >>>> >>>> >>> >>> _______________________________________________ >>> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>> >>> >>> -- >>> St?phane Mottelet >>> Ing?nieur de recherche >>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>> D?partement G?nie des Proc?d?s Industriels >>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>> CS 60319, 60203 Compi?gne cedex >>> Tel : +33(0)344234688http://www.utc.fr/~mottelet >>> >>> >>> _______________________________________________ >>> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>> >>> >>> -- >>> St?phane Mottelet >>> Ing?nieur de recherche >>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>> D?partement G?nie des Proc?d?s Industriels >>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>> CS 60319, 60203 Compi?gne cedex >>> Tel : +33(0)344234688http://www.utc.fr/~mottelet >>> >>> >>> _______________________________________________ >>> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>> >>> _______________________________________________ >>> dev mailing list >>> dev at lists.scilab.org >>> http://lists.scilab.org/mailman/listinfo/dev >>> >>> >> >> _______________________________________________ >> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >> >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> http://lists.scilab.org/mailman/listinfo/dev >> >> > > _______________________________________________ > dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sylvain.corlay at gmail.com Fri Mar 29 18:28:13 2019 From: sylvain.corlay at gmail.com (Sylvain Corlay) Date: Fri, 29 Mar 2019 18:28:13 +0100 Subject: [Scilab-Dev] setScilabOutputMethod - output vs error streams Message-ID: Hello, world! The Jupyter kernel protocol expect stdout and stderr streams to be both redirected to the frontend, however, it makes a distinction between error and output messages in the `stream` message type: content = { # The name of the stream is one of 'stdout', 'stderr' 'name' : str, # The text is an arbitrary string to be written to that stream 'text' : str,} This is reflected graphically in web frontend. See the following screenshot for example, with the C++ Jupyter kernel: [image: Screenshot from 2019-03-29 18-11-44.png] I am writing a scilab Jupyter kernel with the Xeus C++ implementation of the protocol, and the redirection to the frontend is achieved through the setScilabOutputMethod function which results in both errors and outputs to be redirected in the same way. It would be great if there was a means to specify to different functions with e.g. setScilabErrorStreamMethod and setScilabOutputStreamMethod, and keeping setScilabOutputMethod as a means to set both at once for backward compatibility. I would love to hear your thoughts on that. Cheers, Sylvain -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Screenshot from 2019-03-29 18-11-44.png Type: image/png Size: 68953 bytes Desc: not available URL: From stephane.mottelet at utc.fr Fri Mar 29 18:55:49 2019 From: stephane.mottelet at utc.fr (=?UTF-8?Q?St=c3=a9phane_Mottelet?=) Date: Fri, 29 Mar 2019 18:55:49 +0100 Subject: [Scilab-Dev] setScilabOutputMethod - output vs error streams In-Reply-To: References: Message-ID: <2288bb2d-f473-2928-a8a7-ea9e70190743@utc.fr> Le 29/03/2019 ? 18:28, Sylvain Corlay a ?crit?: > Hello, world! > > The Jupyter kernel protocol expect stdout and stderr streams to be > both redirected to the frontend, however, it makes a distinction > between error and output messages in the `stream` message type: > content = { > # The name of the stream is one of 'stdout', 'stderr' > 'name' : str, > > # The text is an arbitrary string to be written to that stream > 'text' : str, > } > > This is reflected graphically in web frontend. See the following > screenshot for example, with the C++ Jupyter kernel: > > Screenshot from 2019-03-29 18-11-44.png > > I am writing a scilab Jupyter kernel Glad to hear that, this is a great initiative ! > with the Xeus C++ implementation of the protocol, and the redirection > to the frontend is achieved through the setScilabOutputMethod function > which results in both errors and outputs to be redirected in the same way. > > It would be great if there was a means to specify to different > functions with e.g. setScilabErrorStreamMethod?and > setScilabOutputStreamMethod, and keeping setScilabOutputMethod as a > means to set both at once for backward compatibility. > > I would love to hear your thoughts on that. Maybe Antoine could answer ? > > Cheers, > > Sylvain > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Screenshot from 2019-03-29 18-11-44.png Type: image/png Size: 68953 bytes Desc: not available URL: From sylvain.corlay at gmail.com Fri Mar 29 19:04:08 2019 From: sylvain.corlay at gmail.com (Sylvain Corlay) Date: Fri, 29 Mar 2019 19:04:08 +0100 Subject: [Scilab-Dev] conda recipe for scilab In-Reply-To: References: <1553858324088-0.post@n3.nabble.com> <1bdfa93a-2309-175b-0bbf-cf410466d3cf@utc.fr> <1553873122489-0.post@n3.nabble.com> <84904a9c-c726-c489-bf61-31fa1503eb29@utc.fr> <636ce807-af6d-a417-f2db-aa42b3ecbe58@utc.fr> <559d08f1-5ed1-581c-b295-175b35fb5341@utc.fr> Message-ID: Just a heads up: Building with matio fixes that specific issue (although I still think one should be able with build with the --without-matio) flag on OSX. When building with matio, the OS X build fails a bit later with a link issue: x86_64-apple-darwin13.4.0-clang++ -DHAVE_CONFIG_H -I. -I./modules/core/includes -I./modules/ast/includes/ast/ -I./modules/ast/includes/exps/ -I./modules/ast/includes/operations/ -I./modules/ast/includes/parse/ -I./modules/ast/includes/symbol/ -I./modules/ast/includes/system_env/ -I./modules/ast/includes/types/ -I./modules/ast/includes/analysis/ -I./modules/console/includes/ -I./modules/output_stream/includes/ -I./modules/functions_manager/includes/ -I./modules/elementary_functions/includes/ -I./modules/fileio/includes/ -I./modules/string/includes/ -I./modules/history_manager/includes/ -I./modules/threads/includes/ -I./modules/api_scilab/includes/ -I./modules/localization/includes/ -I./modules/core/src/c/ -I./modules/dynamic_link/includes/ -I./modules/startup/src/c/ -w -I$PREFIX/include -D_FORTIFY_SOURCE=2 -mmacosx-version-min=10.9 -I/sw//include/ -std=c++11 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -stdlib=libc++ -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 -Og -g -Wall -Wextra -I$PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -stdlib=libc++ -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 -I$PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -MT modules/startup/src/cpp/scilab_bin-scilab.o -MD -MP -MF modules/startup/src/cpp/.deps/scilab_bin-scilab.Tpo -c -o modules/startup/src/cpp/scilab_bin-scilab.o `test -f 'modules/startup/src/cpp/scilab.cpp' || echo './'`modules/startup/src/cpp/scilab.cpp mv -f modules/startup/src/cpp/.deps/scilab_bin-scilab.Tpo modules/startup/src/cpp/.deps/scilab_bin-scilab.Po /bin/sh ./libtool --tag=CXX --mode=link x86_64-apple-darwin13.4.0-clang++ -std=c++11 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -stdlib=libc++ -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 -Og -g -Wall -Wextra -I$PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -stdlib=libc++ -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 -I$PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -lstdc++ -lgfortran -framework Cocoa -L$PREFIX/lib -Wl,-rpath,$PREFIX/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,$PREFIX/lib -L$PREFIX/lib -L/sw//lib/ -o scilab-bin modules/startup/src/cpp/scilab_bin-scilab.o ./modules/libscilab.la ./modules/libscilab-cli.la -L$PREFIX/lib -lxml2 -L$PREFIX/lib -lz -L$PREFIX/lib -llzma -lpthread -L$PREFIX/lib -liconv -L$PREFIX/lib -licui18n -licuuc -licudata -lm -lintl -Wl,-framework -Wl,CoreFoundation -L$PREFIX/lib -L/sw//lib/ -L$BUILD_PREFIX/bin/../lib/gcc/x86_64-apple-darwin11.4.2/4.8.5 -L$BUILD_PREFIX/bin/../lib/gcc -L$BUILD_PREFIX/bin/../lib/gcc/x86_64-apple-darwin11.4.2/4.8.5/../../.. -lcurses -lgfortran -lquadmath -lm ./modules/console/ libsciconsole-minimal.la ./modules/jvm/libscijvm-disable.la ./modules/ libscilab.la -lopenblas -L$PREFIX/lib -L/sw//lib/ -L$BUILD_PREFIX/bin/../lib/gcc/x86_64-apple-darwin11.4.2/4.8.5 -L$BUILD_PREFIX/bin/../lib/gcc -L$BUILD_PREFIX/bin/../lib/gcc/x86_64-apple-darwin11.4.2/4.8.5/../../.. -lcurses -lgfortran -lquadmath -lm -ldl -lcurses libtool: link: x86_64-apple-darwin13.4.0-clang++ -std=c++11 -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -stdlib=libc++ -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 -Og -g -Wall -Wextra -I$PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=core2 -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -stdlib=libc++ -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 -I$PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -Wl,-rpath -Wl,$PREFIX/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath -Wl,$PREFIX/lib -o .libs/scilab-bin modules/startup/src/cpp/scilab_bin-scilab.o -Wl,-framework -Wl,CoreFoundation -lstdc++ -L$PREFIX/lib -L/sw//lib/ -L$BUILD_PREFIX/bin/../lib/gcc/x86_64-apple-darwin11.4.2/4.8.5 -L$BUILD_PREFIX/bin/../lib/gcc -L$BUILD_PREFIX/bin/../lib/gcc/x86_64-apple-darwin11.4.2/4.8.5/../../.. ./modules/.libs/libscilab-cli.dylib ./modules/console/.libs/libsciconsole-minimal.dylib ./modules/jvm/.libs/libscijvm-disable.dylib ./modules/.libs/libscilab.dylib $SRC_DIR/scilab/modules/.libs/libscilab-cli.dylib -lcurl -lssh2 -lssl -lcrypto -lgssapi_krb5 -lresolv $SRC_DIR/scilab/modules/functions/.libs/libscifunctions.dylib $SRC_DIR/scilab/modules/call_scilab/.libs/libscicall_scilab.dylib $SRC_DIR/scilab/modules/localization/.libs/libscilocalization.dylib -lintl $SRC_DIR/scilab/modules/special_functions/.libs/libscispecial_functions.dylib $SRC_DIR/scilab/modules/completion/.libs/libscicompletion.dylib $SRC_DIR/scilab/modules/history_manager/.libs/libscihistory_manager.dylib -lpcreposix -lpcre $SRC_DIR/scilab/modules/hdf5/.libs/libscihdf5.dylib -lhdf5 -lhdf5_hl -lfftw3 $SRC_DIR/scilab/modules/statistics/.libs/libscistatistics.dylib $SRC_DIR/scilab/modules/ast/.libs/libsciast.dylib $SRC_DIR/scilab/modules/functions_manager/.libs/libscifunctions_manager.dylib $SRC_DIR/scilab/modules/xml/.libs/libscixml.dylib $SRC_DIR/scilab/modules/external_objects/.libs/libsciexternal_objects.dylib $SRC_DIR/scilab/modules/slint/.libs/libscislint.dylib $SRC_DIR/scilab/modules/coverage/.libs/libscicoverage.dylib -lxml2 -lz -llzma -lpthread -liconv -licui18n -licuuc -licudata $SRC_DIR/scilab/modules/gui/.libs/libscigui-disable.dylib $SRC_DIR/scilab/modules/graphics/.libs/libscigraphics-disable.dylib $SRC_DIR/scilab/modules/graphic_export/.libs/libscigraphic_export-disable.dylib $SRC_DIR/scilab/modules/console/.libs/libsciconsole-minimal.dylib $SRC_DIR/scilab/modules/action_binding/.libs/libsciaction_binding-disable.dylib $SRC_DIR/scilab/modules/jvm/.libs/libscijvm-disable.dylib $SRC_DIR/scilab/modules/xcos/.libs/libscixcos-disable.dylib $SRC_DIR/scilab/modules/graphic_objects/.libs/libscigraphic_objects-disable.dylib $SRC_DIR/scilab/modules/scinotes/.libs/libsciscinotes-disable.dylib $SRC_DIR/scilab/modules/ui_data/.libs/libsciui_data-disable.dylib $SRC_DIR/scilab/modules/history_browser/.libs/libscihistory_browser-disable.dylib $SRC_DIR/scilab/modules/commons/.libs/libscicommons-disable.dylib $SRC_DIR/scilab/modules/preferences/.libs/libscipreferences-cli.dylib $SRC_DIR/scilab/modules/tclsci/.libs/libscitclsci-disable.dylib -lopenblas -lgfortran -lquadmath -lm -ldl -lcurses -framework Cocoa ld: warning: directory not found for option '-L/sw//lib/' Undefined symbols for architecture x86_64: "_initMacOSXEnv", referenced from: _main in scilab_bin-scilab.o ld: symbol(s) not found for architecture x86_64 clang-4.0: error: linker command failed with exit code 1 (use -v to see invocation) Symbol *_initMacOSXEnv* is not found. Sincerely, Sylvain On Fri, Mar 29, 2019 at 6:12 PM Sylvain Corlay wrote: > Thanks I am looking forward to it. > > On Fri, Mar 29, 2019 at 6:02 PM St?phane Mottelet < > stephane.mottelet at utc.fr> wrote: > >> >> Le 29/03/2019 ? 17:58, Sylvain Corlay a ?crit : >> >> Yeah, or update scilab so as to make it work with openjdk 11. >> >> I think that it is planned for the next release (6.1), maybe Cl?ment >> could confirm if he reads us. >> >> S. >> >> >> On Fri, Mar 29, 2019 at 5:58 PM St?phane Mottelet < >> stephane.mottelet at utc.fr> wrote: >> >>> >>> Le 29/03/2019 ? 17:54, Sylvain Corlay a ?crit : >>> >>> Thanks for the heads up. >>> >>> I set `--without-matio` because `matio` is not yet packaged for >>> conda-forge, but I can certainly make a recipe for it. >>> >>> PS: I am also not building the GUI because it requires a too-old version >>> of openjdk. Is there a plan to update to the latest version? >>> >>> you mean 11 ? >>> >>> >>> On Fri, Mar 29, 2019 at 5:48 PM St?phane Mottelet < >>> stephane.mottelet at utc.fr> wrote: >>> >>>> You are lucky, I get the same problem if I add --without-matio to my >>>> ./configure parameters: >>>> >>>> Making all in matio >>>> /bin/sh ../../libtool --tag=CXX --mode=link g++ -arch x86_64 >>>> -std=c++11 -DNDEBUG -fno-stack-protector -g -O2 -version-number 6:0:1 >>>> -L/sw//lib/ -o libscimatio-algo.la >>>> >>>> -ldl -lcurses >>>> libtool: link: warning: `-version-info/-version-number' is ignored for >>>> convenience libraries >>>> libtool: link: ar cru .libs/libscimatio-algo.a >>>> ar: no archive members specified >>>> usage: ar -d [-TLsv] archive file ... >>>> ar -m [-TLsv] archive file ... >>>> ar -m [-abiTLsv] position archive file ... >>>> ar -p [-TLsv] archive [file ...] >>>> ar -q [-cTLsv] archive file ... >>>> ar -r [-cuTLsv] archive file ... >>>> ar -r [-abciuTLsv] position archive file ... >>>> ar -t [-TLsv] archive [file ...] >>>> ar -x [-ouTLsv] archive [file ...] >>>> make[1]: *** [libscimatio-algo.la >>>> ] >>>> Error 1 >>>> >>>> We are going to find a solution. In the meantime, can you remove >>>> --without-matio from your configure flags ? >>>> >>>> S. >>>> Le 29/03/2019 ? 17:27, St?phane Mottelet a ?crit : >>>> >>>> Think I got it: at the end of the configure log I see: >>>> >>>> Use MATIO (--without-matio) ...................... = no >>>> >>>> Where do you set the configure flags ? >>>> >>>> S. >>>> >>>> Le 29/03/2019 ? 17:15, St?phane Mottelet a ?crit : >>>> >>>> There should be some object files as complimentary arguments in >>>> >>>> libtool: link: $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru >>>> .libs/libscimatio-algo.a >>>> >>>> that's why 'ar' complains. I think that the Makefile is already broken >>>> after the ./configure, but I cannot tell you why, since I never had this >>>> issue. >>>> >>>> S. >>>> Le 29/03/2019 ? 16:51, Sylvain Corlay a ?crit : >>>> >>>> Thanks for you response. I am building 6.0.2. >>>> >>>> As of the current version of the recipe: >>>> - The manifests for build, host and runtime dependencies is in >>>> "meta.yaml": >>>> >>>> https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/meta.yaml >>>> >>>> - The build script in "build.sh": >>>> >>>> https://github.com/conda-forge/scilab-feedstock/blob/master/recipe/build.sh >>>> >>>> >>>> In the PR adding the OS X build >>>> - I am adding some configure flags for OSX: >>>> >>>> https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-44a73bcc045c193c3bd45da87994b03b >>>> >>>> - I am also dropping tk for OSX >>>> >>>> https://github.com/conda-forge/scilab-feedstock/pull/1/files#diff-e178b687b10a71a3348107ae3154e44c >>>> >>>> >>>> Best, >>>> >>>> >>>> >>>> On Fri, Mar 29, 2019 at 4:44 PM St?phane Mottelet < >>>> stephane.mottelet at utc.fr> wrote: >>>> >>>>> Sorry, I cannot figure out in the log which version of Scilab you are >>>>> building >>>>> >>>>> Le 29/03/2019 ? 16:36, Sylvain Corlay a ?crit : >>>>> >>>>> Yes, that error. You got it. >>>>> >>>>> On Fri, Mar 29, 2019 at 4:33 PM St?phane Mottelet < >>>>> stephane.mottelet at utc.fr> wrote: >>>>> >>>>>> Le 29/03/2019 ? 16:25, SylvainCorlay a ?crit : >>>>>> >>>>>> I meant the build log from the the CI in the pull request. >>>>>> >>>>>> Here is a direct link: >>>>>> https://antispam.utc.fr/proxy/2/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=25296&view=logs >>>>>> >>>>>> From there you can pick the failing build and see the full log. >>>>>> >>>>>> do you mean that error ? >>>>>> Making all in matio >>>>>> /bin/sh ../../libtool --tag=CXX --mode=link >>>>>> x86_64-apple-darwin13.4.0-clang++ -std=c++11 -march=core2 -mtune=haswell >>>>>> -mssse3 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe >>>>>> -stdlib=libc++ -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 >>>>>> -Og -g -Wall -Wextra -I$PREFIX/include >>>>>> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >>>>>> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=core2 >>>>>> -mtune=haswell -mssse3 -ftree-vectorize -fPIC -fPIE >>>>>> -fstack-protector-strong -O2 -pipe -stdlib=libc++ >>>>>> -fvisibility-inlines-hidden -std=c++14 -fmessage-length=0 -I$PREFIX/include >>>>>> -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/scilab-6.0.2 >>>>>> -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -version-number >>>>>> 6:0:1 -L$PREFIX/lib -Wl,-rpath,$PREFIX/lib -Wl,-pie >>>>>> -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs >>>>>> -Wl,-rpath,$PREFIX/lib -L$PREFIX/lib -L/sw//lib/ -o >>>>>> libscimatio-algo.la >>>>>> >>>>>> -ldl -lcurses >>>>>> libtool: link: warning: `-version-info/-version-number' is ignored >>>>>> for convenience libraries >>>>>> libtool: link: $BUILD_PREFIX/bin/x86_64-apple-darwin13.4.0-ar cru >>>>>> .libs/libscimatio-algo.a >>>>>> x86_64-apple-darwin13.4.0-ar: no archive members specified >>>>>> usage: ar -d [-TLsv] archive file ... >>>>>> ar -m [-TLsv] archive file ... >>>>>> ar -m [-abiTLsv] position archive file ... >>>>>> ar -p [-TLsv] archive [file ...] >>>>>> ar -q [-cTLsv] archive file ... >>>>>> ar -r [-cuTLsv] archive file ... >>>>>> ar -r [-abciuTLsv] position archive file ... >>>>>> ar -t [-TLsv] archive [file ...] >>>>>> ar -x [-ouTLsv] archive [file ...] >>>>>> make[2]: *** [libscimatio-algo.la >>>>>> ] >>>>>> Error 1 >>>>>> make[1]: *** [all-recursive] Error 1 >>>>>> make: *** [all-recursive] Error 1 >>>>>> >>>>>> -- >>>>>> Sent from: https://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/mailinglists.scilab.org/Scilab-developers-Mailing-Lists-Archives-f2574944.html >>>>>> _______________________________________________ >>>>>> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>>>>> >>>>>> >>>>>> -- >>>>>> St?phane Mottelet >>>>>> Ing?nieur de recherche >>>>>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>>>>> D?partement G?nie des Proc?d?s Industriels >>>>>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>>>>> CS 60319, 60203 Compi?gne cedex >>>>>> Tel : +33(0)344234688http://www.utc.fr/~mottelet >>>>>> >>>>>> _______________________________________________ >>>>>> dev mailing list >>>>>> dev at lists.scilab.org >>>>>> http://lists.scilab.org/mailman/listinfo/dev >>>>>> >>>>>> >>>>> >>>>> _______________________________________________ >>>>> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>>>> >>>>> >>>>> -- >>>>> St?phane Mottelet >>>>> Ing?nieur de recherche >>>>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>>>> D?partement G?nie des Proc?d?s Industriels >>>>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>>>> CS 60319, 60203 Compi?gne cedex >>>>> Tel : +33(0)344234688http://www.utc.fr/~mottelet >>>>> >>>>> _______________________________________________ >>>>> dev mailing list >>>>> dev at lists.scilab.org >>>>> http://lists.scilab.org/mailman/listinfo/dev >>>>> >>>>> >>>> >>>> _______________________________________________ >>>> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>>> >>>> >>>> -- >>>> St?phane Mottelet >>>> Ing?nieur de recherche >>>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>>> D?partement G?nie des Proc?d?s Industriels >>>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>>> CS 60319, 60203 Compi?gne cedex >>>> Tel : +33(0)344234688http://www.utc.fr/~mottelet >>>> >>>> >>>> _______________________________________________ >>>> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>>> >>>> >>>> -- >>>> St?phane Mottelet >>>> Ing?nieur de recherche >>>> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >>>> D?partement G?nie des Proc?d?s Industriels >>>> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >>>> CS 60319, 60203 Compi?gne cedex >>>> Tel : +33(0)344234688http://www.utc.fr/~mottelet >>>> >>>> >>>> _______________________________________________ >>>> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>>> >>>> _______________________________________________ >>>> dev mailing list >>>> dev at lists.scilab.org >>>> http://lists.scilab.org/mailman/listinfo/dev >>>> >>>> >>> >>> _______________________________________________ >>> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >>> >>> _______________________________________________ >>> dev mailing list >>> dev at lists.scilab.org >>> http://lists.scilab.org/mailman/listinfo/dev >>> >>> >> >> _______________________________________________ >> dev mailing listdev at lists.scilab.orghttps://antispam.utc.fr/proxy/1/c3RlcGhhbmUubW90dGVsZXRAdXRjLmZy/lists.scilab.org/mailman/listinfo/dev >> >> _______________________________________________ >> dev mailing list >> dev at lists.scilab.org >> http://lists.scilab.org/mailman/listinfo/dev >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: