Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set static link for libssp (stack-smashing protection) #961

Merged
merged 17 commits into from
May 19, 2020
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
629314c
Corrections in cmake build
Nightwalker-87 Apr 20, 2020
7640daa
Fixed compilation error on windows
Nightwalker-87 Apr 20, 2020
4445e1c
Merge pull request #933 from grevaillot/to_merge/probe_unconnected_ta…
Nightwalker-87 Apr 20, 2020
a7568d3
Fixed package name in Find_libusb module
Nightwalker-87 Apr 20, 2020
ef8c23d
Merge branch 'develop' of https://github.com/texane/stlink into develop
slyshykO Apr 21, 2020
4b84dbf
Merge branch 'develop' of https://github.com/texane/stlink into develop
slyshykO Apr 21, 2020
784cecb
Merge branch 'develop' of https://github.com/texane/stlink into develop
slyshykO Apr 21, 2020
5b65b80
Merge branch 'develop' of https://github.com/texane/stlink into develop
slyshykO Apr 22, 2020
07ec199
Merge branch 'develop' of https://github.com/texane/stlink into develop
slyshykO Apr 22, 2020
7b42b3a
Merge branch 'develop' of https://github.com/texane/stlink into develop
slyshykO Apr 22, 2020
d0d191a
Merge branch 'develop' of https://github.com/stlink-org/stlink into d…
slyshykO Apr 26, 2020
e19002e
Merge branch 'develop' of https://github.com/stlink-org/stlink into d…
slyshykO May 1, 2020
f98308d
Merge branch 'develop' of https://github.com/stlink-org/stlink into d…
slyshykO May 7, 2020
3c4232b
Merge branch 'develop' of https://github.com/stlink-org/stlink into d…
slyshykO May 10, 2020
93e3cab
Merge branch 'develop' of https://github.com/stlink-org/stlink into d…
slyshykO May 19, 2020
7f73ea7
Merge branch 'develop' of https://github.com/stlink-org/stlink into d…
slyshykO May 19, 2020
73dc5fe
link libssp statically
slyshykO May 19, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ include(CheckLibraryExists)

CHECK_LIBRARY_EXISTS(ssp __stack_chk_fail "" _stack_chk_fail_exists)
if (_stack_chk_fail_exists)
set(SSP_LIB ssp)
set(SSP_LIB -static ssp)
else ()
set(SSP_LIB "")
endif ()
Expand Down