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
Hello, we are having trouble building the repository on Fedora; We've successfully built and used on Debian (Ubuntu) and Windows.
Here are the usual steps we've taken so far:
pull the repository;
cd physx;
./generate_projects.sh (with 'linux' option);
cd compiler/linux-checked;
make
Here are a few errors I'm getting from make:
/home/Donsky/Documents/PhysX/physx/include/task/PxTask.h:114:10: error: '~PxTask' overrides a destructor but is not marked 'override' [-Werror,-Wsuggest-destructor-override]
virtual ~PxTask() {}
^
/home/Donsky/Documents/PhysX/physx/include/task/PxTask.h:48:10: note: overridden virtual function is here
virtual ~PxBaseTask() {}
^
/home/Donsky/Documents/PhysX/physx/include/task/PxTask.h:117:18: error: 'release' overrides a member function but is not marked 'override' [-Werror,-Wsuggest-override]
virtual void release()
^
/home/Donsky/Documents/PhysX/physx/include/task/PxTask.h:80:19: note: overridden virtual function is here
virtual void release() = 0;
(there are more like these, but all of them will likely go away if we find cflags and add something like -Wno-inconsistent-missing-destructor-override; Problem is, we don't know how where to make the changes)
Also, a few weeks back we managed to alter the cmake file so that there errors were gone, but forgot how and even after that we were getting some errors regarding CMAKE_LIBRARY_ARCHITECTURE missing...
Can you help us out?
The text was updated successfully, but these errors were encountered:
TheDonsky
changed the title
Need some help building SDK on arch-linux (Fedora 23)
Need some help building SDK for arch-linux (Fedora 23)
Jul 9, 2021
TheDonsky
changed the title
Need some help building SDK for arch-linux (Fedora 23)
Need some help building SDK for Fedora 23
Jul 9, 2021
TheDonsky
changed the title
Need some help building SDK for Fedora 23
Need some help building SDK for Fedora
Jul 9, 2021
TheDonsky
changed the title
Need some help building SDK for Fedora
Need some help building SDK for Fedora 34
Jul 9, 2021
Adding "-Wno-suggest-override -Wno-suggest-destructor-override -Wno-dtor-name" to CLANG_WARNINGS at line 31 helped and we did not get any additional errors this time.
We can make make a pull request if you think it'll be useful
Hello, we are having trouble building the repository on Fedora; We've successfully built and used on Debian (Ubuntu) and Windows.
Here are the usual steps we've taken so far:
Here are a few errors I'm getting from make:
(there are more like these, but all of them will likely go away if we find cflags and add something like -Wno-inconsistent-missing-destructor-override; Problem is, we don't know how where to make the changes)
Also, a few weeks back we managed to alter the cmake file so that there errors were gone, but forgot how and even after that we were getting some errors regarding CMAKE_LIBRARY_ARCHITECTURE missing...
Can you help us out?
The text was updated successfully, but these errors were encountered: