Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mockingbirdnest/glog
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 32f7ceefc27d
Choose a base ref
...
head repository: mockingbirdnest/glog
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e1760108e900
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 12, 2020

  1. Fix misspelled BUILD_SHARED_LIBS

    Somehow managed to miss the warning that CMake emitted...
    Alex Wang committed Apr 12, 2020
    Copy the full SHA
    ecf3c4e View commit details

Commits on Jun 6, 2021

  1. Merge pull request #7 from ts826848/fix-cmake-flag

    Fix misspelled BUILD_SHARED_LIBS
    eggrobin authored Jun 6, 2021
    Copy the full SHA
    e176010 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 principia_make.sh
2 changes: 1 addition & 1 deletion principia_make.sh
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ cmake \
-DCMAKE_C_FLAGS="${C_FLAGS?}" \
-DCMAKE_CXX_FLAGS="${CXX_FLAGS?}" \
-DWITH_GFLAGS=OFF \
-DBUILD_SHARED_LIBRARIES=OFF \
-DBUILD_SHARED_LIBS=OFF \
-DCMAKE_ARCHIVE_OUTPUT_DIRECTORY:FILEPATH=../.libs \
..
make -j8