You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I run make -C src/3d/tests/extern -j 4 on Cygwin with the mingw64 C compiler, I get the following error message:
make[3]: *** No rule to make target 'obj/TestWrapper.h', needed by 'obj/main.o'.
In fact, the handwritten "driver" Makefile is using / directory separators, but 3d on Windows generates obj/EverParse.Makefile with \ directory separators. If I use a unique directory separator (i.e. change \ into / in the generated obj/EverParse.Makefile, or alternatively change / into \ in the handwritten Makefile), then things seem to work well.
Things work well on Linux, where / is uniformly used.
The text was updated successfully, but these errors were encountered:
tahina-pro
added
bug
Something isn't working
3d
The 3d dependent data description language and frontend
labels
Oct 9, 2021
If I run
make -C src/3d/tests/extern -j 4
on Cygwin with the mingw64 C compiler, I get the following error message:In fact, the handwritten "driver" Makefile is using
/
directory separators, but 3d on Windows generatesobj/EverParse.Makefile
with\
directory separators. If I use a unique directory separator (i.e. change\
into/
in the generatedobj/EverParse.Makefile
, or alternatively change/
into\
in the handwrittenMakefile
), then things seem to work well.Things work well on Linux, where
/
is uniformly used.The text was updated successfully, but these errors were encountered: