1
General / Re: mingw32-make not registering SFML (Windows 10, CLion)
« on: March 28, 2022, 04:31:54 pm »
ERROR CODE 0xC0000135 NOW OCCURRING
Thank you, so much, this helped a lot!
However, now I'm running into a "Process finished with exit code -1073741515 (0xC0000135)" error when running the program.
I've done research into the problem and it seems that it has to do with some sort of incompatibility, but I don't know where it might be occurring. From another post, I will include all info I think may be necessary:
CMakeLists.txt
gcc -v:
- Windows 10 64-bit machine
- CLion 2020.2.5
- SFML 2.5.1
- GCC 7.3.0 MinGW (DW2) - 32-bit
- mingw32
(This error also occurs when using mingw32 and SFML: GCC 7.3.0 MinGW (SEH) - 64-bit)
- cmake-gui recognizes all SFML variables
(All connected to the GCC 7.3.0 MinGW (DW2) - 32-bit SFML version)
- SFML_DIR and SFML_DOC_DIR are also set to same values within CMakeCache.txt
Any ideas either a) where the incompatibility is, or b) is something else is the issue?
Thank you so much in advance for any help you can give!
Thank you, so much, this helped a lot!
However, now I'm running into a "Process finished with exit code -1073741515 (0xC0000135)" error when running the program.
I've done research into the problem and it seems that it has to do with some sort of incompatibility, but I don't know where it might be occurring. From another post, I will include all info I think may be necessary:
CMakeLists.txt
cmake_minimum_required(VERSION 3.17)
project(Everything)
set(CMAKE_CXX_STANDARD 14)
add_executable(Everything main.cpp)
set(SFML_DIR "C:/Hub/Coding/Libraries/SFML_32/SFML-2.5.1/lib/cmake/SFML")
set(SFML_DOC_DIR "C:/Hub/Coding/Libraries/SFML_32/SFML-2.5.1/doc")
find_package(SFML 2.5.1 COMPONENTS audio graphics window network system REQUIRED)
target_link_libraries(Everything sfml-audio sfml-graphics sfml-window sfml-network sfml-system)
project(Everything)
set(CMAKE_CXX_STANDARD 14)
add_executable(Everything main.cpp)
set(SFML_DIR "C:/Hub/Coding/Libraries/SFML_32/SFML-2.5.1/lib/cmake/SFML")
set(SFML_DOC_DIR "C:/Hub/Coding/Libraries/SFML_32/SFML-2.5.1/doc")
find_package(SFML 2.5.1 COMPONENTS audio graphics window network system REQUIRED)
target_link_libraries(Everything sfml-audio sfml-graphics sfml-window sfml-network sfml-system)
gcc -v:
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=C:/TDM-GCC-32/bin/../libexec/gcc/mingw32/5.1.0/lto-wrapper.exe
Target: mingw32
Configured with: ../../../src/gcc-5.1.0/configure --build=mingw32 --enable-languages=ada,c,c++,fortran,lto,objc,obj-c++ --enable-libgomp --enable-lto --enable-graphite --enable-libstdcxx-debug --enable-threads=posix --enable-version-specific-runtime-libs --enable-fully-dynamic-string --enable-libstdcxx-threads --enable-libstdcxx-time --with-gnu-ld --disable-werror --disable-nls --disable-win32-registry --disable-symvers --enable-cxx-flags='-fno-function-sections -fno-data-sections -DWINPTHREAD_STATIC' --prefix=/mingw32tdm --with-local-prefix=/mingw32tdm --with-pkgversion=tdm-1 --enable-sjlj-exceptions --with-bugurl=http://tdm-gcc.tdragon.net/bugs
Thread model: posix
gcc version 5.1.0 (tdm-1)
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=C:/TDM-GCC-32/bin/../libexec/gcc/mingw32/5.1.0/lto-wrapper.exe
Target: mingw32
Configured with: ../../../src/gcc-5.1.0/configure --build=mingw32 --enable-languages=ada,c,c++,fortran,lto,objc,obj-c++ --enable-libgomp --enable-lto --enable-graphite --enable-libstdcxx-debug --enable-threads=posix --enable-version-specific-runtime-libs --enable-fully-dynamic-string --enable-libstdcxx-threads --enable-libstdcxx-time --with-gnu-ld --disable-werror --disable-nls --disable-win32-registry --disable-symvers --enable-cxx-flags='-fno-function-sections -fno-data-sections -DWINPTHREAD_STATIC' --prefix=/mingw32tdm --with-local-prefix=/mingw32tdm --with-pkgversion=tdm-1 --enable-sjlj-exceptions --with-bugurl=http://tdm-gcc.tdragon.net/bugs
Thread model: posix
gcc version 5.1.0 (tdm-1)
- Windows 10 64-bit machine
- CLion 2020.2.5
- SFML 2.5.1
- GCC 7.3.0 MinGW (DW2) - 32-bit
- mingw32
(This error also occurs when using mingw32 and SFML: GCC 7.3.0 MinGW (SEH) - 64-bit)
- cmake-gui recognizes all SFML variables
(All connected to the GCC 7.3.0 MinGW (DW2) - 32-bit SFML version)
- SFML_DIR and SFML_DOC_DIR are also set to same values within CMakeCache.txt
Any ideas either a) where the incompatibility is, or b) is something else is the issue?
Thank you so much in advance for any help you can give!