We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When trying to compile a project with PMOD OLED using Vitis, the platform does not compile on Windows 10 because of
mb-ar: *.o Invalid Argument
According to the following forum post, this is due to changes in the MINGW toolchain.
Forum Post
Also according to that forum post, updating the Makefile solves the problem:
COMPILER= ARCHIVER= CP=cp COMPILER_FLAGS= EXTRA_COMPILER_FLAGS= LIB=libxil.a RELEASEDIR=../../../lib INCLUDEDIR=../../../include INCLUDES=-I./. -I${INCLUDEDIR} INCLUDEFILES=*.h LIBSOURCES=*.c OUTS = *.o OBJECTS = $(addsuffix .o, $(basename $(wildcard *.c))) ASSEMBLY_OBJECTS = $(addsuffix .o, $(basename $(wildcard *.S))) INCLUDEFILES=*.h libs: echo "Compiling PmodOLED..." $(COMPILER) $(COMPILER_FLAGS) $(EXTRA_COMPILER_FLAGS) $(INCLUDES) $(LIBSOURCES) $(ARCHIVER) -r ${RELEASEDIR}/${LIB} ${OBJECTS} ${ASSEMBLY_OBJECTS} make clean include: ${CP} $(INCLUDEFILES) $(INCLUDEDIR) clean: rm -rf ${OBJECTS} rm -rf ${ASSEMBLY_OBJECTS}
Tested and works.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When trying to compile a project with PMOD OLED using Vitis, the platform does not compile on Windows 10 because of
According to the following forum post, this is due to changes in the MINGW toolchain.
Forum Post
Also according to that forum post, updating the Makefile solves the problem:
Tested and works.
The text was updated successfully, but these errors were encountered: