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
In the Golang Tutorial wiki page, the install command is:
cd POSIX/golang
cmake . -DCMAKE_INSTALL_PREFIX=.
make -j8 install
Suggestion:
cd POSIX/golang
cmake . -DCMAKE_INSTALL_PREFIX=. -DCMAKE_BUILD_TYPE=Release
make -j8 install
Specifying -DCMAKE_BUILD_TYPE=Release will have a greater performance improvement (Prevent developers like me, who are not very familiar with compiler, from falling into pitfalls 😭).
The text was updated successfully, but these errors were encountered:
In the Golang Tutorial wiki page, the install command is:
Suggestion:
Specifying
-DCMAKE_BUILD_TYPE=Release
will have a greater performance improvement (Prevent developers like me, who are not very familiar with compiler, from falling into pitfalls 😭).The text was updated successfully, but these errors were encountered: