Re: [Jgeneral] Missing error messages and -O2?

2023-03-04 Thread 'Viktor Grigorov' via General
It is define. Oh, wait, my bad: I pass 2>&/dev/null to the command to surpress the one message on start-up, and if in this version all error messages go to stderr, which they seem to do, it's explained. All's fine and dandy in the universe again. Mar 4, 2023, 22:16 by henryhr...@gmail.com:

Re: [Jgeneral] Missing error messages and -O2?

2023-03-04 Thread Henry Rich
Even if eformat_j_ is undefined or fails, you should get the old terse messages. Henry Rich On 3/4/2023 3:12 PM, 'Viktor Grigorov' via General wrote: I updated to the official 941 and I'm getting no error messages. I'd had a eformat.ijs missing error, so I rm -r 'd the

[Jgeneral] Missing error messages and -O2?

2023-03-04 Thread 'Viktor Grigorov' via General
I updated to the official 941 and I'm getting no error messages. I'd had a eformat.ijs missing error, so I rm -r 'd the /usr/share/j/9sth/addons dir, and cp -r 'd the one in the zip thereto. No more messages, but also no error messages. My jsource clone, built yesterday, spits out errors

Re: [Jgeneral] Folders and Projects

2023-03-04 Thread Thomas Bulka
chris burke writes: >> Is it mandatory, that project directories are children of the >> folders specified in UserFolders_j_? Or is it at least discouraged >> to create a J project in an arbitrary > directory which is not part of the folder hierarchy already known to J? > > You can create a

Re: [Jgeneral] Folders and Projects

2023-03-04 Thread Raul Miller
Also you provide a mechanism to package projects as a single script. That's one of the things which distinguishes a project directory from some other directory. -- Raul On Sat, Mar 4, 2023 at 11:30 AM chris burke wrote: > > Folders and Projects are just convenient ways to name and navigate >

Re: [Jgeneral] Folders and Projects

2023-03-04 Thread chris burke
Folders and Projects are just convenient ways to name and navigate through directories. This helps you organize your code, particularly when using Jqt. It also helps when sharing code with someone else who may use a different directory structure, since they need only define Folder names to match

Re: [Jgeneral] Error during installation of J9.4

2023-03-04 Thread bill lam
You are correct. It should be 904. Mea culpa. On Sat, 4 Mar 2023 at 10:19 PM Robin Niemeyer wrote: > I am running Linux Mint which is ubuntu/debian based. > > I got the error message: > update-alternatives: priority must be an integer > during installation of J9.4 > > The command in

[Jgeneral] Error during installation of J9.4

2023-03-04 Thread Robin Niemeyer
I am running Linux Mint which is ubuntu/debian based. I got the error message: update-alternatives: priority must be an integer during installation of J9.4 The command in install-usr.sh causing the message was: update-alternatives --install $BIN/ijconsole ijconsole $BIN/ijconsole-9.4 9.4 The

Re: [Jgeneral] Folders and Projects

2023-03-04 Thread Raul Miller
That's an interesting question, and I guess it boils down to "how does the interpreter locate relevant .jproj files"? If I look at all of J's .ijs files for those which reference '.jproj' one in particular stands out: stdlib.ijs And, if I look at J's system/main/stdlib.ijs for how .jproj gets

[Jgeneral] Folders and Projects

2023-03-04 Thread Thomas Bulka
Hi Forum, I studied the guide about folders and projects in the wiki and it kind of confused me (https://code.jsoftware.com/wiki/Guides/Folders_and_Projects). It says "A project is a subdirectory of a folder that contains a file with extension .jproj with the same name as the directory." Fine.