fix Ubuntu-related memory allocation bug

This commit is contained in:
Johann Dreo 2022-01-31 20:14:38 +01:00
commit 3b7ffbbfae

View file

@ -70,10 +70,9 @@ endif()
###################################################################################### ######################################################################################
add_executable(fastga fastga.cpp) add_executable(fastga fastga.cpp)
# target_link_libraries(fastga ${PARADISEO_LIBRARIES} ${IOH_LIBRARY} stdc++fs) # Link to stdc++fs at the end because of an Ubuntu bug, see: https://stackoverflow.com/a/57760267
target_link_libraries(fastga ${PARADISEO_LIBRARIES} fmt) target_link_libraries(fastga ${PARADISEO_LIBRARIES} fmt stdc++fs)
add_executable(onlymutga onlymutga.cpp) add_executable(onlymutga onlymutga.cpp)
# target_link_libraries(onlymutga ${PARADISEO_LIBRARIES} ${IOH_LIBRARY} stdc++fs)
target_link_libraries(onlymutga ${PARADISEO_LIBRARIES} fmt) target_link_libraries(onlymutga ${PARADISEO_LIBRARIES} fmt)