<div dir="ltr">Hello,<div><br></div><div>I want to create a mini http server project and execute at Ubuntu 15. The Xcode compile and access the function &quot;autoreleasepool&quot;, but when i compile the same code at Ubuntu, this function not found</div><div><br></div><div>For example, i can compile the code above at Xcode:</div><div><br></div><div><div>while true {</div><div>    autoreleasepool {</div><div>    var test: Data = &quot;HTTP/1.1 200 OK\r\nContent-Length: 1\r\n\r\na&quot;.data(using: .utf8)!</div><div>    }</div><div>}</div></div><div><br></div><div>But when i try to compile at Ubuntu:</div><div><br></div><div><div>git@breder:~$ cat main.swift     </div><div>import Foundation</div><div><br></div><div>while true {</div><div>    autoreleasepool {</div><div>    var test: Data = &quot;HTTP/1.1 200 OK\r\nContent-Length: 1\r\n\r\na&quot;.data(using: .utf8)!</div><div>    }</div><div>}</div><div><br></div><div>git@breder:~$ swiftc main.swift </div><div>main.swift:4:5: error: use of unresolved identifier &#39;autoreleasepool&#39;</div><div>    autoreleasepool {</div><div>    ^~~~~~~~~~~~~~~</div></div><div><br></div></div>