You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
509 B
18 lines
509 B
# Copyright (c) 2017 Facebook, Inc.
|
|
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
|
|
if (CMAKE_C_COMPILER_ID MATCHES "Clang")
|
|
set(COMPILER_NOPIE_FLAG "-nopie")
|
|
else()
|
|
set(_backup_c_flags "${CMAKE_REQUIRED_FLAGS}")
|
|
set(CMAKE_REQUIRED_FLAGS "-no-pie")
|
|
CHECK_CXX_SOURCE_COMPILES("int main() {return 0;}"
|
|
HAVE_NO_PIE_FLAG)
|
|
if (HAVE_NO_PIE_FLAG)
|
|
set(COMPILER_NOPIE_FLAG "-no-pie")
|
|
else()
|
|
set(COMPILER_NOPIE_FLAG "")
|
|
endif()
|
|
set(CMAKE_REQUIRED_FLAGS "${_backup_c_flags}")
|
|
endif()
|