zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit bdfb31420a1046178406f40e867811de8d65d94a (tree)
parent 107e57484f603773d0f6b404873bdae92626749b
Author: emekoi <emekankurumeh@outlook.com>
Date:   Fri, 12 Jul 2019 18:28:28 -0500

fixed compilation on mingw-w64

Diffstat:
MCMakeLists.txt | 6++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -8840,7 +8840,7 @@ set_target_properties(zig0 PROPERTIES ) target_link_libraries(zig0 compiler) -if(WIN32) +if(MSVC) set(LIBUSERLAND "${CMAKE_BINARY_DIR}/userland.lib") else() set(LIBUSERLAND "${CMAKE_BINARY_DIR}/libuserland.a") @@ -8865,9 +8865,7 @@ add_custom_command( ) add_custom_target(userland_target DEPENDS "${LIBUSERLAND}") add_executable(zig "${ZIG_MAIN_SRC}") -if(MINGW) - set(EXE_LDFLAGS "${EXE_LDFLAGS} -fstack-protector") -endif() + set_target_properties(zig PROPERTIES COMPILE_FLAGS ${EXE_CFLAGS} LINK_FLAGS ${EXE_LDFLAGS}