Replies: 3 comments 3 replies
-
Hmm I can't replicate this on an M1 Mac or on an Ubuntu system. It compiles just fine for me. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I can not reproduce this issue on RHEL 8.6, you can try to update configure script via: |
Beta Was this translation helpful? Give feedback.
2 replies
-
Do you have a directory name that includes some non-ASCII characters, which might be confusing the shell? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Dear meep developers,
I would like to draw your attention to a possible issue with the configuration file of meep, version 1.24.0.
I'm trying to compile it on red hat linux 8.6.
In the configuration step, the configure script returns: "checking for libctl dir... ./configure: line 29448: $'\357\277\274': command not found". It seems that the '\357\277\274': error is linked to some file encoding issues within the configure file and that it contains one or several hidden characters at line 29448.
Editing the file with vim and checking line 29448 does not display anything odd:
"29448 LIBCTL_DIR="$LIBCTL_DIR/share/libctl""
However, removing the first 'white space' character of line 29448 (command x in vim) returns the following
"29448 �� LIBCTL_DIR="$LIBCTL_DIR/share/libctl""
If I then remove the 2 � characters and restart the configuration process, the step processes without any issue.
Did someone else meet the same issue or is this something specific to my linux settings?
Could someone check this and to amend the configure file if you can reproduce the issue?
I'm unfortunately not literate enough with git to push the modified configure file.
Thx a lot,
Regards,
Geoffrey
Beta Was this translation helpful? Give feedback.
All reactions