Browse Source

windows: fix dedicated build

win64
nillerusr 2 years ago
parent
commit
af8c358ce9
  1. 8
      .github/workflows/build.yml
  2. 8
      .github/workflows/tests.yml
  3. 2
      dedicated/sys_ded.cpp
  4. 3
      wscript

8
.github/workflows/build.yml

@ -1,12 +1,6 @@ @@ -1,12 +1,6 @@
name: Build
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
on: [push, pull_request]
jobs:
build-linux-i386:

8
.github/workflows/tests.yml

@ -1,12 +1,6 @@ @@ -1,12 +1,6 @@
name: Tests
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
on: [push, pull_request]
jobs:
tests-linux-i386:

2
dedicated/sys_ded.cpp

@ -470,7 +470,7 @@ bool CDedicatedSteamApplication::Create( ) @@ -470,7 +470,7 @@ bool CDedicatedSteamApplication::Create( )
//-----------------------------------------------------------------------------
int main(int argc, char **argv)
{
#ifndef POSIX
#if !defined( POSIX ) && !defined( PLATFORM_64BITS )
_asm
{
fninit

3
wscript

@ -394,7 +394,8 @@ def configure(conf): @@ -394,7 +394,8 @@ def configure(conf):
'/Zc:forScope',
'/Zc:wchar_t',
'/GR',
'/TP'
'/TP',
'/EHsc'
]
if conf.options.BUILD_TYPE == 'debug':

Loading…
Cancel
Save